Friday, March 30, 2012

Import or add Active Directory users into SQL2000 ?

Is there any way possible to import or add Active Directory users into a
SQL2000 database ?
maybe Something like this would help u
EXEC sp_addlinkedserver
'ADSI',
'Active Directory Services 2.5',
'ADSDSOObject',
'adsdatasource'
GO
go
sp_addlinkedSrvlogin 'ADSI',false, 'sa','USERNAME','PASSWORD'
go
select * from openquery(ADSI,'select GUID from
''LDAP://192.168.33.11:1003/o=e-enterprise/ou=members'' ')
"tptools" <tptools@.discussions.microsoft.com> wrote in message
news:4524D5FA-0115-4707-8674-9463C36E672C@.microsoft.com...
> Is there any way possible to import or add Active Directory users into a
> SQL2000 database ?

No comments:

Post a Comment