Search Results

Search: Posts Made By: millan
4,705
Posted By PikK45
Try this :) do sqlplus...
Try this :)

do
sqlplus $usrname/$password@$dbSID <<-EOF
WHENEVER OSERROR EXIT 9;
WHENEVER SQLERROR EXIT SQL.SQLCODE;
prompt Connected to the database;
quit;
EOF ...
2,472
Posted By Fundix
awk -F"," ' /name/ { for (i=1;i<=NF;i++) if...
awk -F"," ' /name/ { for (i=1;i<=NF;i++) if ($i=="name") idx=i} $0 !~ /name/ { print $idx} ' file
3,345
Posted By Ygor
In awk...awk...
In awk...awk '!/^[09]/&&!(/^1/&&substr($0,576,1)~/[0-9]/)' A.DAT > B.DAT

---------- Post updated at 11:54 AM ---------- Previous update was at 11:49 AM ----------

In perl...perl -n -e 'print $_...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 02:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy