古老 AS/400 上 DB2 的表结构

发布于 2024-11-15 02:04:10 字数 217 浏览 4 评论 0原文

我们有一台非常旧的 400 台,大约有 10-15 年的历史,我需要将其中的数据迁移出来,以便它可以退役。我通过一个名为 QTODBC 的程序与其建立了 ODBC 连接,该程序报告我正在连接的主机版本为 03.01.0000。我正在尝试访问系统表,以便获取表结构数据,并且我尝试了各种命令,这些命令似乎都是为更高版本的 DB2 编写的。

当时的系统表是什么?假设他们有这么旧的版本,我将如何提取模式名称?

We have a VERY old 400, on the order of 10-15 years old, and I need to migrate the data out of it so it can be retired. I have ODBC connectivity to it through a program called QTODBC that is reporting that the host that I'm connecting to is version 03.01.0000. I'm trying to access system tables so that I can get table structure data and I've tried various commands that all seem to be written for later versions of DB2.

What were the system tables back way back then? And how would I pull up schema names, assuming they had them with this old of a version?

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

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

发布评论

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

评论(3

戏剧牡丹亭 2024-11-22 02:04:10

对于 V3R1,您最好的选择是在终端会话中使用 DSFFD FILE(...) OUTPUT(*OUTPUT) OUTFILE(LIB/FILE) 命令来创建字段定义文件。

对于一个很旧的系统来说,这些文件很可能甚至没有被外部描述。这意味着文件布局在访问该文件的每个程序中都是硬编码的。如果您只找到名为 F00001、K00001 等的几个字段,您就可以识别这种情况。

Your best bet for V3R1 will be to use the DSPFFD FILE(...) OUTPUT(*OUTPUT) OUTFILE(LIB/FILE) command from a terminal session to create a file of field definitions.

There's a high chance with a system that old that the files may not even be externally described. This means that the file layout is hardcoded in each program that access the file. You can recognize this situation if you only find a few fields named F00001, K00001, etc.

枕花眠 2024-11-22 02:04:10

您可以检索查询 QSYS2/SYSCOLUMNS 表的表结构。

浏览 QSYS2 库以获取有关索引等的表和视图。

You can retrieve the table structure quering QSYS2/SYSCOLUMNS tables.

Browse the QSYS2 library for tables and views about indexes and others.

提赋 2024-11-22 02:04:10
describe output select * from creator_schema.tablename

这对我有用。

describe output select * from creator_schema.tablename

This worked for me.

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