473,657 Members | 2,550 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

disconnect command

Hi,
we are using db2 8.1 on Linux. I'd like to close all open connection at
a defined time point. Therfore I wrote a sql script including the command

disconnect all

or

release all

Unfortunately, a warning returns telling me that a database connection
doesn't exists. If I use the command

list applications

then I see a list of open connection.

Question: How can I close all these open connections?

Thanks, Toralf
Nov 12 '05 #1
6 28172
Toralf,

you can use the force application command, or it's new for V8
the quiesce command for instance or database with force connection.

regards,

Joachim Müller

"Toralf Kirsten" <tk******@izbi. uni-leipzig.de> schrieb im Newsbeitrag
news:c6******** **@news.uni-leipzig.de...
Hi,
we are using db2 8.1 on Linux. I'd like to close all open connection at
a defined time point. Therfore I wrote a sql script including the command

disconnect all

or

release all

Unfortunately, a warning returns telling me that a database connection
doesn't exists. If I use the command

list applications

then I see a list of open connection.

Question: How can I close all these open connections?

Thanks, Toralf

Nov 12 '05 #2
Toralf,

you can use the force application command, or it's new for V8
the quiesce command for instance or database with force connection.

regards,

Joachim Müller

"Toralf Kirsten" <tk******@izbi. uni-leipzig.de> schrieb im Newsbeitrag
news:c6******** **@news.uni-leipzig.de...
Hi,
we are using db2 8.1 on Linux. I'd like to close all open connection at
a defined time point. Therfore I wrote a sql script including the command

disconnect all

or

release all

Unfortunately, a warning returns telling me that a database connection
doesn't exists. If I use the command

list applications

then I see a list of open connection.

Question: How can I close all these open connections?

Thanks, Toralf

Nov 12 '05 #3
Disconnect and Release works on 'your current connections', not on the whole
db or instance (connections of others).
You may use Disconnect and Release when you work with type 2 connections.

PM

"Toralf Kirsten" <tk******@izbi. uni-leipzig.de> a écrit dans le message de
news:c6******** **@news.uni-leipzig.de...
Hi,
we are using db2 8.1 on Linux. I'd like to close all open connection at
a defined time point. Therfore I wrote a sql script including the command

disconnect all

or

release all

Unfortunately, a warning returns telling me that a database connection
doesn't exists. If I use the command

list applications

then I see a list of open connection.

Question: How can I close all these open connections?

Thanks, Toralf

Nov 12 '05 #4
Disconnect and Release works on 'your current connections', not on the whole
db or instance (connections of others).
You may use Disconnect and Release when you work with type 2 connections.

PM

"Toralf Kirsten" <tk******@izbi. uni-leipzig.de> a écrit dans le message de
news:c6******** **@news.uni-leipzig.de...
Hi,
we are using db2 8.1 on Linux. I'd like to close all open connection at
a defined time point. Therfore I wrote a sql script including the command

disconnect all

or

release all

Unfortunately, a warning returns telling me that a database connection
doesn't exists. If I use the command

list applications

then I see a list of open connection.

Question: How can I close all these open connections?

Thanks, Toralf

Nov 12 '05 #5
Joachim,
force application command works fine.
Thanks, Toralf
Joachim Mueller wrote:
Toralf,

you can use the force application command, or it's new for V8
the quiesce command for instance or database with force connection.

regards,

Joachim Müller

"Toralf Kirsten" <tk******@izbi. uni-leipzig.de> schrieb im Newsbeitrag
news:c6******** **@news.uni-leipzig.de...
Hi,
we are using db2 8.1 on Linux. I'd like to close all open connection at
a defined time point. Therfore I wrote a sql script including the command

disconnect all

or

release all

Unfortunately , a warning returns telling me that a database connection
doesn't exists. If I use the command

list applications

then I see a list of open connection.

Question: How can I close all these open connections?

Thanks, Toralf


Nov 12 '05 #6
Joachim,
force application command works fine.
Thanks, Toralf
Joachim Mueller wrote:
Toralf,

you can use the force application command, or it's new for V8
the quiesce command for instance or database with force connection.

regards,

Joachim Müller

"Toralf Kirsten" <tk******@izbi. uni-leipzig.de> schrieb im Newsbeitrag
news:c6******** **@news.uni-leipzig.de...
Hi,
we are using db2 8.1 on Linux. I'd like to close all open connection at
a defined time point. Therfore I wrote a sql script including the command

disconnect all

or

release all

Unfortunately , a warning returns telling me that a database connection
doesn't exists. If I use the command

list applications

then I see a list of open connection.

Question: How can I close all these open connections?

Thanks, Toralf


Nov 12 '05 #7

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

Similar topics

1
2597
by: Tedmond | last post by:
Dear all, I need to map a network drive at run-time then disconnect it after use. The only way I know and I am using is creating a Process to call the shell command 'net use'. It has no problem in connecting, but however, I failed to remove the connection after use by calling the 'net use /delete' when the user is opening a explorer and connected to the drive. Can anyone tell me how to FORCE to disconnect a network drive? Or tell me...
0
2731
by: Amir | last post by:
Hi, According to Application Programming and SQL Guide chapter 29: "If DB2 terminates, a task that issued CONNECT must issue DISCONNECT to reset the CAF control blocks. The function returns the reset accomplished return codes and reason codes (+004 and X'00C10824'), and ensures that future connection requests from the task work when DB2 is back on line."
2
9181
by: Tony Do | last post by:
I have the backup command BACKUP DATABASE NEST TO C:\\databases WITH 2 BUFFERS BUFFER 1024 $ How do I force all the user to disconnect? before running the above command
0
472
by: Toralf Kirsten | last post by:
Hi, we are using db2 8.1 on Linux. I'd like to close all open connection at a defined time point. Therfore I wrote a sql script including the command disconnect all or release all
6
16379
by: Joseph | last post by:
Hi, I am trying to develop a C# application that will run on Windows that will do the following * Select file name to process * FTP the file to a UNIX server * Process this file on UNIX using a program on UNIX "./pgmname -options Infilename > OutputFilename" * FTP the output of this program back to Windows * Process the resultant file and create output report file
2
2148
by: Vinit | last post by:
Hi I have an application to which clients can connect using the combination http://ip-address:port# . I can detect which clients are connected to this application. Could someone please guide with writing code which will disconnect a connection given the ip-address. Since the server knows which client is connected , this method should be able to disconnect the ones it doesn want by knowing only the Ip-Address. I am aware of socket...
3
45396
by: Laurence | last post by:
Hi there, Does anyone know what's difference among "connect reset", "disconnect", and "terminate"? Thanks in advance,
1
2432
by: kalps | last post by:
i am in system login and connected with a user u1....How to disconnect from the connected user u1?but i should be connected with system login is any command for this? for ex.. i have given the following entered in system login..after that i used the command connect u1/u1@hoststring now i want to come out from user u1... i am not asking about closing the application...
1
3850
by: TMAG | last post by:
If i do "db2 disconnect all" after an application finishes, does it mean that any application that connects after this will find the buffer pool "cold"? Or the pages accessed by last application will be still in buffer pool? Apparently when I do "db2 disconnect all" at the end, the windows task manager shows that all bufferpool memory has been deallocated. thanks
0
8425
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8326
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8845
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8743
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8522
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8622
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
4333
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1973
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1736
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.