Does Hive support temporary tables? I can't find it in the apache docs.
|
I don't think Hive has temporary tables the same as something like SQL Server does. You can do something like temporary tables with Hive though. If you create a table with the schema your temporary table needs, then do a query populating the table before you run the query needing the data, it will act like a temporary table. The steps would be:
When you run your query you can use This can definitely run into issues if the same table will be needed at the same time but for different data... From what I've been able to find, this is the only solution to a 'temporary' table in Hive right now. |
|||||
|