如何通过 T-SQL 访问查看命令?

发布于 2024-08-04 02:15:07 字数 367 浏览 3 评论 0原文

我希望能够以编程方式检索在 SQL Server 上生成视图的命令字符串。

我认为 ADOX 集合与 ADODB 连接一起使用,将允许我们通过目录/视图/命令属性来访问它。不幸的是,当通过 ADO 连接从 MS-Access 客户端连接到 SQL Server 时,“视图”集合不可用,这就是我们的情况(请参阅 无法将 ADOX 视图集合与 SQL Server 结合使用)。

我希望我现在可以找到一个 T-SQL 替代方案来解决这个问题。然后,我将能够通过 ADO 连接发送 T-SQL 指令,并在客户端收集相应的文本字符串。

I'd like to be able to retrieve programmatically the command strings that generate the views on our SQL Server.

I though the ADOX collection, used together with an ADODB connection, will allow us to access this through the catalog/view/command property. Unfortunately, the 'views' collection is not available when connecting from an MS-Access client to a SQL Server through an ADO connection, which is our case (see Cannot Use ADOX Views Collection with SQL Server).

I hope I could now find a T-SQL alternative to this problem. I will then be able to send the T-SQL instruction through my ADO connection, and collect the corresponding text string on my client side.

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

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

发布评论

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

评论(1

╭⌒浅淡时光〆 2024-08-11 02:15:07

像这样的东西吗?

SELECT
    v.name,
    m.definition
FROM 
    sys.views v
INNER JOIN 
    sys.sql_modules m ON v.object_ID = m.object_id

马克

Something like this?

SELECT
    v.name,
    m.definition
FROM 
    sys.views v
INNER JOIN 
    sys.sql_modules m ON v.object_ID = m.object_id

Marc

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