Viewing 5 posts - 1 through 5 (of 5 total)
SELECT OBJECT_NAME(am.[object_id]) AS [ModuleName], *
FROM sys.assembly_modules am
LEFT JOIN sys.parameters pm
ON pm.[object_id] = am.[object_id]
WHERE am.[assembly_class] = N'ActiveDirectoryLibrary.ADFunctions';
This query returns a...
May 29, 2019 at 9:21 pm
Duplicate comment.
May 29, 2019 at 7:06 pm
@Phil Parkin When you say put the source code into the project, do you mean the dll? They exist in the assemblies folder. Or do you mean the actual project...
May 29, 2019 at 7:06 pm
It also references System.DirectoryServices created from:
CREATE ASSEMBLY [System.DirectoryServices]
AUTHORIZATION [dbo]
FROM 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\System.DirectoryServices.dll'
WITH PERMISSION_SET = UNSAFE
May 29, 2019 at 6:35 pm
Thank you for the response. The definition of the stored procedure on the server adds one line:
CREATE PROCEDURE [dbo].[usp_GetUserADGroups]
@login[nvarchar](100)
WITH EXECUTE AS CALLER
AS
EXTERNAL NAME [ActiveDirectory].[ActiveDirectoryLibrary.ADFunctions].[GetUserADGroups]
GO
The project definition was extracted...
May 29, 2019 at 6:24 pm
Viewing 5 posts - 1 through 5 (of 5 total)