GeekArticles
FAQ
Oracle FAQSQL*LDR, DIirect Path load and NOT NULL with default
Author: asktom.oracle.com |
Published: 5th Jan 2008 |
Visited: 46 times |
Add CommentFiled in: Oracle FAQIf I have a table, eg:
create table chris (col1 varchar2(3) default 'xyz' not null);
I want to load it with SQL*Loader. If some of the rows have an empty string, the column will be populated with 'xyz' provided I use the conventional path.
Is...
Read Article Sponsored Links
Related Articles
• Speeding Up Post Load Script Post-load script maybe one of the most challenging tasks for developers especially those that use a framework for building an Ajax application. In a framework setting, developers will always work in a setting wherein JavaScript is involved.
When post load happens, developers will be limited in thei ...
• Querying SQLServer tables from within an Oracle session Dear Tom;
I need to query a SQLServer table from within an Oracle session, for example SQLPlus. Is there an easy way to do this, something like:
<CODE> select * from t@sql_server_link </CODE>
May you redirect me to the appropriate documentati ...
• How to load entire database into memory Hi Tom,
I have an Oracle Database 8.1.7.4 Standard Edition installed on a Windows 2000 Server.
My question is for curiosity more than need.
Let's assume that we have enough physical memory and that we can guarantee that the server will neve ...