Oracle的常用知識技巧
你是不是準(zhǔn)備考試Oracle認(rèn)證,那么你知道Oracle考試中的常用知識技巧嗎?下面跟yjbys小編一起來看看吧!
對數(shù)據(jù)表要進(jìn)行備份可以在同一表空間里新建一張表:CREATE TABLE T_BAK AS SELECT * FROM T
如果要對某些表或視圖建立同義詞可以通過語句執(zhí)行:
Oracle代碼
select ‘create or replace public synonym ’||table_name||‘ for user.’||table_name||‘;’ from user_tables
select ‘create or replace public synonym ’||view_name||‘ for user.’||view_name||‘;’ from user_views
select ‘create or replace public synonym ’||sequence_name||‘ for user.’||sequence_name||‘;’ from user_sequences
同樣可以利用這個(gè)語句執(zhí)行刪除:
Oracle代碼
select ‘drop table ’||table_name||‘;’ from user_tables
where table_name like ‘%T%’
select ‘drop PUBLIC SYNONYM ’||table_name||‘;’ from user_tables
where table_name like ‘%T%’
要導(dǎo)出用戶下的表的方法:
Oracle代碼
exp user/password@Database file=“D:orcl.dmp” log=“D:orcl.log”
要導(dǎo)入用戶下的某些表的方法:
Oracle代碼
imp user/password@Database file=D:ackuporacle ablebak.dmp fromuser = user1 tables=t_XXX touser=user
新建sequence
你首先要有CREATE SEQUENCE或者CREATE ANY SEQUENCE權(quán)限。
Oracle代碼
CREATE SEQUENCE emp_sequence
INCREMENT BY 1 -- 每次加幾個(gè)
START WITH 1 -- 從1開始計(jì)數(shù)
NOMAXvalue -- 不設(shè)置最大值
NOCYCLE -- 一直累加,不循環(huán)
CACHE 10; --設(shè)置緩存cache個(gè)序列,如果系統(tǒng)down掉了或者其它情況將會導(dǎo)致序列不連續(xù),也可以設(shè)置為---------NOCACHE
更改表索引的表空間:
Oracle代碼
select ‘alter index ’||index_name||‘ rebuild tablespace T_INDEX;’
from user_indexes
where owner=‘×××’ and
table_name in (‘×××’, ‘×××’);
【Oracle的常用知識技巧】相關(guān)文章: