spooling through shell script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting spooling through shell script
# 1  
Old 01-09-2009
spooling through shell script

Hi,

I want to spool the output from a .sql file to a .txt file through shell script.

the contents of .sql are:
spool /arboru02/scripts/customer_profile_def.txt
select profile_id ||','|| account_no
from customer_profile_def;
spool off
exit

and shell scrip is like:
#!/bin/sh
sqlplus 'username/pwd@instance'<<!
@/arboru02/scripts/customer_profile_def.sql>/arboru02/scripts/customer_profile_def.txt
exit
!

while executing the script im getting error unable to open file.

And please tell me what should be the path of the .sql and .txt files?

Thanks
# 2  
Old 01-09-2009
You are doing the same thing twice. Either you want "spool" to write directly to a file, or you want sqlplus to write to standard out for it to be redirected (> in the shell script). Doing both might be harmless in this case.

As for why it doesn't work, it's probably because the /scripts/ directory is not writable by you. The output should logically go somewhere else. Try /var/tmp/customer_profile_def.txt
# 3  
Old 01-09-2009
Thanks a lot for your response, the dir is writable by me.

i changed the script to the mentioned one and it worked:

#!/bin/sh

sqlplus username/pwd@instance @/arboru02/scr...rofile_def.sql

But can you tell me how can i do the vice-versa now that is loading from the .txt file into a table without using sql loader?
# 4  
Old 01-09-2009
Quote:
Originally Posted by ss_ss
But can you tell me how can i do the vice-versa now that is loading from the .txt file into a table without using sql loader?
That's a COMPLETELY different topic. It depends on the data, the output format, etc. I suggest you repost this one as a new thread, but add specifics like the file format and the fields you want to import into. (If a moderator flags you for this, refer them to this post).
# 5  
Old 01-13-2009
Hi,

I want to spool the output of query to a .txt file but when i am doing that along with the output of the query i am getting query itself and spool off in the output .txt file.

Plz tell me how can i just get the output of the query in the .txt file.

Thanks
# 6  
Old 01-13-2009
Let me understand you correctly: you want to the output of your sql query, but you do not want the query itself in the output file?
# 7  
Old 01-13-2009
ya you are right, i just want the output of the query in the output file.

Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Spooling File to My Desktop From Back-end using shell script

Hello all, I am trying to spool a SQL query output file from back-end to desktop in a certain path but it didn't work,the query writes the output in a file in the same directory at the back-end. note : i use the same query in sql developper and file was created in the desired path fine code... (1 Reply)
Discussion started by: bmaksoud
1 Replies

2. UNIX for Beginners Questions & Answers

Script not spooling in the designated file.

Hi, I need to write a script that will run a simple select count(*) query and sends the result of that query to me via email. Here's what I already have. #!/bin/ksh ###################################################################### # File Name : counts.sh # Created : 2019/27/19... (1 Reply)
Discussion started by: clef
1 Replies

3. Shell Programming and Scripting

Error during spooling

Hi, I am extracting the records of a table from oracle into a csv file using spool command in unix script. I retrieve the error message as msgcnt 18512 vxfs: mesg 001: vx_nospace - /dev/vg02/lvol12 file system full (1 block extent) How to resolve it ? (4 Replies)
Discussion started by: sabural
4 Replies

4. Shell Programming and Scripting

Script not spooling in result file

Hi everyone and nice to meet you :) I'm having some issues with a script I'm writing. It's probably most chaotic, I'm no ksh guru, but the idea is to extract an ID with that query, spool it into a file, and read that file making the ID a variable. This has to be done for every row extracted by... (10 Replies)
Discussion started by: Arkadia
10 Replies

5. Shell Programming and Scripting

Spooling file to excel

Hi , Im spooling file from oracle to csv using shell script. Below is the code im using.. The o/p is not coming in right format.. Please help me out in this.. O/p is coming as header till batch id ,im not able to see date_stored,type,type1.. Please any one can give me some suggestion ... (1 Reply)
Discussion started by: jkumsi
1 Replies

6. UNIX for Dummies Questions & Answers

Option in sql script to include column headers when spooling file to .csv format

Can anyone help me how to include COLUMN HEADER when spooling file to .CSV format through SQL statement. Thanks, Akbar (4 Replies)
Discussion started by: s1a2m3
4 Replies

7. UNIX for Dummies Questions & Answers

Shell scripting+connect to oracle database+spooling

Hi! Everyone I am new to the shell scripting basically.I have been asked to create a shell script that connect to a oracle database to read data from a particular schema then spool it into a csv file then email to customer. Can anybody let me know how to go about that. I have create... (14 Replies)
Discussion started by: Mr Mo
14 Replies

8. Shell Programming and Scripting

spooling

hi, can anyone help me with spool command.. i want to spool a file.. i am getting the output of an sql query into a file in the unix environment.. i want to spool the contents of this file to create a .lst file.. as of now, i am giving it like - sql.sql : spool on select... (4 Replies)
Discussion started by: kripssmart
4 Replies

9. UNIX for Dummies Questions & Answers

Spooling a log file with timestamp

Hi From shell script i am invoking sqlplus to connect to oracle database and then i spool a csv file as with output. What i want to do is to change the file name with timestamp on it so after spooling finish shell script change file name with time stamp. can someone help me to do that . Thanks... (2 Replies)
Discussion started by: ukadmin
2 Replies

10. UNIX for Advanced & Expert Users

HP-UX lp spooling places

Does anybody know if HP-UX uses any other directories besides /var/spool/lp/request to spool print jobs? I checked the man pages, and it only mentions /var/spool/lp in general. I was just wondering if anyone knew of some other place it might possibly use. thanks in advance for any help! (2 Replies)
Discussion started by: doeboy
2 Replies
Login or Register to Ask a Question