Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 427969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T19:37:44+00:00 2026-05-12T19:37:44+00:00

Consider this T-SQL: CREATE USER my_test_user WITHOUT LOGIN; SELECT USER_NAME(), USER, SUSER_SNAME(),SYSTEM_USER, suser_name(); EXECUTE

  • 0

Consider this T-SQL:

CREATE USER my_test_user WITHOUT LOGIN;
SELECT USER_NAME(), USER, SUSER_SNAME(),SYSTEM_USER, suser_name();
EXECUTE AS USER = 'my_test_user' WITH NO REVERT;
SELECT USER_NAME(), USER, SUSER_SNAME(),SYSTEM_USER, suser_name();

I’m looking at using these accounts WITHOUT LOGIN for auditing purposes. Basically, my “get a database connection” code returns a connection on which the EXECUTE AS USER...WITH NO REVERT has already been executed.

The problem is that I can’t get consistent results from any of these user name functions. The two lines of output are:

dbo           dbo           original_user      original_user     original_user
my_test_user  my_test_user  S-1-9-3-XXXXX..    S-1-9-3-XXXXX..   S-1-9-3-XXXXX..

The USER functions produce correct output AFTER the 'EXECUTE AS', but beforehand they’re showing dbo rather than the user name
The SUSER functions are just the opposite — they’re correct initially but after impersonation they’re showing some sort of ID

The MSDN docs for SUSER_SNAME explicitly give an example where this is supposed to work.

UPDATE: What I’m looking for is a function that will produce ‘original_user’ in the first case and ‘my_test_user’ in the second.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T19:37:45+00:00Added an answer on May 12, 2026 at 7:37 pm

    Update: you need the ORIGINAL_LOGIN fn here too

    Original:

    Afterwards, there is no matching system level user. So, it can’t resolve the database level sid, so it simply returns the sid from sys.database_principals

    CREATE USER my_test_user WITHOUT LOGIN;
    SELECT USER_NAME(), USER, SUSER_SNAME(),SYSTEM_USER, suser_name();
    EXECUTE AS USER = 'my_test_user' WITH NO REVERT;
    SELECT USER_NAME(), USER, SUSER_SNAME(),SYSTEM_USER, suser_name(),
                            SUSER_SID();
    
    SELECT * FROM sys.database_principals WHERE sid = SUSER_SID();
    

    I don’t know if this is by design, but it explains where the number comes from. The rest is as expected as explained below

    Notes:

    • You’ll get dbo for USER_NAME() because you are logged on with sysadmin rights. Everyone with “sysadmin” is dbo when using db level user functions.

    • After changing user context, db level user functions resolve to the database user context

    • For system level user functions, you’ll get the login you used before

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 214k
  • Answers 214k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Things may be a little clearer if we reformat the… May 12, 2026 at 10:48 pm
  • Editorial Team
    Editorial Team added an answer In the Gemcutter project we simply have a production branch.… May 12, 2026 at 10:48 pm
  • Editorial Team
    Editorial Team added an answer For a long operation, a background worker is the best… May 12, 2026 at 10:48 pm

Related Questions

I've read a few threads on SO about usefulness of unit-testing various applications. The
Rails and ActiveRecord do a perfectly nice job of dealing with what I would
This question originates from a discussion on whether to use SQL ranking functionality or
Although I'm guilty of this crime, it seems to me there can't be any

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.