2006年10月13日
2006年09月27日
2006年09月25日
更改現在的語系
1. alter session nls_territory='TAIWAN';
2. alter session nls_language='TRADITIONAL CHINESE';
3. select to_char(sysdate,'day') dual;
這樣子就可看到中文的,如要看別的語系的話就自行更改1、2 的參數就好了
2006年09月20日
2006年09月12日
2006年08月21日
2006年08月18日
2006年08月16日
2006年08月14日
記一下Windows Platform Considerations要注意的地方
| Windows
does not implicitly support inheritance of network endpoints.
To do this, the registry entry USE_SHARED_SOCKET must be set
to TRUE to allow multiple connections to use a single socket.
When the value is FALSE (default), bequeath connections are not
possible so a redirect session is initiated instead. If the USE_SHARED_SOCKET entry is set to TRUE, Windows can initiate bequeath connections but there are some caveats to consider. If a number of connections are initiated and for some reason the listener is stopped, the listener will not be able to be restarted until the connections are cleared. This is because the existing connections are using the same port number that the listener needs to listen on. This is a limitation with Microsoft’s implementation of TCP/IP using Windows Sockets API (WINSOCK2). |
...繼續閱讀
查INSERT Append as SELECT所找到不錯的文章
我只貼出重點,全文請到原作那裏看
...繼續閱讀
| 數據導入方法 | 總體導入時間(秒) | 導入進程佔用CPU時間(秒) |
| 逐條數據插入INSERT | 172 | 52 |
| 逐條數據插入INSERT,表暫無索引 | 130 | 35 |
| 批量插入,表暫無索引 | 14 | 7 |
| Create As Select,使用Oracle9i的External Table | 15 | 8 |
| INSERT Append as SELECT,使用Oracle9i的External Table | 15 | 8 |
| SQL*Loader conventional path 缺省導入選項 | 81 | 12 |
| SQL*Loader direct path 導入選項 | 9 | 3 |
...繼續閱讀