473,432 Members | 1,422 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,432 software developers and data experts.

How to execute db2 query from a unix shell script

Hi,

I want to know how to connect and execute a db2 query from inside a
UNIX shell script.

Details: We have a unix shell script. We need to execute multiple db2
sql queries from this shell script and export the result to a file.

Any code snippet on this will be helpful.

Thanks,
Sohan

Dec 13 '06 #1
9 78152
sohan wrote:
Hi,

I want to know how to connect and execute a db2 query from inside a
UNIX shell script.

Details: We have a unix shell script. We need to execute multiple db2
sql queries from this shell script and export the result to a file.

Any code snippet on this will be helpful.

Thanks,
Sohan
db2 <command>

Most likely, you want to quote the command.

To see how to export to a file, strip headers, or the like, see the
Command Reference, and the list of options.

B.

Dec 13 '06 #2
THanks Brian.

So now I have written the following shell script to connect to a db2
database and execute a query. Is there any better way / alternate way
of doing this?

#!/usr/bin/ksh

db2 +t connect to <dbname>;

SQLSTMT=/tmp/$0.$$.tmp
echo $SQLSTMT
cat <<EOF $SQLSTMT
set schema ADMIN;
EXPORT TO x.unl OF DEL MODIFIED BY NOCHARDEL

select * from store;
EOF
db2 -txf $SQLSTMT
echo $?

Thanks,
Sohan
P.S. I am new to db2 and UNIX.

Brian Tkatch wrote:
sohan wrote:
Hi,

I want to know how to connect and execute a db2 query from inside a
UNIX shell script.

Details: We have a unix shell script. We need to execute multiple db2
sql queries from this shell script and export the result to a file.

Any code snippet on this will be helpful.

Thanks,
Sohan

db2 <command>

Most likely, you want to quote the command.

To see how to export to a file, strip headers, or the like, see the
Command Reference, and the list of options.

B.
Dec 13 '06 #3
sohan wrote:
THanks Brian.

So now I have written the following shell script to connect to a db2
database and execute a query. Is there any better way / alternate way
of doing this?

#!/usr/bin/ksh

db2 +t connect to <dbname>;

SQLSTMT=/tmp/$0.$$.tmp
echo $SQLSTMT
cat <<EOF $SQLSTMT
set schema ADMIN;
EXPORT TO x.unl OF DEL MODIFIED BY NOCHARDEL

select * from store;
EOF
db2 -txf $SQLSTMT
echo $?
Looks good. You probably want to remove the temp file afterwards, though.

If your SQL statements are not too complex, you can also do this:

#!/bin/sh

db2 "CONNECT TO <dbname>"

db2 "SET SCHEMA = admin"
db2 "EXPORT TO x.unl OF DEL MODIFIED BY NOCHARDEL SELECT * FROM store"

--
Knut Stolze
DB2 z/OS Utilities Development
IBM Germany
Dec 13 '06 #4
sohan wrote:
THanks Brian.

So now I have written the following shell script to connect to a db2
database and execute a query. Is there any better way / alternate way
of doing this?

#!/usr/bin/ksh

db2 +t connect to <dbname>;

SQLSTMT=/tmp/$0.$$.tmp
echo $SQLSTMT
cat <<EOF $SQLSTMT
set schema ADMIN;
EXPORT TO x.unl OF DEL MODIFIED BY NOCHARDEL

select * from store;
EOF
db2 -txf $SQLSTMT
echo $?

Thanks,
Sohan
P.S. I am new to db2 and UNIX.

Brian Tkatch wrote:
sohan wrote:
Hi,
>
I want to know how to connect and execute a db2 query from inside a
UNIX shell script.
>
Details: We have a unix shell script. We need to execute multiple db2
sql queries from this shell script and export the result to a file.
>
Any code snippet on this will be helpful.
>
Thanks,
Sohan
db2 <command>

Most likely, you want to quote the command.

To see how to export to a file, strip headers, or the like, see the
Command Reference, and the list of options.

B.
Instead of cat to a file and running the file, the statement itself can
be used:

db2 -txf <<EOF $SQLSTMT
set schema ADMIN;
EXPORT TO x.unl OF DEL MODIFIED BY NOCHARDEL select * from store;
EOF

Of course, if only one statement is used, the SET SCHEMA is extraneous,
and the schema could be mentioned as part of the TABLE name. This would
make it one statement, and obviate the need for a here-document.

db2 -tx "EXPORT TO x.unl OF DEL MODIFIED BY NOCHARDEL select * from
ADMIN.store;"

Of course, the asterisk may then cause globbing issues, so it needs to
be escaped, or the statement needs to be quoted. Further, with one
statement, the semi-colon is redundant, making the most efficient
statement:

db2 -x EXPORT TO x.unl OF DEL MODIFIED BY NOCHARDEL select \* from
ADMIN.store

If you are looking to automate exporting and loading multiple TABLE, i
just wrote a script to do that (with some very kind help from this
newsgroup).

B.

Dec 13 '06 #5


print -R "CONNECT TO ${DB2DBDFT};
DROP TABLE ${SCHEMANAME}.TABLE1;
DROP TABLE ${SCHEMANAME}.TABLE2;
DROP TABLE ${SCHEMANAME}.TABLE3;
TERMINATE;" | db2 +p -t

