sql - Loading all columns of CSV into Oracle table in bulk -


i'm trying load columns csv oracle table. columns between 2 match. trying make query dynamic use load data csv matching table, therefore, want avoid naming columns names (the jobcounter column should replaced wildcard (if there's any). i'm not sure if right way.

load data infile 'c:\users\theuser\documents\20121017.csv' append table srt_factor_20121017 fields terminated ',' optionally enclosed '"' (    jobcounter //* want replace asterisk include columns ) 

at moment, i'm getting following error when using oracle sql developer:

error @ command line : 217 column : 5 error report - sql error: ora-00928: missing select keyword 00928. 00000 -  "missing select keyword" *cause:     *action: 

any ideas?

the fact cannot load columns matching table via sql*loader. fields defintion must exact.


Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

javascript - angular ng-required radio button not toggling required off in firefox 33, OK in chrome -

xcode - Swift Playground - Files are not readable -