{"id":33,"date":"2011-07-05T09:06:58","date_gmt":"2011-07-05T09:06:58","guid":{"rendered":"https:\/\/sqlserverlearner.azurewebsites.net\/2011\/07\/05\/what-is-credential-sql-server\/"},"modified":"2011-07-05T09:06:58","modified_gmt":"2011-07-05T09:06:58","slug":"what-is-credential-sql-server","status":"publish","type":"post","link":"https:\/\/sqlserverlearner.com\/2011\/07\/05\/what-is-credential-sql-server\/","title":{"rendered":"WHAT IS CREDENTIAL – SQL SERVER"},"content":{"rendered":"
WHAT IS SQL SERVER CREDENTIAL?<\/strong><\/p>\n SQL Server credential stores the authentication information which is required to access a resource.<\/p>\n Credentials store the following details:<\/p>\n Basic Example: In the above example Credential1 is created with identity :username <\/strong> and password : password<\/strong><\/p>\n The created credentials can be used in agent proxies<\/p>\n","protected":false},"excerpt":{"rendered":" WHAT IS SQL SERVER CREDENTIAL? SQL Server credential stores the authentication information which is required to access a resource. Credentials store the following details: Credential Name – Name of the credential, this is used for refereceing the credential Identity – This is basically the username Password – Password of the identity\/username. Encryption Provider – Authentication…<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[107,3],"tags":[108,109,110,111],"class_list":["post-33","post","type-post","status-publish","format-standard","hentry","category-credentials","category-sqlserverpedia-syndication","tag-example-of-credential","tag-uses-of-credentials","tag-what-are-sql-server-credentials","tag-why-credential"],"_links":{"self":[{"href":"https:\/\/sqlserverlearner.com\/wp-json\/wp\/v2\/posts\/33","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sqlserverlearner.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sqlserverlearner.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sqlserverlearner.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sqlserverlearner.com\/wp-json\/wp\/v2\/comments?post=33"}],"version-history":[{"count":0,"href":"https:\/\/sqlserverlearner.com\/wp-json\/wp\/v2\/posts\/33\/revisions"}],"wp:attachment":[{"href":"https:\/\/sqlserverlearner.com\/wp-json\/wp\/v2\/media?parent=33"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sqlserverlearner.com\/wp-json\/wp\/v2\/categories?post=33"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sqlserverlearner.com\/wp-json\/wp\/v2\/tags?post=33"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}\n
\n[sql]
\nUSE [master]
\nGO
\nCREATE CREDENTIAL [credential1] WITH IDENTITY = N’username’, SECRET = N’password’
\nGO
\n[\/sql]<\/p>\n