informix查看共有那些表方法三种:
(1)dbschema -d {database} |grep 'create table' >tmp
(2)dbaccess中使用命令
select tabname from systables where tabid > 99 and tabtype='T';
(3)dbaccess中使用命令
info tables;
不过该方法显示的表名太长的话会显示不全。
比较是否一致:
将1、2种方法的结果分别导出到文件tmp、tmp1;
使用awk提取出表名;
使用sed -i '/^$/d' 文件名 删除空行;
使用sort排序;
使用diff查看两个文件是否有差异。
阅读(1875) | 评论(0) | 转发(0) |