To disconnect users from a database see Managing connected users.
Select a database.
Choose File » Disconnect.
Execute a DISCONNECT statement.
See DISCONNECT statement [ESQL] [Interactive SQL] and DROP CONNECTION statement.
Connect to the database as a user with DBA authority.
Use the sa_conn_info system procedure to determine the connection ID of the user you want to disconnect.
Execute a DROP CONNECTION statement.
The following statement shows how to use the DISCONNECT statement to disconnect the current connection, conn1, in Interactive SQL:
DISCONNECT conn1; |
The following statement shows how to use DISCONNECT in embedded SQL:
EXEC SQL DISCONNECT :conn-name |
The following statement drops connection number 4.
DROP CONNECTION 4; |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |