Data Set Options for Relational Databases |
Default value: | NO for DB2 under UNIX and PC Hosts, YES for Oracle |
Valid in: | DATA and PROC steps (when accessing DBMS data using SAS/ACCESS software) |
DBMS support: | DB2 under UNIX and PC Hosts, Oracle |
Syntax | |
Syntax Description | |
Details | |
Example | |
See Also |
Syntax |
BL_RECOVERABLE=YES | NO |
specifies that the LOAD process is recoverable. For DB2, YES also specifies that the copy location for the data should be specified by BL_COPY_LOCATION=.
specifies that the LOAD process is not recoverable. For Oracle, NO adds the UNRECOVERABLE keyword before the LOAD keyword in the control file.
Details |
To specify this option, you must first set BULKLOAD=YES.
Oracle: Set this option to NO to improve direct load performance.
Example |
This example for Oracle demonstrates the use of BL_RECOVERABLE= to specify that the load is unrecoverable.
data x.recover_no (bulkload=yes bl_recoverable=no); c1=1; run;
See Also |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.