如何通过 odbc 从 Progress 数据库获取表架构

发布于 2024-08-29 01:26:02 字数 78 浏览 8 评论 0原文

我在 sql 2008 和 Progress OpenEdge 10.1b 服务器之间设置了一个链接服务器。

如何获取表架构?

I have a linked server set up between sql 2008 and a Progress OpenEdge 10.1b server.

How do I get the table schemas?

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

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

发布评论

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

评论(3

怕倦 2024-09-05 01:26:02

您可以获取所有可用的表:

select * from sysprogress.SYSTABLES;

或者

select * from sysprogress.SYSTABLES_FULL;

您可以获取指定表的所有列:

select * from sysprogress.SYSCOLUMNS where TBL = 'table_name';

或者

select * from sysprogress.SYSCOLUMNS_FULL where TBL = 'table_name';

它仅适用于 DBA 特权用户。

更多详细信息,请参阅 OpenEdge 产品文档:https:// Community.progress.com/community_groups/openedge_general/w/openedgegeneral/1329.openedge-product-documentation-overview

文档标题:SQL 参考

章节:OpenEdge SQL 系统目录表< /强>

You can get all available tables:

select * from sysprogress.SYSTABLES;

or

select * from sysprogress.SYSTABLES_FULL;

You can get all columns of specified table:

select * from sysprogress.SYSCOLUMNS where TBL = 'table_name';

or

select * from sysprogress.SYSCOLUMNS_FULL where TBL = 'table_name';

It works only with DBA privileged user.

More detail in OpenEdge Product Documentation: https://community.progress.com/community_groups/openedge_general/w/openedgegeneral/1329.openedge-product-documentation-overview

Document title: SQL Reference

Chapter: OpenEdge SQL System Catalog Tables

风月客 2024-09-05 01:26:02

的语句

您可以执行类似SELECT * FROM LinkedProgressOpenedgeServer.YourDatabase.Owner.TableName WHERE 1=2

,该语句应该仅返回架构,而不返回任何数据。

You can do a statement like

SELECT * FROM LinkedProgressOpenedgeServer.YourDatabase.Owner.TableName WHERE 1=2

That should return just the schema without any data.

原谅我要高飞 2024-09-05 01:26:02

通常,默认模式名称是 PUB。您可以尝试使用 PUB 架构。

Normally the default schema name is PUB. You can try using PUB schema.

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