SQL Loading : Constant NULL clause [message #71710] |
Thu, 26 December 2002 02:12 |
Deborrah
Messages: 8 Registered: July 2002
|
Junior Member |
|
|
Hi,
What is the way to insert a default of NULL
into a NUMBER Columns?
The table is with fields a(varchar2), b(varchar2)
and c(NUMBER).
The following works:
-----------------------
(
a ,
b ,
c constant 0
)
-----------------------
whereas the following does not:
-----------------------
(
a ,
b ,
c constant NULL
)
-----------------------
How can I introduce a NULL automatically during
sql*loader?
TIA
Debby
|
|
|
|
|