473,657 Members | 2,401 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

spool data

75 New Member
I Have created following PL/sql blok


DECLARE
vl_n_cnt NUMBER:=0;
vl_max_date varchar2(100);
CURSOR c1 IS SELECT CREATED_DTM,EVE NT_DTM,ACCOUNT_ NUM,EVENT_COST_ MNY,EVENT_TYPE_ ID
FROM ist.costedevent _test ;

BEGIN
select max(to_char (CREATED_DTM,'d dmmyyyy') ) into vl_max_date from costedevent_tes t;
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.CREATE D_DTM || ' '||to_char (r1.EVENT_DTM,' ddmmyyyy')|| ' '|| to_char (r1.EVENT_COST_ MNY,'ddmmyyyy') || ' '||r1.ACCOUNT_N UM|| ' '||r1.EVENT_COS T_MNY|| ' '||r1.EVENT_TYP E_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 2712
amitpatel66
2,367 Recognized Expert Top Contributor
I Have created following PL/sql blok


DECLARE
vl_n_cnt NUMBER:=0;
vl_max_date varchar2(100);
CURSOR c1 IS SELECT CREATED_DTM,EVE NT_DTM,ACCOUNT_ NUM,EVENT_COST_ MNY,EVENT_TYPE_ ID
FROM ist.costedevent _test ;

BEGIN
select max(to_char (CREATED_DTM,'d dmmyyyy') ) into vl_max_date from costedevent_tes t;
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.CREATE D_DTM || ' '||to_char (r1.EVENT_DTM,' ddmmyyyy')|| ' '|| to_char (r1.EVENT_COST_ MNY,'ddmmyyyy') || ' '||r1.ACCOUNT_N UM|| ' '||r1.EVENT_COS T_MNY|| ' '||r1.EVENT_TYP E_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
3860
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 new row. Within a stored procedure exists SQL like: INSERT INTO .. (col1, col2, col3, ...) SELECT @var1, col2, col3, ... FROM My_Table
1
20988
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 table. I'm going to have to change the query but it would be helpful if I knew what I should be trying to avoid. David
0
2252
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 records) going into the Table Spool operator and having a output of 218,000 records out. Where do the 218,000 records come from??
0
1755
by: tvishwaprasad | last post by:
Hi Please help me to read the spool files in windows platform. From shekhar
0
1761
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
2186
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 echo off; set trimspool on; set verify off; set feedback off;
2
4674
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 CPU. We are running x64 SQL 2005 SP2 on Windows 2003 SP2. We thought it might be parameter sniffing that was causing the bad plan, so we re-wrote the query to disable parameter sniffing. Unfortunately, that made the problem worse as we always...
1
3281
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
8438
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 termout off
0
8402
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8829
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8734
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8508
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6172
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5633
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4323
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2733
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1962
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.