Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: vrrajeeb
  • Content: Threads
  • Order by date
  1. vrrajeeb

    Select a paragraph based on a word

    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...
  2. vrrajeeb

    Suppress error message

    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...
  3. vrrajeeb

    Running SQL's in parallel

    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...
  4. vrrajeeb

    Deleting a line based on next line

    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...

Part and Inventory Search

Back
Top