4

如何检查 SQL Server 实例中是否已存在凭据,以避免在运行时出错DROP CREDENTIAL

通常我使用 SSMS 中的SCRIPT AS ...andDROP And CREATE To功能来创建脚本,但CREDENTIAL没有该选项

4

1 回答 1

11
if exists (select * from sys.credentials where name = 'CredName')
    drop credential CredName
于 2012-06-08T10:02:05.007 回答