Hi Experts,
Is there any limitation on number of columns used when bulkload into Oracle?
I am loading a SAS table into Oracle using below:
proc append base = oracle.table2(&oracle_bload_options BULKLOAD = YES BL_LOAD_METHOD = Truncate ) data =table1 force ;
run;
table1 and Oracle.table2 both have 600 columns
I get the below errors:
ERROR: ********************************************************************** Please look in the SQL*Loader log file for the load results. SQL*Loader Log File location(available only if BL_DELETE_FILES=NO was set) : -- Note: In a Client/Server environment, the Log File is located on the Server. The log file is also echoed in the Server SAS log file. ********************************************************************** NOTE: Statements not processed because of errors noted above. NOTE: PROCEDURE APPEND used (Total process time): real time 5.61 seconds user cpu time 0.04 seconds system cpu time 0.03 seconds memory 13503.21k
however if I reduce columns from Oracle.table from 600 to 260 then it is working!
Only first few columns have values and all rest columns are empty
Why is this?
... View more