<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    隨筆 - 79  文章 - 11  trackbacks - 0
    <2025年5月>
    27282930123
    45678910
    11121314151617
    18192021222324
    25262728293031
    1234567

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

    常用鏈接

    留言簿

    隨筆分類(66)

    隨筆檔案(79)

    相冊(cè)

    收藏夾(11)

    搜索

    •  

    積分與排名

    • 積分 - 53353
    • 排名 - 949

    最新隨筆

    最新評(píng)論

    閱讀排行榜

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

    目錄

    一、       前言... 4

    二、       思路... 4

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

    1.       安裝statspack. 4

    2.       創(chuàng)建stats$vmstat表... 4

    3.       創(chuàng)建vmstat目錄... 6

    4.       創(chuàng)建get_vmstat.ksh腳本... 6

    5.       創(chuàng)建run_vmstat.ksh腳本... 8

    6.       創(chuàng)建crontab作業(yè),定時(shí)執(zhí)行run_vmstat.ksh腳本... 9

    7.       分析數(shù)據(jù)... 9

    1)    異常報(bào)告... 9

    2)    每小時(shí)趨勢(shì)報(bào)告... 13

    3)    周趨勢(shì)報(bào)告... 14

    4)    長(zhǎng)期趨勢(shì)報(bào)告... 14

    四、       使用Excel生成趨勢(shì)圖... 15

    五、       參考資料... 15
    posted @ 2009-04-02 10:46 donnie 閱讀(138) | 評(píng)論 (0)編輯 收藏
     改用傳統(tǒng)的pfile方式啟動(dòng),具體pfile的內(nèi)容可從spfile文件中copy,或者從數(shù)據(jù)庫(kù)的警告日志文件中獲取。
    posted @ 2009-03-30 22:32 donnie 閱讀(227) | 評(píng)論 (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 閱讀(120) | 評(píng)論 (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 過(guò)程已成功完成。

    scott
    @ORCL> select count(*from t;

      
    COUNT(*)
    ----------
            56
    posted @ 2009-03-26 23:18 donnie 閱讀(124) | 評(píng)論 (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 閱讀(101) | 評(píng)論 (0)編輯 收藏
    scott@ORCL> connect / as sysdba
    已連接。
    sys
    @ORCL> grant execute on dbms_flashback to scott;

    授權(quán)成功。

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

    PL
    /SQL 過(guò)程已成功完成。

    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 閱讀(311) | 評(píng)論 (1)編輯 收藏
    scott@ORCL> drop table t;

    表已刪除。

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

    表已創(chuàng)建。

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

    PL
    /SQL 過(guò)程已成功完成。

    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 不復(fù)制任何數(shù)據(jù),只是在你獲取數(shù)據(jù)時(shí)它才從表中讀數(shù)據(jù)。
    posted @ 2009-03-24 22:46 donnie 閱讀(129) | 評(píng)論 (0)編輯 收藏
    http://blogs.sun.com/chrisoliver/entry/javafx_vs_actionscript_performance
    posted @ 2009-03-23 15:34 donnie 閱讀(159) | 評(píng)論 (0)編輯 收藏
    僅列出標(biāo)題
    共8頁(yè): 上一頁(yè) 1 2 3 4 5 6 7 8 下一頁(yè) 
    主站蜘蛛池模板: 国产精品高清免费网站| 亚洲男同帅GAY片在线观看| 手机在线免费视频| 成人浮力影院免费看| 伊人久久免费视频| 性xxxx视频免费播放直播| 黄网站免费在线观看| 精品在线免费观看| 四虎影视无码永久免费| 182tv免费视频在线观看| a毛片视频免费观看影院| 免费的全黄一级录像带| 免费福利在线视频| 老汉精品免费AV在线播放| 97在线视频免费播放| 国产成人精品免费午夜app| 成人免费的性色视频| 免费无码黄十八禁网站在线观看| 2021久久精品免费观看| 国产又黄又爽又猛免费app| 天天摸天天碰成人免费视频| 在线jlzzjlzz免费播放| 国产在线98福利播放视频免费| 免费一级毛片不卡在线播放| 中文字幕中韩乱码亚洲大片| 亚洲午夜久久久影院| 久久精品国产69国产精品亚洲| 久久久久亚洲精品影视| 亚洲免费中文字幕| 亚洲人成网站免费播放| 老司机午夜在线视频免费| 国产黄在线观看免费观看不卡| 大地资源中文在线观看免费版| 污污网站18禁在线永久免费观看| 24小时免费看片| 午夜电影免费观看| 久久亚洲国产精品五月天婷| 亚洲av无码无在线观看红杏| 国产亚洲国产bv网站在线| 国产亚洲精品欧洲在线观看| 国产在线精品观看免费观看|