Uploading a CSV File into an Oracle Database

>>Script Language and Platform: Oracle
Uploading a flat file into an Oracle database.

Author: Lynette

	load data
 infile "F:Land BankIssues and Actions.csv" badfile "info.bad" discardfile "info.dis"
 into table issues_actions
 fields terminated by ","     
 ( section,
   issue,
   action,
   responsible,
   meeting );

sqlldr username/password@server control=info.ctl

Disclaimer: We hope that the information on these script pages is valuable to you. Your use of the information contained in these pages, however, is at your sole risk. All information on these pages is provided “as -is”, without any warranty, whether express or implied, of its accuracy, completeness, or fitness for a particular purpose… Disclaimer Continued

Back to Database Journal Home

Get the Free Newsletter!

Subscribe to Cloud Insider for top news, trends & analysis

Latest Articles