13.07.2015 Views

SAS/ACCESS 9.2 for Relational Databases: Reference, Fourth Edition

SAS/ACCESS 9.2 for Relational Databases: Reference, Fourth Edition

SAS/ACCESS 9.2 for Relational Databases: Reference, Fourth Edition

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Data Set Options <strong>for</strong> <strong>Relational</strong> <strong>Databases</strong> 4 BL_DELETE_ONLY_DATAFILE= Data Set Option 241ExamplesBL_DELETE_DATAFILE=YES is the default in this example, so only the control andlog files are deleted:proc delete data=x.test3;run;data x.test3 ( bulkload=yes bl_delete_only_datafile=no );c1=1;run;x dir BL_TEST3*.*;Both options are set to NO in this example, so no files are deleted:proc delete data=x.test4;run;data x.test4 ( bulkload=yes bl_delete_only_datafile=no bl_delete_files=NO );c1=1;run;x dir BL_TEST4*.*;Only the data file is deleted in this example:proc delete data=x.test5;run;data x.test5 ( bulkload=yes bl_delete_only_datafile=YES );c1=1;run;x dir BL_TEST5*.*;The same is true in this example:proc delete data=x.test6;run;data x.test6 ( bulkload=yes bl_delete_only_datafile=YES bl_delete_files=NO );c1=1;run;x dir BL_TEST6*.*;See Also“BL_CONTROL= Data Set Option” on page 214“BL_DATAFILE= Data Set Option” on page 218“BL_DELETE_DATAFILE= Data Set Option” on page 238“BULKLOAD= Data Set Option” on page 290

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!