根据配置单元中创建的日期列出所有表

时间:2016-12-15 13:03:24

标签: sql-server hive

for f in *.x; do if grep -q foo: "$f"; then cat $f | grep foo: fi done 我们使用

sql server

获取在该日期创建的所有表元数据。 select * from sys.tables where create_date = '2016-03-12' 中是否有相应的内容?

1 个答案:

答案 0 :(得分:0)

mysql元数据中的

存储在hive数据库中

use hive;
select * from TBLS;