2011年9月28日 星期三

顯示資料庫的 data 和 transaction log 的空間資訊

SQL Server 2008
資料庫上按右鍵->報表->標準報表->磁碟使用量


















記錄有誰登入

版本:SQL Server 2008
記錄有誰登入


2011年9月22日 星期四

SQL Server ISNULL 在Oracle 的語法

Oracle 沒有 ISNULL這個語法,可用 NVL,NVL可用來判斷 NULL 和空字串。
EX: select nvl(col, 'is_null');

2011年9月21日 星期三

excel 2007開啟 utf8 的 csv 檔


先開啟一個空間的excel


選擇 csv 檔


 選擇 utf8 編碼


選擇分隔符號

查詢目前資料庫所使用的字元集

select userenv('language') from  dual
=>TRADITIONAL CHINESE_TAIWAN.AL32UTF8

2011年9月14日 星期三

2011年9月13日 星期二

oracle 的 top 功能

SQL Server 的 Top,在 Oracle 要用 rownum

EX:選取前10筆資料
SQL> select * from user.user_objects where rownum <= 10;


EX:選取前10筆資料,有排序的(要先做排序)
SQL> select * from (select * from  user.user_objects   order by columnname ) where rownum < 11