oracle SQL一些技巧

2021-04-02 23:01:57 字數 653 閱讀 1066

1、當前時間加7天

select sysdate + interval '7' day from dual

2、當前時間減10分鐘

select sysdate - interval '10' minute from dual

3、當前時間加3秒

select sysdate + interval '3' second from dual

4、刪除資料檔案

alter database datafile 'file name' offline drop;

5、增加額外的資料檔案到表空間中

alter tablespace users add datafile '/u01/oradata/orcl/users02.dbf' size 25m;

6、修改表空間當前的資料檔案

alter database datafile

7、資料匯入

imp vc_first/firsterp@yf02 file=firsterp.dmp fromuser=vc_first ignore=y touser=vc_first

8、刪除資料,保留表結構

select 'truncate table '||tname ||';' from tab where tabtype='table';

一些 Oracle Sql 語句的使用

declare no number v emp rowtype 定義接受emp一行資料的變數 cursor mycur is select from emp e cursor mycur2 no number is select from emp e where e.empno no begin n...

一些jquery技巧

window.nl ad function document ready function 相當於 function foo html 相當於 document.getelementbyidx x foo innerhtml jquery 物件轉換成 dom物件 第一種方法 var cr cr jq...

Doxygen一些技巧

團隊的 習慣一直不好,註釋五花八門,甚至幾千行 沒有一千行註釋。幾個新進來的成員紛紛抱怨,痛定思痛,決定來一次大刀闊斧的改變。由於本部門團隊編寫介面的時候比較多,做介面說明文件也是本分內的事情,既能規範註釋,又方便編寫文件,於是想到了doxygen這個神器,也決定使用doxygen的註釋規範。說實話...

C 一些技巧

一如果函式對傳入的指標引數進行修改,一定要把引數設定為指標的指標或者指標的引用 delete the first occurrence of the node which value equals item in a single linked list void delete node head,...

一些shell技巧

1.批量刪除某些指定檔案 我們都知道用find,很快就可以給出 find name your pattern exec rm f 恩,不過還有更快更簡潔的方法,用find自帶的delete find name your pattern delete 2.列出當前目錄下的所有目錄 不遞迴 你能想到幾種...