Excel 数据与 Active Directory 的连接

发布于 2024-12-06 14:04:22 字数 654 浏览 1 评论 0原文

我想在 提取 查询我的工作簿中的工作表。

我发现我可以做到这一点使用VBA,但我同意Rob 这里 应该比这更容易,只需使用“OLE DB Provider for Microsoft Directory Services”

一点谷歌搜索表明,这是我们集体知识中的一个漏洞,值得填补!

I want to create a data connection in that pulls the result of an query into a sheet in my workbook.

I see that I can do this with VBA but I agree with Rob here that it should be easier than that, just using "OLE DB Provider for Microsoft Directory Services"

A bit of googling suggests that this is a hole in our collective knowledge that deserves to be filled!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赢得她心 2024-12-13 14:04:22

经过 4 小时的试用 &错误,我放弃了,并在 SQL 端做了 AD 工作,使用

SELECT * FROM OPENQUERY(MyActiveDirectoryLinkedServer, 'SELECT ... FROM ''LDAP://...'' WHERE ...')

但这需要设置链接服务器,这违背了 DBA 最佳实践。幸运的是,就我而言,我已经拥有了一个。 ;)

After 4 hours trial & error, I gave up and did the AD stuff on the SQL-side, using

SELECT * FROM OPENQUERY(MyActiveDirectoryLinkedServer, 'SELECT ... FROM ''LDAP://...'' WHERE ...')

But this requires a linked server to be set up, which is against DBA best practice. Luckily in my case I had one already. ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文