Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Exporting table data to a flat file

655128Oct 30 2008 — edited Oct 31 2008
Hi, I am trying to export data from a table to a text file using this:

CREATE TABLE bufurl
(
url, sno
)
ORGANIZATION EXTERNAL
(
TYPE oracle_datadump
DEFAULT DIRECTORY dataload
LOCATION ('external.txt')
)
AS
SELECT url, sno from table1 where sno > 10
/

but i get this error:

ERROR at line 1:
ORA-29829: implementation type does not exist

any clues what might be going on here?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 28 2008
Added on Oct 30 2008
6 comments
280 views