Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
2k views

External Tables vs SQLLoader

So, I often have to load data into holding tables to run some data validation checks and then return the results. Normally, I create the holding table, then a sqlldr control file and load the data ...
4
votes
1answer
355 views

How do I parallel direct-path load using Oracle external tables?

Some years ago, Thomas Kyte said this (here): My favorite use of external tables: Load this really big file ASAP. In the past, setup the scripts to parallel direct path load. Coordinate the ...
2
votes
1answer
338 views

Oracle 11g External Tables size limit

Is there a limit for the files that are defined as external tables in Oracle 11g? As per http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/limits002.htm, the last parameter External ...
2
votes
1answer
195 views

In Oracle, how do I make an external table that has the exact same structure as an existing table?

I know that you can create a table for export like this: create table bulk_mbr organization external( type ORACLE_DATAPUMP default directory jason_home location ('mbr.dat')) as SELECT * FROM mbr; ...
1
vote
1answer
41 views

Oracle External Tables Date Error

I get the following errors while loading data into Oracle 11g R2 with EXTERNAL TABLES. error processing column DATE_M in row 1 for datafile C:\app\S\admin\orcl\dpdump\TABLE_EXT.txt ORA-01847: day of ...
1
vote
4answers
819 views

Oracle external tables. Optimising select queries

I have to perform many selects from an Oracle external table. I have 10 cursors that look a lot like this (ext_temp is the external table) CURSOR F_CURSOR (day IN varchar,code Number,orig Number) ...
0
votes
2answers
106 views

External Tables - “partial record at end of file” error when using FIXED

I am getting a "partial record at end of file" error when using FIXED parameter with External Tables. I am using SQL Developer, Oracle 11g XE. ------- foo.dat - Field lengths: ...
0
votes
2answers
159 views

Change external table BADFILE, LOGFILE and DISCARDFILE parameters only

I have several external tables used to read file data into the DB each one for a particular file specification. For files of a single format a table is reused by pointing it at a new default ...
0
votes
1answer
595 views

How can I use Oracle Preprocessor for External Tables to consume this type of format?

Suppose I have a custom file format, which can be analogous to N tables. Let's pick 3. I could transform the file, writing a custom load wrapper to fill 3 database tables. But suppose for space and ...