Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Unitll 几天前,一切正常,今天数据库模式视图中的“创建单元测试”选项显示为灰色。我已经检查了所有的参考资料,并且已经正确到位。请问有什么建议吗?
您使用的 sql 文件一定有问题。检查错误列表中的警告/错误。最可能的原因之一可能是您可能在其中一个存储过程中指定了 [Database].[Schema].[Object]。要解决这个问题,只需使用 [Schema].[Object] 而不是 [Database].[Schema].[Object]。 例如使用
dbo.MyStoredProc instead of MyDatabase.dbo.MyStoredProc