Drops a connection to the database, belonging to any user.
DROP CONNECTION connection-id
The following statement drops connection with ID number 4.
DROP CONNECTION 4
The DROP CONNECTION statement disconnects a user from the database by dropping the connection to the database.
The connection-id for the connection is obtained using the connection_property function to request the connection number. The following statement returns the connection ID of the current connection:
SELECT connection_property( 'number' )
None.
Must have DBA authority.