473,473 Members | 2,021 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

spool old and new values in SQL

4 New Member
Hi,
I am running an sql script in oracle to spool a csv file.
I am using the following set up:
Expand|Select|Wrap|Line Numbers
  1. Define name='JOE'
  2. spool names.txt
  3. set linesize 200
  4. set pagesize 50000
  5. set heading off
  6. set termout off
  7. Select 'Names' from dual;
  8. select '&Name'  from user1;
  9. select surname from user1;
  10. SPOOL OFF;
  11.  
Which gives me the following:
Names

old 1: select '&Name' from user1
new 1: select 'JOE' from user1

JOE
Bloggs


It is giving me the correct values but i dont want the lines that have the old and new value. i also want to get rid of the space between Names and Joe.

Any ideas would be greatly appreciated!
Sep 18 '08 #1
5 8423
Dave44
153 New Member
I dont know if you can turn those off in sql plus.

Have you looked at using UTL_FILE to make your CSV?
Sep 18 '08 #2
daves1
4 New Member
set verify off seems to be working for me!
Cant eliminate the blank lines but i am happy with that. cheers!
Sep 19 '08 #3
amitpatel66
2,367 Recognized Expert Top Contributor
Expand|Select|Wrap|Line Numbers
  1. SET FEED OFF
  2. SET VERIFY OFF 
  3. SET HEADING OFF 
  4. SET TERMOUT OFF
  5. SET ECHO OFF
  6. SET LINESIZE 32767 
  7. SET PAGES 0 
  8. SET WRAP OFF 
  9. SET SCAN OFF 
  10. SET TRIM ON 
  11. SET TRIMS ON 
  12. SET TAB OFF 
  13. SET SERVEROUTPUT OFF
  14. SET PAUSE OFF
  15. SET TIMING OFF
  16. spool d:/a.txt;
  17. SELECT 'Name' FROM dual;
  18. SELECT empname from emp;
  19. spool off
  20. quit;
  21. /
  22.  
I have used lots of SET commands above. Few of them might not be required. Just in case!!
Sep 19 '08 #4
daves1
4 New Member
Just in case anyone reads this, the set linesize 0 gets rid of the blank lines!
Jan 30 '09 #5
Saii
145 Recognized Expert New Member
I dont we can set linesize 0 its valid range starts from 1
Feb 19 '09 #6

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

Similar topics

1
by: Mario Horvat | last post by:
I want to spool results from sql+ query to txt file. txt file should have name like YYMMDD_anything.txt, where YYMMDD is actual date. Can somebody tell me how to write this? Thanks in advance.
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: prithvis.mohanty | last post by:
Hi all, I need to monitor printer spool. What I want to do is. When ever user try to print something from any application , the print job should be paused in the spool and it should popup a...
0
by: prithvis.mohanty | last post by:
Hi all, I need to monitor printer spool. What I want to do is. When ever user try to print something from any application , the print job should be paused in the spool and it should popup a...
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...
1
by: orajit | last post by:
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,EVENT_TYPE_ID ...
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...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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,...
0
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...
1
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
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...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...

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.