开发者

Finding a DLL SQL Assembly with only the Database in SQL Server

开发者 https://www.devze.com 2023-03-29 00:17 出处:网络
开发者_开发百科How do I find a DLL for a SQL Assembly in SQL Server if I only have the database?SELECT

开发者_开发百科How do I find a DLL for a SQL Assembly in SQL Server if I only have the database?


SELECT 
    assembly = a.name, 
    path     = f.name
FROM sys.assemblies AS a
INNER JOIN sys.assembly_files AS f
ON a.assembly_id = f.assembly_id
WHERE a.is_user_defined = 1;
0

精彩评论

暂无评论...
验证码 换一张
取 消