oracle

oracle安装:

先安装oracle客户端,配置tnsnames.ora文件,配置环境变量TNS_ADMIN,NLS_LANG.

安装pl/sql; 把oracle客户端目录复制到pl/sql的安装目录下

pl/sql配置oracle的主目录及oci目录  工具-首选项-连接

参考文档:https://www.cnblogs.com/1312mn/p/9214061.html


oracle架构:

客户端:用户进程

服务端:实例(缓存,后台进程(系统监控进程,进程监控,写数据进程,重写日志进程)),数据库文件

要访问数据库,必须先创建实例,一个实例可访问一个数据库,也可以多个实例访问数据库

数据库逻辑结构:数据库-表空间(系统表空间,用户表空间)-表/索引/视图-数据段/索引段-区间-快

参考文档:https://blog.csdn.net/liudongdong19/article/details/82260842



oracle命令大全

创建表:

create table student(sId varchar(),sName varchar());

删除表:

drop table student;

重命名表:

alter table student to students ;

增加字段:

alter table students add(ID int);

alter table varchar2(30);

修改字段

alter table students modify(ID number(4));

重命名字段

alter table students rename column ID to newID;

删除字段

alter table stdudents drop colum ID;

添加主键

alter table stdudents add primary key(col);

删除主键

alter table students drop primary key(col);

创建索引

create index idxname on tablename(col..);

删除索引:

drop index idxname ;

==========================================================================

插入数据:

insert into students values(所有列的值);

insert into students(列) values(对应的值);

更新数据

update students set id = 1 where id= 2 ;

删除数据

delete from students where id = 2;commit; 提交数据

rollback;回滚数据

delete执行后是可以恢复删除的数据的,但是提交后,就没办法恢复了,删除会记录日志

truncate table 删除表中所有数据,不会记录日志,不能恢复,删除很快

数据复制

insert into table(select * fro table2);

复制表结构

create table  table1 select * from table2 where 1>1 ;

复制表结构和数据

create table table1 select * from table2;

复制指定字段

create table table1 select id,name from table2 where 1>1 ;

参考:https://www.cnblogs.com/1312mn/p/7799732.html

你可能感兴趣的:(oracle)