• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Creating columns in a table using column header

 
Ranch Hand
Posts: 31
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

We have a comma separated data file with more than 40000 records and 80 columns.
The requirement is to load all these records in to a an existing table, which has part of these 80 columns(35 columns are already present).So while loading this file rest of the 45 columns are to be created on the fly.Is it possibel to do this using sql loader or anyother method available.I think MSAccess supports such feature, does oracle have any option for this?I have the list of column names as the column header as the first row in the file.

Please suggest.

Thanks
Viswa
 
author & internet detective
Posts: 42145
937
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Viswa,
As far as I know, you need to create the columns (via DDL) before doing an import.
reply
    Bookmark Topic Watch Topic
  • New Topic