vote up 0 vote down star

Hi, I want to load data into text file that is generated after executing "views" in Oracle?How can I achieve this in oracle using UNIX.for example- bcp "$1"$DB_SUFFIX..HSBC_ALL_OI_T out $DIR_OUTPUT_REP/"$1"/Rep_Tran_oi_bulk_date +%d%m%Y.txt(This is in Sybase on unix box). I want the same in Oracle on unix box.Please help me out as it alredy cosume lots of time. your early response is highly appreciated!!

flag

What are you doing with the file you generate? "EXP" will dump some or all of the database, but only for use with "IMP". You can use SQL*PLUS and a spool file to dump raw data to a (formatted) text file. – Thomas Jones-Low Jun 5 at 14:09
Hi Thomas..I want the data after executing table into flat file and store that file on some other location. – kunj raman singh Jun 5 at 15:44
The files which is generated is a view report,After it generation I will save it in the .csv format. – kunj raman singh Jun 6 at 13:06
I reiterate my question-I am having one "view" in the database,I want the output of that view and store that output in the .txt file on some other folder in UNIX box.For ex- bcp "$1"$DB_SUFFIX..HSBC_ALL_OI_T out $DIR_OUTPUT_REP/"$1"/Rep_Tran_oi_bulk_date +%d%m%Y.txt(This is in Sybase on unix box).I want the same thing in Oracle on UNIX environment. The file generated is a report and I want to save it in a folder on UNIX. Please have a look and help me out!!! – kunj raman singh Jun 6 at 13:31

2 Answers

vote up 0 vote down check

If you have access to directories on the database server, and authority to create "Directory" objects in Oracle, then you have lots of options.

For example, you can use the UTL_FILE package (part of the PL/SQL built-ins) to read or write files at the operating system level.

Or use the "external table" functionality to define objects that look like single tables to Oracle but are actually flat files at the OS level. Well documented in the Oracle docs.

Also, for one-time tasks, most of the tools for working SQL and PL/SQL provide facilities for moving data to and from the database. In the Windows environment, Toad's good at that. So is Oracle's free SQL*Developer, which runs on many platforms. You wouldn't want to use those for a process that runs every day, but they're fine for single moves. I've generally found these easier to use than SQL*Plus spooling, but that's a primitive version of the same functionality.

As stated by others, we need to know a bit more about what you're trying to do.

link|flag
vote up 0 vote down

As Thomas asked, we need to know what you are doing with the "flat file". For example, if you're loading it into spreadsheet or doing some other processing that expects a defined format, then you need to use SQL*Plus and spool to a file. If you're looking to save a table (data + table definition) for moving it to another Oracle database then EXP/IMP is the tool to use.

We generally describe the data retrieval process as "selecting" from a table/view, not "executing" a table/view.

link|flag
Thnx for ur quick response!!! I reiterate my question-I am having one "view" in the database,I want the output of that view and store that output in the .txt file on some other folder in UNIX box.For ex- bcp "$1"$DB_SUFFIX..HSBC_ALL_OI_T out $DIR_OUTPUT_REP/"$1"/Rep_Tran_oi_bulk_date +%d%m%Y.txt(This is in Sybase on unix box).I want the same thing in Oracle on UNIX environment!! – kunj raman singh Jun 6 at 13:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.