Quote:
|
Originally Posted by przytula_guy
what is meant by : DB2 "enherit" the connection in a child proces
|
From db2cmd on ms-win:
when you type:
Code:
timethis db2 connect to sample
db2 connect
then the 2nd will indicate that no connection exists. This makes sence because the the program "timethis" owned the connection and is finished now
But when you type:
Code:
db2 connect to sample
timethis db2 connect
db2 connect
you will see that the 2nd command will have no connection, and the 3rd does have one. I would expect/desire that the 2nd command would enherit the connection from it's root (db2cmd).
Is there someone on DB2 V8 on windows to confirm that this
does work?