SQL ADSI Active Directory 创建新帐户
我的 SQL Server (2005) 中有一个 ADSI 连接,我可以使用 openquery 对其进行查询。 有什么方法可以创建新帐户(和/或)编辑现有帐户吗?
另外,我想必须使用 openquery 来获取数据,但看起来这是唯一的解决方案。
这是我正在使用的示例查询:
SELECT
samaccountname,
department,
mail,
displayName,
employeeid
FROM OPENQUERY( ADSI,
'
SELECT samaccountname, department, mail, displayName, employeeid
FROM ''LDAP://DC=MyDomainName,DC=MyDomainExtension''
WHERE objectCategory = ''Person'' and objectClass= ''user''
'
)
谢谢
I have an ADSI connection in my SQL Server (2005) and I'm able to query it using openquery. Is there any way to create new accounts (and/or) edit existing ones?
Also, I'd like to have to use openquery to get to the data, but it looks like it's the only solution.
Here's a sample query that I'm using:
SELECT
samaccountname,
department,
mail,
displayName,
employeeid
FROM OPENQUERY( ADSI,
'
SELECT samaccountname, department, mail, displayName, employeeid
FROM ''LDAP://DC=MyDomainName,DC=MyDomainExtension''
WHERE objectCategory = ''Person'' and objectClass= ''user''
'
)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能(至少不能使用 ADSI SQL)。
ADSI SQL 仅定义了一个搜索接口,仅支持
SELECT
语句(请参阅 MSDN:“SQL 方言")。 另外,OPENQUERY()
是在 SQL Server 中获取数据的唯一方法。要创建对象,您必须使用另一种方法(您可以很好地针对 ADSI 接口编写脚本)。
You can't (at least not using ADSI SQL).
ADSI SQL only defines a search interface, supporting nothing more than the
SELECT
statement (See MSDN: "SQL Dialect"). Also,OPENQUERY()
is the only way to get the data in SQL Server.To create objects, you will have to use another method (you can script against the ADSI interface quite well).