![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| doubt in awk | jisha | Shell Programming and Scripting | 4 | 04-16-2008 04:02 AM |
| AWK doubt | Rafael.Buria | Shell Programming and Scripting | 2 | 02-06-2008 11:00 AM |
| doubt about awk | soujanya_srk | UNIX for Dummies Questions & Answers | 2 | 01-10-2008 05:26 PM |
| awk doubt.. | esham | Shell Programming and Scripting | 11 | 10-11-2007 02:24 AM |
| ftp doubt | ranj@chn | Shell Programming and Scripting | 0 | 01-04-2006 08:47 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Pls help for the doubt
Hi All,
I have to queries : 1. Why we always put #!/bin/ksh on the top of any shell script 2. How we can connect to Oracle SQL prompt from UNIX shell and what all parametres need to be set for that. Thanks, Ravi |
|
||||
|
For the 1st question What does "#! /usr/bin/ksh" mean?
and for the 2nd try the following snippet. Code:
sqlplus -silent ${DBUSER}/${DBPASS}@${ORACLE_SID} << ENDSQL
set feedback off serveroutput on size 5000
execute pkg_1.pr_1;
commit;
Delete from table1;
commit;
ENDSQL
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|