Laurence wrote:
Hi there,
Does anyone know what's difference among "connect reset", "disconnect",
and "terminate"?
Thanks in advance,
IIRC, CONNECT RESET contains an implicit COMMIT and stops the
connection to database. TERMINATE end the process the server held open
to the client, and drops all resources. So, the best way to end a
connection is first CONNECT RESET and then TERMINATE.
I am not familiar with DISCONNECT, but i would assume it closes the
connection with an implicit ROLLBACK.
The command are explained in detail in the documentation. under
COMMANDs.
B.