Created
December 20, 2021 20:54
-
-
Save pawelel/3a45fdf6ccab7d444d8636324990662f to your computer and use it in GitHub Desktop.
Connection String from SSMS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select | |
'data source=' + @@servername + | |
';initial catalog=' + db_name() + | |
case type_desc | |
when 'WINDOWS_LOGIN' | |
then ';trusted_connection=true' | |
else | |
';user id=' + suser_name() | |
end | |
from sys.server_principals | |
where name = suser_name() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment