一、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: 忽略錯誤,如果表已經存在,則也是覆寫
- 将資料庫中system使用者與sys使用者的表導出
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 表名 where 條件 -->删除滿足條件的記錄
delete from test where id = 1;
delete from test -->删除所有
commit; -->送出資料
rollback; -->復原資料
delete方式可以恢複删除的資料,但是送出了,就沒辦法了 delete删除的時候,會記錄日志 -->删除會很慢很慢
- truncate table 表名
删除所有資料,不會影響表結構,不會記錄日志,資料不能恢複 -->删除很快
- drop table 表名
删除所有資料,包括表結構一并删除,不會記錄日志,資料不能恢複-->删除很快
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, name from table2 where 1>1;
四、資料庫複制指令
優秀是一種習慣,歡迎大家關注學習!