Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2024 03:36 AM - edited 09-26-2024 03:38 AM
UC is a Governance tool.
If you have structured or semi-structured data in Volume, you can view the data by using the select statement.
select * from csv.`/Volumes/folder/file.csv`; (backtick)
select * from json.`/Volumes/folder/file.json`
Once you are convinced you can create a table
create table <> as select * from csv.`/Volumes/folder/file.csv`;
Its not possible to find the schema on unstructured data.
~