如何通过odbc从Progress数据库获取表模式

时间:2010-04-09 18:49:33

标签: schema progress-4gl openedge

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

如何获取表模式?

3 个答案:

答案 0 :(得分:18)

您可以获得所有可用的表格:

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系统目录表

答案 1 :(得分:2)

你可以做一个像

这样的陈述

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

这应该只返回没有任何数据的架构。

答案 2 :(得分:-1)

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