我通过.NET应用程序的ODBC驱动程序连接到Hive.是否有查询来确定表是否已经存在?
例如,在MSsql中,您可以查询INFORMATION_SCHEMA表,在Netezza中可以查询_v_table表.
任何帮助将不胜感激.
解决方法
有两种方法可以检查:
正如@dimamah所建议的,只是为了在这里添加一点,你需要这种方法
1.1) start the **hiveserver** before running the query 1.2) you have to run two queries 1.2.1) USE <database_name> 1.2.2) SHOW TABLES LIKE 'table_name' 1.2.3) Then you check your result using Result set.
2.)第二种方法是使用HiveMetastoreClient API,您可以直接使用API来检查特定数据库中是否存在table_name.
如需进一步帮助,请浏览此Hive 11