Access tables from several connections in a Hive notebook
UserBird
Dataiker, Alpha Tester Posts: 535 Dataiker
I have several HDFS connections. When I write a Hive recipe, I can access the tables from all connections.
But I like to develop and test my SQL code in a Hive notebook first. In this notebook, I can see only the tables from one connection.
But I like to develop and test my SQL code in a Hive notebook first. In this notebook, I can see only the tables from one connection.
Best Answer
-
Good news, all tables can be accessed in a Hive notebook. One simply needs to keep in mind that different connections correspond to different namespaces.
To access table foo from another connection, prefix its name by the database name (for instance “db_bar”):
SELECT count(*) FROM db_bar.fooNote that you'll need to remove the prefix when converting to a recipe. The database name is shown above the sql code area: «connected to db_bar (Hive)» and is distinct from the connection name.
You can also find all database names by executing the SQL query
show databasesNote: you might also check the metastore sync: open the dataset, click settings → advanced → metastore: Synchronize.