亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

Oracle認(rèn)證

Oracle的常用知識(shí)技巧

時(shí)間:2024-10-16 19:20:58 Oracle認(rèn)證 我要投稿
  • 相關(guān)推薦

Oracle的常用知識(shí)技巧

  你是不是準(zhǔn)備考試Oracle認(rèn)證,那么你知道Oracle考試中的常用知識(shí)技巧嗎?下面跟yjbys小編一起來(lái)看看吧!

Oracle的常用知識(shí)技巧

  對(duì)數(shù)據(jù)表要進(jìn)行備份可以在同一表空間里新建一張表:CREATE TABLE T_BAK AS SELECT * FROM T

  如果要對(duì)某些表或視圖建立同義詞可以通過(guò)語(yǔ)句執(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è)語(yǔ)句執(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掉了或者其它情況將會(huì)導(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的常用知識(shí)技巧】相關(guān)文章:

Oracle復(fù)習(xí)知識(shí)點(diǎn)匯總07-04

學(xué)習(xí)Oracle數(shù)據(jù)庫(kù)技巧攻略06-09

Oracle數(shù)據(jù)庫(kù)基本知識(shí)08-12

Oracle數(shù)據(jù)庫(kù)知識(shí)點(diǎn):SQLPLUS介紹07-16

Oracle數(shù)據(jù)庫(kù)基礎(chǔ)知識(shí):SELECT語(yǔ)句10-07

ORACLE 常用的SQL語(yǔ)法和數(shù)據(jù)部分08-21

Oracle發(fā)展歷程08-25

Oracle認(rèn)證體系介紹01-30

2024采購(gòu)知識(shí)和技巧09-05

播音主持必備知識(shí)與技巧08-24