472,371 Members | 1,607 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,371 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 77452
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
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
2
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...
0
by: jack2019x | last post by:
hello, Is there code or static lib for hook swapchain present? I wanna hook dxgi swapchain present for dx11 and dx9.

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.