Specialty Forums
Security and Virus
General Hardware
CPUs/Overclocking
Networking
Digital Photo/Video
Office Software
PC Gaming
Console Gaming
Programming
Database
Web Development
Digital Home

General Forums
Windows XP
Windows Vista
Windows 95/98
Windows Me
Windows NT
Windows 2000
Win Server 2008
Win Server 2003
Windows 3.1
Linux
PDAs
BeOS
Novell Netware
OpenVMS
Solaris
Disk Op. System
Unix
Mac
OS/2

Drivers
Driver Scan
Driver Forum

Software
Automatic Updates

BIOS Updates

My Computing.Net

Solution Center

Free IT eBook

Howtos

Site Search

Message Find

RSS Feeds

Install Guides

Data Recovery

About

Home
Reply to Message Icon Go to Main Page Icon

Subject: sending output to flatfile

Original Message
Name: kanaka
Date: April 18, 2008 at 05:55:53 Pacific
Subject: sending output to flatfile
OS: unix
CPU/Ram: n/a
Model/Manufacturer: n/a
Comment:
Hi,
I am writing one unix script to get row count of few tables into one sequential file
my script is like this
$ORACLE_HOME/bin/sqlplus -s <<EOF >output.txt
userid/password@databasename
set verify off
set heading off
set feedback off
select count(*) count from tablel;
select count(*) count from table2;
select count(*) count from table3;
exit;
EOF

I want the output inoutput.txt file like this

table1 30(record count)
table2 40
table3 50

Can you please help me in gettinh this result

Thanks


Report Offensive Message For Removal

Response Number 1
Name: lankrypt0
Date: April 21, 2008 at 06:35:47 Pacific
Subject: sending output to flatfile
Reply: (edit)
I actually have a whole process that involves SQLPlus and a whole bunch of queries. I recommend sending the queries to their own files so you can just do a line count; something like this:
#!/usr/bin/ksh
sqlplus -s <<EOF > outfile.txt
username/password@database
set verify off
set heading off
set feedback off
spool table1.csv
select count(*) count from tablel;
spool table2.csv
select count(*) count from table2;
spool table3.csv
select count(*) count from table3;
exit;
EOF

wc -l table1.csv table2.csv table3.csv | awk {print $2"\t: "$1}' > outfile.txt
rm table1.csv table2.csv table3.csv


Report Offensive Follow Up For Removal

Response Number 2
Name: kanaka
Date: April 22, 2008 at 12:26:35 Pacific
Subject: sending output to flatfile
Reply: (edit)
thanks lankrypt0 for you reply.I will take your Suggestion and will work on this

Report Offensive Follow Up For Removal



Use following form to reply to current message:

   Name: From My Computing.Net Settings
 E-Mail: From My Computing.Net Settings

Subject: sending output to flatfile

Comments:

 
  Homepage URL (*): 
Homepage Title (*): 
         Image URL: 
 


Data Recovery Software



Version Tracker Pro
Keep your software current and secure, effortlessly

Click Here for a Free Scan

Driver Agent
Automatically find the latest drivers for your computer.
Click Here for a Free Scan



The information on Computing.Net is the opinions of its users. Such opinions may not be accurate and they are to be used at your own risk. Computing.Net cannot verify the validity of the statements made on this site. Computing.Net and Computing.Net, LLC hereby disclaim all responsibility and liability for the content of Computing.Net and its accuracy.
PLEASE READ THE FULL DISCLAIMER AND LEGAL TERMS BY CLICKING HERE

All content ©1996-2007 Computing.Net, LLC