ksh with Oracle commands


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers ksh with Oracle commands
# 1  
Old 09-02-2014
ksh with Oracle commands

works fine.

Code:
echo "Deleting CHOPOne Coreaccess from LAUA..."
$ORACLE_HOME/bin/sqlplus username/password@servername << !
delete from usergrpdtl where username='acker';
commit;
!

but not working with "if statement" even $TMPDIR/adlogin.log exists and greater than 0.
Code:
if [ -s $TMPDIR/adlogin.log ]
then
        echo "Deleting users..."
        $ORACLE_HOME/bin/sqlplus username/password@servername << !
        delete from usergrpdtl where username='mann';
        commit;
        !
fi

Error msg:
0403-057 Syntax error at line 4 : `<' is not matched

Moderator's Comments:
Mod Comment Code tags please

Last edited by jim mcnamara; 09-02-2014 at 03:56 PM..
# 2  
Old 09-02-2014
the << construct requires the ending ! to be in the LEFTMOST column, column #1.
Yours is indented.

You can use
Code:
$ORACLE_HOME/bin/sqlplus username/password@servername << -!

To tell the shell that the ! will not be in the leftmost column.
# 3  
Old 09-02-2014
Code:
#!/bin/ksh
. cv LDEV
if [ -s /tmp/tj.txt ]
then
        echo "Deleting Coreaccess from LAUA..."
        $ORACLE_HOME/bin/sqlplus username/password@servername << -!
        delete from usergrpdtl where username='mann';
        commit;
        !
fi

test3.sh[5]: 0403-057 Syntax error at line 8 : `<' is not matched.

Moderator's Comments:
Mod Comment Please use code tags
# 4  
Old 09-02-2014
[email] stuff [email] is not a valid SQL command
Code:
#!/bin/ksh
. cv LDEV
if [ -s /tmp/tj.txt ]
then
        echo "Deleting Coreaccess from LAUA..."
        $ORACLE_HOME/bin/sqlplus << -!
        delete from usergrpdtl where username='mann';
        commit;
        !
fi

# 5  
Old 09-02-2014
Code:
lawaptdu001:/home/lawson>cat test3.sh
#!/bin/ksh
. cv LDEV
if [ -s /tmp/tj.txt ]
then
        echo "Deleting Coreaccess from LAUA..."
        $ORACLE_HOME/bin/sqlplus  << -!
        delete from usergrpdtl where username='mann';
        commit;
fi
lawaptdu001:/home/lawson>sh test3.sh
test3.sh[5]: 0403-057 Syntax error at line 8 : `<' is not matched.


Last edited by jim mcnamara; 09-02-2014 at 04:50 PM..
# 6  
Old 09-02-2014
Code:
if [ -s /tmp/tj.txt ]
then
        echo "Deleting Coreaccess from LAUA..."
        $ORACLE_HOME/bin/sqlplus  << -!
        delete from usergrpdtl where username='mann';
        commit;
      !
fi

# 7  
Old 09-02-2014
Code:
if [ -s /tmp/tj.txt ]
then
        echo "Deleting Coreaccess from LAUA..."
        $ORACLE_HOME/bin/sqlplus  << -!
        delete from usergrpdtl where username='mann';
        commit;
      !
fi

Note the red !
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Ksh: run commands from pipe

I create commands within a pipe and finally want them to be executed instead of being displayed on the screen. What is the last stage in this pipe? I found by guessing that "ksh" is working, but is this the best to use here? It boils down to this: echo "print Hello World!"| kshWhat is the... (15 Replies)
Discussion started by: Cochise
15 Replies

2. Shell Programming and Scripting

Sequential execution of commands in ksh

I need to run few commands in a ksh script sequentially. Some of the commands are jobs submitted to the server and the consecutive commands are dependent on the completion of the jobs submitted to the server. It works if i separate the commands into different files like this #!/bin/ksh... (1 Reply)
Discussion started by: prashob123
1 Replies

3. Shell Programming and Scripting

SED sub commands in KSH not working for me

I am using SED to edit a file (called file) the file contains the word "ERROR" and I want to use SED to: 1. Search for text "ERROR" If found, 2. Append new line with text "hoi" I tried: sed 's/ERROR/ a\hoi' file sed 's/ERROR/ a\ hoi' file I get all the time the error sed:... (7 Replies)
Discussion started by: Alex400
7 Replies

4. UNIX for Dummies Questions & Answers

Calling commands with ksh

Hi, I am not able to run below command on linux, it however works on solaris. If anyone knows the reason and a solution for it can you please let me know ? Linux ----- $> ksh 'echo hi' ksh: echo hi: No such file or directory $> which ksh /usr/bin/ksh Solaris ------ $> ksh 'echo... (2 Replies)
Discussion started by: krishnaux
2 Replies

5. Shell Programming and Scripting

Stringing Multiple commands together in KSH

I am trying to to this findCDZfile=`ls -at `find /opt/apps/busobj/bobj/bobje/data/ -name CDZ*.tmp`` and it doesn't seem to like me - is there a special escape character I need to use? (2 Replies)
Discussion started by: cpare
2 Replies

6. Shell Programming and Scripting

KSH variable containing piped commands

Hi, I am trying to execute a bunch of piped command which are stored in a variable, but only one command executed at a time, and rest of the pipes, commands and their arguments are considered as argument to the very first command. Can you please help me in this? bash-2.05$ cat test.sh... (1 Reply)
Discussion started by: prashant.ladha
1 Replies

7. UNIX for Advanced & Expert Users

Better KSH commands

Are there any documents available for checking the execution time taken by ksh commands? My requirement is to fine tune a set of shell scripts having lot of "echos" and "date"s. Is there a better replacement for the below code?. echo "ABC process started on `date`" some code.. echo... (12 Replies)
Discussion started by: engineer
12 Replies

8. Shell Programming and Scripting

ssh commands in ksh question

Is there a way to shorten these commands? because this script asks for a password 3 times scp -p /usr/local/bin/${script_name} ${servername$iy]}://usr/local/bin/ ssh ${servernames} /usr/local/bin/${script_name} ssh ${servernames} rm -f /usr/local/bin/${script_name} Basically, I'm creating a... (3 Replies)
Discussion started by: pdtak
3 Replies

9. UNIX for Dummies Questions & Answers

ksh substring commands

I am trying to get various portions of strings in my script, but am getting a substitution error. I followed the syntax that was described when I goggled this, but I can't get anything to work. #! /bin/ksh/ hello="adklafk;afak" #hello=${hello:3} hello=${$hello:3} happy="hey" echo... (1 Reply)
Discussion started by: anderssl
1 Replies

10. Shell Programming and Scripting

ksh GUI commands

I have a few scripts that i would like to make into GUI's. Are there scripting commands to make GUI's if so where can i get the list of commands and what they do or if anyone has an example of it. Anything will help, thanks (1 Reply)
Discussion started by: daltonkf
1 Replies
Login or Register to Ask a Question