by
WAHID
• New Contributor II
- 789 Views
- 0 replies
- 0 kudos
I am wondering if it's possible to install and use GDAL on Databricks serverless compute. I couldn't manage to do that using pip install gdal, and I discovered that init scripts are not supported on serverless compute.
- 789 Views
- 0 replies
- 0 kudos
- 3835 Views
- 3 replies
- 3 kudos
I have a table in databricks with fields name: string, id: string, orgId: bigint, metadata: struct, now i want to rename one of the columns and change it type. In my case I want to update orgId to orgIds and change its type to map<string, string> One...
- 3835 Views
- 3 replies
- 3 kudos
Latest Reply
You can use REPLACE COLUMNS.ALTER TABLE your_table_name REPLACE COLUMNS (
name STRING,
id BIGINT,
orgIds MAP<STRING, STRING>,
metadata STRUCT<...>
);
2 More Replies