Search Results

Search: Posts Made By: Opamps123
21,491
Posted By
sys_date=`date '+%d_%m_%Y:%H:%M:%S'` ...
sys_date=`date '+%d_%m_%Y:%H:%M:%S'`
sysdate1=`date '+%d_%m_%Y`
sqlplus -s $ORA_CONN << EOF
SET SERVEROUTPUT ON
SET FEED OFF
spool org.txt
BEGIN
FOR i IN (SELECT ID FROM table ID<>0)
...
8,711
Posted By cero
In Oracle 10g and later you can use the...
In Oracle 10g and later you can use the dbms_scheduler package to execute external programs. In earlier versions this was done using dbms_java or dbms_pipe.
A full description can be found in the...
21,491
Posted By
If I m not wrong, you are trying to execute same...
If I m not wrong, you are trying to execute same query for 25 column ids on a customer table at a single time.

For that your following qeury will list out column ids in abc.txt file. Correct?
...
21,491
Posted By
run all scripts in background. create one script...
run all scripts in background. create one script like below.

#!/bin/ksh
./script_name.ksh 1 &
./script_name.ksh 2 &
...
./script_name.ksh 25 &

then execute this script

./allScripts.ksh
1,412
Posted By Scrutinizer
If you use backticks you need to use extra...
If you use backticks you need to use extra escape(s) for the dollar sign, otherwise you are counting linefeeds instead of dollar signs. With the $() construct the extra escapes are not necessary.
1,713
Posted By rdcwayx
awk -F ":20[:|C:|D:]" '{print $2}'...
awk -F ":20[:|C:|D:]" '{print $2}' infile
1,713
Posted By bartus11
Try: perl -l -0044ne '/:20(?:C|D)?:(.*)/;print...
Try: perl -l -0044ne '/:20(?:C|D)?:(.*)/;print $1' input > output
Showing results 1 to 7 of 7

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