1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. Oracle的常用知識技巧

        時間:2020-11-03 19:38:26 Oracle認證 我要投稿

        Oracle的常用知識技巧

          你是不是準備考試Oracle認證,那么你知道Oracle考試中的常用知識技巧嗎?下面跟yjbys小編一起來看看吧!

        Oracle的'常用知識技巧

          對數(shù)據(jù)表要進行備份可以在同一表空間里新建一張表: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

          同樣可以利用這個語句執(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%’

          要導出用戶下的表的方法:

          Oracle代碼

          exp user/password@Database file=“D:orcl.dmp” log=“D:orcl.log”

          要導入用戶下的某些表的方法:

          Oracle代碼

          imp user/password@Database file=D:ackuporacle ablebak.dmp fromuser = user1 tables=t_XXX touser=user

          新建sequence

          你首先要有CREATE SEQUENCE或者CREATE ANY SEQUENCE權限。

          Oracle代碼

          CREATE SEQUENCE emp_sequence

          INCREMENT BY 1 -- 每次加幾個

          START WITH 1 -- 從1開始計數(shù)

          NOMAXvalue -- 不設置最大值

          NOCYCLE -- 一直累加,不循環(huán)

          CACHE 10; --設置緩存cache個序列,如果系統(tǒng)down掉了或者其它情況將會導致序列不連續(xù),也可以設置為---------NOCACHE

          更改表索引的表空間:

          Oracle代碼

          select ‘alter index ’||index_name||‘ rebuild tablespace T_INDEX;’

          from user_indexes

          where owner=‘×××’ and

          table_name in (‘×××’, ‘×××’);

        【Oracle的常用知識技巧】相關文章:

        1.oracle技巧心得

        2.Oracle的入門學習技巧

        3.Oracle認證考試的技巧

        4.Oracle學習的技巧心得

        5.Oracle經(jīng)驗技巧匯總

        6.Oracle認證考試技巧

        7.Oracle并行DML操作知識

        8.關于Oracle用戶管理常用操作

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>