Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2022 10:17 AM
Hi, if your hive table is registered in metastore yes you can use SQL syntax.
Than is enough to use COPY INTO..
if your table is not registered please map it in metastore
CREATE TABLE IF NOT EXISTS tableName (fields) USING data_format LOCATION (path=)
then you can create another table USING delta format and than copy between tables.
My blog: https://databrickster.medium.com/