Hi,
1) I have a file (temp.lst) like this :
TABLE_A1
TABLE_C
TABLE_D
TABLE_B
TABLE_A
TABLE_E
TABLE_G
TABLE_F
TABLE_A2
I want to select the paragraph which has exactly TABLE_A in it ... (not TABLE_A1 or TABLE_A2)
The current solution I have is :
cat temp.lst|sed -e '/./{H;$!d;}' -e...
Hi,
How to suppress an error message while using shell?
eg)
ll -rt bcopy_1/temp_db_*.sql > bcopy_1/chk.lst
bcopy_1/temp_db_*.sql not found
I don't want the error message "bcopy_1/temp_db_*.sql not found" to appear ... If the file isn't there, it should just create a 0 byte output file...
Hi,
I have a list of SQLs in a file. I need to open 10 Oracle sessions that read from this file in such a way that each session doesn't read or execute a SQL that's being handled by another session.
Initially I tried by allocating a set number of SQL's to each of the sessions. This worked...
Hi,
I have a file which contains the following :
conn scale/****@bill;
conn audit/****@accounts;
conn ledger/****@receive;
drop synonym tested;
drop synonym checked;
conn rule/****@stats;
drop synonym booked;
drop synonym billed;
drop synonym removed;
.....................
1) I want the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.