While stranded on information super highway sohan wrote:
Hi,

I want to know how to connect and execute a db2 query from inside a
UNIX shell script.

Details: We have a unix shell script. We need to execute multiple db2
sql queries from this shell script and export the result to a file.

Any code snippet on this will be helpful.

Thanks,
Sohan
--
Hemant Shah /"\ ASCII ribbon campaign
E-mail: No************@xnet.com \ / ---------------------
X against HTML mail
TO REPLY, REMOVE NoJunkMail / \ and postings
FROM MY E-MAIL ADDRESS.
-----------------[DO NOT SEND UNSOLICITED BULK E-MAIL]------------------
I haven't lost my mind, Above opinions are mine only.
it's backed up on tape somewhere. Others can have their own.
Dec 14 '06 #6
Hemant Shah wrote:
>

print -R "CONNECT TO ${DB2DBDFT};
You should have pointed out that "print" is not necessarily a regular Unix
and/or shell command.
DROP TABLE ${SCHEMANAME}.TABLE1;
DROP TABLE ${SCHEMANAME}.TABLE2;
DROP TABLE ${SCHEMANAME}.TABLE3;
TERMINATE;" | db2 +p -t
--
Knut Stolze
DB2 z/OS Utilities Development
IBM Germany
Dec 14 '06 #7
Thanks for all the responses.
One more question, to connect to a db2 database in the same UNIX server
we can use:

db2 connect to <dbnameUSer <nameusing <pwd>

Now if the db2 server is in differrent server where/how do we specify
the server name or its ip address?

Thanks,
Sohan
Knut Stolze wrote:
Hemant Shah wrote:


print -R "CONNECT TO ${DB2DBDFT};

You should have pointed out that "print" is not necessarily a regular Unix
and/or shell command.
DROP TABLE ${SCHEMANAME}.TABLE1;
DROP TABLE ${SCHEMANAME}.TABLE2;
DROP TABLE ${SCHEMANAME}.TABLE3;
TERMINATE;" | db2 +p -t

--
Knut Stolze
DB2 z/OS Utilities Development
IBM Germany
Dec 14 '06 #8
Ian
sohan wrote:
Now if the db2 server is in differrent server where/how do we specify
the server name or its ip address?
That is configured when you catalog the database (i.e. the DB2 client
must be installed on the machine)

Dec 14 '06 #9

Sorry about that, I should have mentioned that it is a Korn shell command.

While stranded on information super highway Knut Stolze wrote:
Hemant Shah wrote:
>>

print -R "CONNECT TO ${DB2DBDFT};

You should have pointed out that "print" is not necessarily a regular Unix
and/or shell command.
>DROP TABLE ${SCHEMANAME}.TABLE1;
DROP TABLE ${SCHEMANAME}.TABLE2;
DROP TABLE ${SCHEMANAME}.TABLE3;
TERMINATE;" | db2 +p -t

--
Knut Stolze
DB2 z/OS Utilities Development
IBM Germany
--
Hemant Shah /"\ ASCII ribbon campaign
E-mail: No************@xnet.com \ / ---------------------
X against HTML mail
TO REPLY, REMOVE NoJunkMail / \ and postings
FROM MY E-MAIL ADDRESS.
-----------------[DO NOT SEND UNSOLICITED BULK E-MAIL]------------------
I haven't lost my mind, Above opinions are mine only.
it's backed up on tape somewhere. Others can have their own.
Dec 14 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: nidhikhandelwal | last post by:
I am calling a unix shell script from a perl script by using the following system command: system("./readfile_new.sh"); but it seems the unix script readfile_new.sh is not being called. Can...
0
by: Aashif | last post by:
I want to call Unix Shell script which is available in other Server (Unix server) from windows application using C#. Currently the shell script runs the C program but the GUI is not good, So I want...
0
by: Purple Haze | last post by:
I have a stored procedure which returns a resultset. I am calling that stored procedure from UNIX shell script. I want the data in the result set to be exported to a .csv file. How can I do this...
0
by: INCANDESCENT | last post by:
Hi All , Could any one of you tell me , if we can call a Unix shell script from VB forms ?? VB is used for client interaction , i have developed program using unix script which internally calls...
2
by: gagandutta01 | last post by:
Hi, Can anyone tell me how to execute a function declared in Oracle Package from Unix shell script? I created a shell script and after connecting to oracle database i am using exec @...
0
by: abhishek | last post by:
any way by which i can trigger a unix shell script from a button click.after that i should display an error message if the script was'nt executed successfully.Please help!!!
3
by: regnumber | last post by:
Hi. I am new to Unix. I need to write a Unix Shell Script to extract records from the table and write those extracted datas to a text file. DB using is DB2. Can anyone give me some sample...
3
by: lakk | last post by:
Having a database created, is it possible to excute queries on this database from a shell script file??
1
by: Koteswara Rao K | last post by:
Hi, How to get server file( UNIX Server) to local desktop(Windows desktop) Using unix shell script Program. Thanks & Regards Koteswara Rao Kavuri
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.