472,789 Members | 1,137 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,789 software developers and data experts.

spool data

75
I Have created following PL/sql blok


DECLARE
vl_n_cnt NUMBER:=0;
vl_max_date varchar2(100);
CURSOR c1 IS SELECT CREATED_DTM,EVENT_DTM,ACCOUNT_NUM,EVENT_COST_MNY,E VENT_TYPE_ID
FROM ist.costedevent_test ;

BEGIN
select max(to_char (CREATED_DTM,'ddmmyyyy') ) into vl_max_date from costedevent_test;
DBMS_OUTPUT.PUT_LINE('000' || ' '||vl_max_date);
FOR r1 in c1
LOOP
vl_n_cnt:=vl_n_cnt+1;
SELECT count(*) into vl_n_cnt FROM ist.costedevent_test;
DBMS_OUTPUT.PUT_LINE(r1.CREATED_DTM || ' '||to_char (r1.EVENT_DTM,'ddmmyyyy')|| ' '|| to_char (r1.EVENT_COST_MNY,'ddmmyyyy')|| ' '||r1.ACCOUNT_NUM|| ' '||r1.EVENT_COST_MNY|| ' '||r1.EVENT_TYPE_ID);
END LOOP;
DBMS_OUTPUT.PUT_LINE('999'||' '||vl_n_cnt);
END;

Now I wanted to get data in txt file ..
I used spool command for that
sql> spool on
sql> Spool c:\out.txt

But in out.txt file I am getting

SQL> @output.sql
25 /
000 12102007
12102007 20072007 GB0202026840 121 512
12102007 21072007 GB0202026840 131 512
999 2 PL/SQL procedure successfully completed.

SQL> spool off

Could u tell me how to avoid sql query, feedback in txt file ..
I want only data in spool file ...

Thnaks
Nov 12 '07 #1
1 2655
amitpatel66
2,367 Expert 2GB
I Have created following PL/sql blok


DECLARE
vl_n_cnt NUMBER:=0;
vl_max_date varchar2(100);
CURSOR c1 IS SELECT CREATED_DTM,EVENT_DTM,ACCOUNT_NUM,EVENT_COST_MNY,E VENT_TYPE_ID
FROM ist.costedevent_test ;

BEGIN
select max(to_char (CREATED_DTM,'ddmmyyyy') ) into vl_max_date from costedevent_test;
DBMS_OUTPUT.PUT_LINE('000' || ' '||vl_max_date);
FOR r1 in c1
LOOP
vl_n_cnt:=vl_n_cnt+1;
SELECT count(*) into vl_n_cnt FROM ist.costedevent_test;
DBMS_OUTPUT.PUT_LINE(r1.CREATED_DTM || ' '||to_char (r1.EVENT_DTM,'ddmmyyyy')|| ' '|| to_char (r1.EVENT_COST_MNY,'ddmmyyyy')|| ' '||r1.ACCOUNT_NUM|| ' '||r1.EVENT_COST_MNY|| ' '||r1.EVENT_TYPE_ID);
END LOOP;
DBMS_OUTPUT.PUT_LINE('999'||' '||vl_n_cnt);
END;

Now I wanted to get data in txt file ..
I used spool command for that
sql> spool on
sql> Spool c:\out.txt

But in out.txt file I am getting

SQL> @output.sql
25 /
000 12102007
12102007 20072007 GB0202026840 121 512
12102007 21072007 GB0202026840 131 512
999 2 PL/SQL procedure successfully completed.

SQL> spool off

Could u tell me how to avoid sql query, feedback in txt file ..
I want only data in spool file ...

Thnaks
Try using following SET comands before calling @output.sql:

SET ECHO OFF
SET FEEDBACK OFF
SET TERMOUT OFF
SET VERIFY OFF
Nov 12 '07 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Thomas R. Hummel | last post by:
Hello, I have a table which has a few million records. It has an IDENTITY column that serves as the primary key. In a part of our application here, a previous record may need to be copied as a...
1
by: david_0 | last post by:
What causes the query optimizer to choose a table spool\lazy spool action in the execution plan? The explanation of "optimize rewinds" makes little sense because my query never comes back to that...
0
by: Robert | last post by:
Greetings, In Google I am finding what the deffinition of a table spool operator is but not what it is doing to performance. The execution plan shows the output of a clustered Index scan (54...
0
by: tvishwaprasad | last post by:
Hi Please help me to read the spool files in windows platform. From shekhar
0
by: vasudha28 | last post by:
I connect to MS SQL from unix using tsql. I run a select query there. Now i want to spool the data to a file on unix. Can you please tell me how to do that?
1
by: akaley | last post by:
HI.. iam using Spool ..for loading the data into file from select statement.. iam facing some problems...Please give me u r valuable suggestion.. This is the sample code used by me.. set...
2
by: apollock | last post by:
Our application is having an issue where a query in a stored procedure periodically gets a bad plan with a Lazy Spool Operator that changes the query execution time from 5ms to 900ms and kills our...
1
by: Atif | last post by:
Hi, I want to read the spool file's contents not pages but Text Data. Can any body plz help me in this regards Thanks in advance Best Regards Atif
5
by: daves1 | last post by:
Hi, I am running an sql script in oracle to spool a csv file. I am using the following set up: Define name='JOE' spool names.txt set linesize 200 set pagesize 50000 set heading off set...
0
by: Rina0 | last post by:
Cybersecurity engineering is a specialized field that focuses on the design, development, and implementation of systems, processes, and technologies that protect against cyber threats and...
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: lllomh | last post by:
How does React native implement an English player?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.