SQL Server - current user name

后端 未结 1 775
你的背包
你的背包 2020-12-04 16:45

Which one should I use to record update made by users?

  1. SYSTEM_USER, or
  2. ORIGINAL_LOGIN(), or
  3. SUSER_SNAME()
相关标签:
1条回答
  • 2020-12-04 17:13

    SYSTEM_USER returns the current executing context, so this can return an impersonated context

    ORIGINAL_LOGIN() returns the identity of the user that initially connected to the instance, so regardless whether the context is impersonated or not it will yield the original user that logged in, good for auditing.

    SUSER_SNAME() this is used if you want to get the username by SID so SUSER_SNAME can be invoked with a parameter like such SUSER_SNAME([server_user_sid]) but the SID is optional if you don’t pass that parameter the current user is returned.

    0 讨论(0)
提交回复
热议问题