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

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

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

    waterye

    #

    pl/sql developer 7

    PL/SQL Developer 7.0 - New Features

    感興趣的功能(未測(cè)試)

    Refactoring
    The refactoring function allows you to quickly reorganize your PL/SQL code. It works on the selected code, or ?if no selection is made ?on the current statement. Refactoring functions include ?Rename item ?Convert selection to procedure ?Convert selection to local constant ? Convert selection to global constant ?Replace assignment with initialization.

    Excel export
    The Excel export function now adds the SQL Text on a second page of the excel sheet.

    Session Filters
    You can define session filters to limit the sessions displayed and/or to define which columns you want to see and in which order. You can include/omit columns from the v$session table, or add additional column joined from other tables. At the top of the Session Window you can select which filter you want to use:

    posted @ 2006-02-06 00:31 waterye 閱讀(1423) | 評(píng)論 (2)編輯 收藏

    IntelliJ IDEA Python plugin available in CVS

    http://blogs.jetbrains.com/yole/archives/000082.html

    https://pythonid.dev.java.net/

    posted @ 2006-01-25 00:44 waterye 閱讀(1855) | 評(píng)論 (0)編輯 收藏

    買了幾本書

    好久沒(méi)有買計(jì)算機(jī)相關(guān)的書了, 今天在購(gòu)書中心買了三本, 打算春節(jié)期間看看(不知有沒(méi)有時(shí)間)

    1. <<Joel On Software>>
    2. <<Effective Enterprise Java>>
    3. <<Effective Oracle By Design>>

    都是中文版的, 爭(zhēng)取在春節(jié)期間翻翻

    posted @ 2006-01-24 17:22 waterye 閱讀(861) | 評(píng)論 (3)編輯 收藏

    年底了, 事情還真多

    年底了。事情可真多啊,離職,新工作,回家......

    周五晚喝了個(gè)爛醉,本來(lái)要side的時(shí)間拿來(lái)休息了。

    anyway, 祝各位春節(jié)快樂(lè)!

    posted @ 2006-01-22 14:04 waterye 閱讀(467) | 評(píng)論 (0)編輯 收藏

    Session.evict(Object object), Session.setReadOnly(Object entity, boolean readOnly)

         摘要: Session.evict(), Session.setReadOnly()的用法  閱讀全文

    posted @ 2006-01-18 11:49 waterye 閱讀(2066) | 評(píng)論 (0)編輯 收藏

    Spring集成FileUpload

         摘要: Spring集成Commons FileUpload, 實(shí)現(xiàn)文件上傳  閱讀全文

    posted @ 2006-01-15 22:46 waterye 閱讀(3079) | 評(píng)論 (1)編輯 收藏

    JDBC call Stored Procedure

         摘要: 現(xiàn)在的ORM(如Hibernate)性能一直不是很理想, 一些大型的J2EE項(xiàng)目還是以JDBC為主, 但一直對(duì)SP(Stored Procedure)有抵制情緒, 搞得SQL滿天飛, 因最近幾周用PL/SQL弄?dú)v史數(shù)據(jù)遷移的問(wèn)題, 順便整理一下JDBC調(diào)用SP.  閱讀全文

    posted @ 2006-01-13 16:59 waterye 閱讀(5026) | 評(píng)論 (0)編輯 收藏

    Cursor FOR Loop

    Implicit Cursor FOR Loop
    DECLARE
        type_name 
    VARCHAR2(10) := 'TABLE';
    BEGIN    
        
    FOR item IN (SELECT object_name, status FROM user_objects WHERE object_type = type_name) LOOP
            dbms_output.put_line(
    'Table = ' || item.object_name || ', Status = ' || item.status);
        
    END LOOP;
    END;
    /


    Explicit Cursor FOR Loop
    DECLARE
        
    CURSOR c(type_name VARCHAR2IS
            
    SELECT object_name, status FROM user_objects WHERE object_type = type_name;
        c_rec c
    %ROWTYPE;
    BEGIN
        
    FOR item IN c('TABLE') LOOP
            dbms_output.put_line(
    'Table = ' || item.object_name || ', Status = ' || item.status);
        
    END LOOP;

        
    OPEN c('TABLE');
        LOOP
            
    FETCH c INTO c_rec;
            
    EXIT WHEN c%NOTFOUND;
            dbms_output.put_line(
    'Table = ' || c_rec.object_name || ', Status = ' || c_rec.status);
        
    END LOOP;
        
    CLOSE c;
    END;
    /

    參考:
    1. PL/SQL User's Guide and Reference
    2. Java Oracle Database Development

    posted @ 2006-01-11 14:04 waterye 閱讀(714) | 評(píng)論 (0)編輯 收藏

    long to long, long to lob

    Oracle已經(jīng)建議使用lob代替long, 但舊應(yīng)用中還有一些long類型, 在insert into select from中無(wú)法使用

    long to long
    declare
        test_type 
    long;
    begin 
         
    select detail into test_type from table_long;
        
    insert into table_long2(detail) values(test_type); 
            commit;
    end;
    /

    long to lob
    insert into table_clob(detail) select to_lob(detail) from table_long;
    note: cannot use LOB locators selected from remote tables

    參考:
    1. http://www.itpub.net/304707.html
    2. Oracle SQL Reference

    posted @ 2006-01-11 13:35 waterye 閱讀(612) | 評(píng)論 (0)編輯 收藏

    Use Dynamic SQL

    DECLARE
       sql_stmt    
    VARCHAR2(200);
       dept_id     
    NUMBER(2) := 50;
       dept_name   
    VARCHAR2(14) := 'PERSONNEL';
       location    
    VARCHAR2(13) := 'DALLAS';
    BEGIN
       sql_stmt :
    = 'INSERT INTO dept VALUES (:1, :2, :3)';
       
    EXECUTE IMMEDIATE sql_stmt USING dept_id, dept_name, location;
       
    commit;
    EXCEPTION    
       
    WHEN OTHERS THEN 
       
    ROLLBACK;   
    END;
    /

    參考: PL/SQL User's Guide and Reference

    posted @ 2006-01-10 12:04 waterye 閱讀(550) | 評(píng)論 (0)編輯 收藏

    僅列出標(biāo)題
    共18頁(yè): First 上一頁(yè) 5 6 7 8 9 10 11 12 13 下一頁(yè) Last 
    主站蜘蛛池模板: 亚洲AV无码一区二区大桥未久| 在线观看特色大片免费视频| 天天摸夜夜摸成人免费视频| 亚洲综合日韩中文字幕v在线| 无人在线直播免费观看| 国产精品亚洲精品久久精品| 成人免费午间影院在线观看| 一级一级一片免费高清| 亚洲另类图片另类电影| 亚洲欧洲日本在线| 美女视频黄的全免费视频网站| 污污视频网站免费观看| 亚洲欧洲尹人香蕉综合| 亚洲国产精品一区二区三区久久| 免费女人高潮流视频在线观看 | 亚洲欧洲日韩国产综合在线二区| 成人免费在线观看网站| 日本免费久久久久久久网站| 亚洲国产第一站精品蜜芽| 中文字幕在线免费看线人| 国产亚洲人成网站观看| 女性无套免费网站在线看| 精品在线免费观看| 四虎国产精品永免费| 国产精品亚洲αv天堂无码| 1a级毛片免费观看| 精品一区二区三区高清免费观看| 亚洲日韩精品无码专区加勒比 | 自拍日韩亚洲一区在线| 成视频年人黄网站免费视频| 亚洲精品视频免费| 亚洲av中文无码字幕色不卡| 91午夜精品亚洲一区二区三区| 77777亚洲午夜久久多人| 日韩精品极品视频在线观看免费| 亚洲AV日韩AV无码污污网站| 亚洲国产日韩在线人成下载| 亚洲高清国产拍精品26U| 亚洲第一区精品日韩在线播放| 搡女人免费视频大全| 久久ww精品w免费人成|