简体   繁体   English

如何从Aginity工作台检查在IBM Netezza SQL中创建表的数据和时间

[英]How to check the data and time that a table was created in IBM Netezza SQL from Aginity workbench

My question may be simple, but, I have been searching the answer for a long time. 我的问题可能很简单,但是我一直在寻找答案。

How to check the data and time that a table was created in IBM Netezza SQL from Aginity workbench ? 如何从Aginity工作台检查在IBM Netezza SQL中创建表的数据和时间?

It is very easy to find this in MS SQL server, but, I cannot figure this out in Netezza. 在MS SQL服务器中很容易找到它,但是我无法在Netezza中弄清楚。

Any help would be appreciated. 任何帮助,将不胜感激。

thanks ! 谢谢 !

SELECT 
    TABLENAME,
    OWNER,
    CREATEDATE 
FROM _V_TABLE 
WHERE 
OBJTYPE='TABLE';

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在win 7上从Aginity工作台找到IBM netezza sql数据库上的表大小 - find the table size on IBM netezza sql database from Aginity workbench on win 7 Win7上Aginity工作台在IBM netezza SQL数据库上执行SQL查询时出错 - Error of SQL query on IBM netezza SQL database from Aginity workbench on Win7 将SQL数据库从一台服务器复制到IBM netezza Aginity工作台上的另一台服务器 - copy a SQL database from one server to another server on IBM netezza Aginity workbench 如果从Aginity工作台将47G数据文件导入到IBM netezza数据库,则会发生错误 - error if importing a 47G data file to IBM netezza database from Aginity workbench 在IBM netezza aginity工作台中更改表名的错误 - error of changing a tablename in IBM netezza aginity workbench 在IBM betezza aginity sql数据库工作台中导出大表时如何添加列名 - how to add column names when exporting a large table in IBM betezza aginity sql database workbench 在win 7的IBM netezza Aginity工作台中查找数据库大小的错误 - error of finding size of database in IBM netezza Aginity workbench on win 7 在 Netezza Aginity 中显示板条箱表 - SHOW CRATE TABLE in Netezza Aginity 从 Python 到 SQL(Aginity、Netezza)的 CREATE/DROP 调用不起作用 - CREATE/DROP call from Python to SQL (Aginity, Netezza) not working 在Win 7上从IBM netezza数据库导出sql数据表到txt文件的错误 - error of exporting a sql data table from IBM netezza database to a txt file on win 7
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM