隨筆 - 79  文章 - 11  trackbacks - 0
          <2025年6月>
          25262728293031
          1234567
          891011121314
          15161718192021
          22232425262728
          293012345

          不再墮落。
          Oracle documents: 
          http://tahiti.oracle.com/

          常用鏈接

          留言簿

          隨筆分類(66)

          隨筆檔案(79)

          相冊

          收藏夾(11)

          搜索

          •  

          積分與排名

          • 積分 - 53715
          • 排名 - 949

          最新隨筆

          最新評論

          閱讀排行榜

               摘要:   閱讀全文
          posted @ 2009-04-06 11:50 donnie 閱讀(165) | 評論 (0)編輯 收藏
          http://v.youku.com/v_playlist/f2076316o1p28.html
          posted @ 2009-04-04 18:26 donnie 閱讀(117) | 評論 (0)編輯 收藏
          http://edu.136z.com/DataBase/32042.html

          目錄

          一、       前言... 4

          二、       思路... 4

          三、       vmstat腳本及步驟... 4

          1.       安裝statspack. 4

          2.       創建stats$vmstat表... 4

          3.       創建vmstat目錄... 6

          4.       創建get_vmstat.ksh腳本... 6

          5.       創建run_vmstat.ksh腳本... 8

          6.       創建crontab作業,定時執行run_vmstat.ksh腳本... 9

          7.       分析數據... 9

          1)    異常報告... 9

          2)    每小時趨勢報告... 13

          3)    周趨勢報告... 14

          4)    長期趨勢報告... 14

          四、       使用Excel生成趨勢圖... 15

          五、       參考資料... 15
          posted @ 2009-04-02 10:46 donnie 閱讀(144) | 評論 (0)編輯 收藏
           改用傳統的pfile方式啟動,具體pfile的內容可從spfile文件中copy,或者從數據庫的警告日志文件中獲取。
          posted @ 2009-03-30 22:32 donnie 閱讀(229) | 評論 (0)編輯 收藏

          在oracle中,NULL與NULL既不相等,也不完全不相等。SQL Server與Sybase中,NULL等于NULL.
          --REF: oracle expert....

           

          scott@ORCL> select * from dual where null=null;

          未選定行

          scott
          @ORCL> select * from dual where null <> null;

          未選定行

          scott
          @ORCL> select * from dual where null is null;

          D
          -
          X
          posted @ 2009-03-27 22:47 donnie 閱讀(124) | 評論 (0)編輯 收藏
          scott@ORCL> select count(*from t;

            
          COUNT(*)
          ----------
                  28

          scott
          @ORCL> begin
            
          2     for x in (select * from t)
            
          3     loop
            
          4        insert into t values (x.username,x.user_id,x.created);
            
          5     end loop;
            
          6   end;
            
          7  /

          PL
          /SQL 過程已成功完成。

          scott
          @ORCL> select count(*from t;

            
          COUNT(*)
          ----------
                  56
          posted @ 2009-03-26 23:18 donnie 閱讀(129) | 評論 (0)編輯 收藏
          SET SERVEROUTPUT ON;

          DECLARE
             stock_price 
          NUMBER := 9.73;
             net_earnings 
          NUMBER := 0;
             pe_ratio 
          NUMBER;
          BEGIN
          -- Calculation might cause division-by-zero error.
             pe_ratio := stock_price / net_earnings;
             dbms_output.put_line(
          'Price/earnings ratio = ' || pe_ratio);

          EXCEPTION  
          -- exception handlers begin

          -- Only one of the WHEN blocks is executed.

             
          WHEN ZERO_DIVIDE THEN  -- handles 'division by zero' error
                dbms_output.put_line('Company must have had zero earnings.');
                pe_ratio :
          = null;

             
          WHEN OTHERS THEN  -- handles all other errors
                dbms_output.put_line('Some other kind of error occurred.');
                pe_ratio :
          = null;

          END;  -- exception handlers and block end here
          /
          ref : http://www.sc.ehu.es/siwebso/KZCC/Oracle_10g_Documentacion/appdev.101/b10807/07_errs.htm
          posted @ 2009-03-25 10:52 donnie 閱讀(106) | 評論 (0)編輯 收藏
          scott@ORCL> connect / as sysdba
          已連接。
          sys
          @ORCL> grant execute on dbms_flashback to scott;

          授權成功。

          sys
          @ORCL> connect scott/tiger
          已連接。
          scott
          @ORCL> variable SCN number
          scott
          @ORCL> exec :scn := sys.dbms_flashback.get_system_change_number

          PL
          /SQL 過程已成功完成。

          scott
          @ORCL> print scn

                 SCN
          ----------
              762534

          scott
          @ORCL> select count(*from emp;

            
          COUNT(*)
          ----------
                  14

          scott
          @ORCL> delete from emp;

          已刪除14行。

          scott
          @ORCL> select count(*from emp;

            
          COUNT(*)
          ----------
                   0

          scott
          @ORCL> select count(*from emp AS OF SCN :scn;

            
          COUNT(*)
          ----------
                  14

          scott
          @ORCL> commit;

          提交完成。

          scott
          @ORCL> select *
            
          2   from (select count(*from emp),
            
          3        (select count(*from emp as of scn :scn)
            
          4  /

            
          COUNT(*)   COUNT(*)
          ---------- ----------
                   0         14

          scott
          @ORCL> select *
            
          2   from (select count(*from emp),
            
          3        (select count(*from emp as of scn :scn)
            
          4  /

            
          COUNT(*)   COUNT(*)
          ---------- ----------
                   0         14

          scott
          @ORCL> alter table emp enable row movement;

          表已更改。

          scott
          @ORCL> flashback table emp to scn :scn;

          閃回完成。

          scott
          @ORCL> select *
            
          2   from (select count(*from emp),
            
          3        (select count(*from emp as of scn :scn)
            
          4  /

            
          COUNT(*)   COUNT(*)
          ---------- ----------
                  14         14

          scott
          @ORCL>
          posted @ 2009-03-24 22:58 donnie 閱讀(314) | 評論 (1)編輯 收藏
          scott@ORCL> drop table t;

          表已刪除。

          scott@ORCL
          >
          scott@ORCL
          > create table t
            
          2  as
            
          3  select *
            
          4    from all_users;

          表已創建。

          scott@ORCL
          >
          scott@ORCL
          > variable x refcursor
          scott@ORCL
          >
          scott@ORCL
          > begin
            
          2     open :x for select * from t;
            
          3  end;
            
          4  /

          PL
          /SQL 過程已成功完成。

          scott@ORCL
          > delete from t;

          已刪除28行。

          scott@ORCL
          >
          scott@ORCL
          > commit;

          提交完成。

          scott@ORCL
          >
          scott@ORCL
          > print x

          USERNAME                          USER_ID CREATED
          ------------------------------ ---------- --------------
          BI                                     
          60 13-3月 -09
          PM                                     
          59 13-3月 -09
          SH                                     
          58 13-3月 -09
          IX                                     
          57 13-3月 -09
          OE                                     
          56 13-3月 -09
          HR                                     
          55 13-3月 -09
          SCOTT                                  
          54 30-8月 -05
          MGMT_VIEW                              
          53 30-8月 -05
          MDDATA                                 
          50 30-8月 -05
          SYSMAN                                 
          51 30-8月 -05
          MDSYS                                  
          46 30-8月 -05
          SI_INFORMTN_SCHEMA                     
          45 30-8月 -05
          ORDPLUGINS                             
          44 30-8月 -05
          ORDSYS                                 
          43 30-8月 -05
          此處 open 不復制任何數據,只是在你獲取數據時它才從表中讀數據。
          posted @ 2009-03-24 22:46 donnie 閱讀(133) | 評論 (0)編輯 收藏
          http://blogs.sun.com/chrisoliver/entry/javafx_vs_actionscript_performance
          posted @ 2009-03-23 15:34 donnie 閱讀(164) | 評論 (0)編輯 收藏
          僅列出標題
          共8頁: 上一頁 1 2 3 4 5 6 7 8 下一頁 
          主站蜘蛛池模板: 广丰县| 大宁县| 安岳县| 铜鼓县| 文山县| 江川县| 朝阳县| 佛山市| 广安市| 乾安县| 巴林左旗| 子长县| 栾城县| 望奎县| 靖安县| 明水县| 佳木斯市| 集贤县| 尖扎县| 赤水市| 舟山市| 昌黎县| 北川| 柳江县| 盐源县| 南丰县| 松阳县| 通州区| 沾益县| 盖州市| 嵊州市| 城固县| 襄樊市| 嘉峪关市| 田林县| 林芝县| 新余市| 临颍县| 永川市| 延安市| 湖州市|