ps_thread_account
Syntax
sys.ps_thread_account(thread_id)
Description
ps_thread_account
is a stored function available with the Sys Schema that returns the account (username@hostname) associated with the given thread_id.
Returns NULL
if the thread_id is not found.
Examples
SELECT sys.ps_thread_account(sys.ps_thread_id(CONNECTION_ID())); +----------------------------------------------------------+ | sys.ps_thread_account(sys.ps_thread_id(CONNECTION_ID())) | +----------------------------------------------------------+ | msandbox@localhost | +----------------------------------------------------------+ SELECT sys.ps_thread_account(sys.ps_thread_id(2042)); +-----------------------------------------------+ | sys.ps_thread_account(sys.ps_thread_id(2042)) | +-----------------------------------------------+ | NULL | +-----------------------------------------------+ SELECT sys.ps_thread_account(sys.ps_thread_id(NULL)); +-----------------------------------------------+ | sys.ps_thread_account(sys.ps_thread_id(NULL)) | +-----------------------------------------------+ | msandbox@localhost | +-----------------------------------------------+
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.