Archives of the TeradataForum
Message Posted: Mon, 28 Nov 2005 @ 22:59:58 GMT
Subj: | | Re: Export to a text file using OLE-DB |
|
From: | | Mohommod.Khan |
Anomy,
Why do you need to use the OLE Load? Is there any reason for this? Remember this tool is good for migrating to TD only... You should be able
to easily use BTEQ export (for small number of records) or Fast Export for huge number of records (in millions) from TD.
In BTEQ you can do some thing as following:
.logon rdbc/id,password;
.export report file= /location/file.rpt;
SELECT
statement
;
.EXPORT RESET
.quit;
Thanks
|