Oracle 資料庫常用操作語句大全

2022-03-07 19:45:34 字數 4597 閱讀 5198

一、oracle資料庫操作

1、建立資料庫

create database databasename

2、刪除資料庫

drop database dbname

3、備份資料庫

exp demo/demo@orcl buffer=1024 file=d:\back.dmp full=y

demo:使用者名稱、密碼

buffer:快取大小

file:具體的備份檔案位址

full: 是否匯出全部檔案

ignore: 忽略錯誤,如果表已經存在,則也是覆蓋

exp demo/demo@orcl file=d:\backup\1.dmp owner=(system,sys)

exp demo/demo@orcl file=d:\backup2.dmp tables=(teachers,students)

exp demo/demo@orcl file=d:\back.dmp tables=(table1)query=\" where filed1 like 'fg%'\"

匯出時可以進行壓縮;命令後面 加上compress=y ;如果需要日誌,後面:log=d:\log.txt

exp 使用者名稱/密碼@遠端的ip:埠/例項 file=存放的位置:\檔名稱.dmp full=y

4、資料庫還原

開啟cmd直接執行如下命令,不用再登陸sqlplus。

imp demo/demo@orcl file=d:\back.dmp full=y ignore=y log=d:\implog.txt

指定log很重要,便於分析錯誤進行補救。

imp demo/demo@orcl file=d:\backup2.dmp tables=(teachers,students)

imp 使用者名稱/密碼@遠端的ip:埠/例項 file=存放的位置:\檔名稱.dmp full=y

二、oracle表操作

1、建立表

create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)

根據已有的表建立新錶:

a:select * into table_new from table_old (使用舊表建立新錶)

b:create table tab_new as select col1,col2… from tab_old definition only《僅適用於oracle>

2、刪除表

drop table tabname

3、重新命名表

說明:alter table 表名rename to 新錶名

eg:alter table tablename rename to newtablename

4、增加字段

說明:alter table 表名 add (欄位名 字段型別 預設值 是否為空);

例:alter table tablename add (id int);

eg:alter table tablename add (id varchar2(30) default '空' not null);

5、修改字段

說明:alter table 表名 modify (欄位名 字段型別 預設值 是否為空);

eg:alter table tablename modify (id number(4));

6、重名字段

說明:alter table 表名 rename column 列名 to 新列名 (其中:column是關鍵字)

eg:alter table tablename rename column id to newid;

7、刪除字段

說明:alter table 表名 drop column 欄位名;

eg:alter table tablename drop column id;

8、新增主鍵

alter table tabname add primary key(col)

9、刪除主鍵

alter table tabname drop primary key(col)

10、建立索引

create [unique] index idxname on tabname(col….)

11、刪除索引

drop index idxname

注:索引是不可更改的,想更改必須刪除重新建。

12、建立檢視

create view viewname as select statement

13、刪除檢視

drop view viewname

三、oracle運算元據

1、資料查詢

select 《列名》from 《表名》 [where 《查詢條件表達試》] [order by 《排序的列名》[asc或desc]]

2、插入資料

insert into 表名 values(所有列的值);

insert into test values(1,'zhangsan',20);

insert into 表名(列) values(對應的值);

insert into test(id,name) values(2,'lisi');

3、更新資料

update 表 set 列=新的值 [where 條件] -->更新滿足條件的記錄

update test set name='zhangsan2' where name='zhangsan'

update 表 set 列=新的值 -->更新所有的資料

update test set age =20;

4、刪除資料

delete from test where id = 1;

delete from test -->刪除所有

commit; -->提交資料

rollback; -->回滾資料

delete方式可以恢復刪除的資料,但是提交了,就沒辦法了 delete刪除的時候,會記錄日誌 -->刪除會很慢很慢

刪除所有資料,不會影響表結構,不會記錄日誌,資料不能恢復 -->刪除很快

刪除所有資料,包括表結構一併刪除,不會記錄日誌,資料不能恢復-->刪除很快

5、資料複製

insert into table1 (select * from table2);

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

create table table1 select * from table2;

create table table1 as select id, namefrom table2 where 1>1;

四、資料庫複製命令

Oracle 資料庫常用操作語句大全

文件摘自 一 oracle資料庫操作 1 建立資料庫 create database databasename 2 刪除資料庫 drop database dbname 3 備份資料庫 exp demo demo orcl buffer 1024 file d back.dmp full y dem...

Oracle資料庫常用操作

為a使用者賦給b使用者表的許可權 grant select 使用者b.表名 to 使用者a查詢主表與引用表之間的關係 select a.owner as 主鍵擁有者 a.table name as 主鍵表 b.column name as 主鍵列 c.owner as 外來鍵擁有者 c.table ...

Oracle資料庫常用操作

oracle資料庫 oracle資料庫建立表空間 1 建立臨時表空間 create temporary tablespace givaname temp tempfile f orcal orcalan hsj givaname temp.dbf size 50m autoextend on nex...