Hi there Kirk Anderson
Thanks for using QandA platform
guess you are right, Iceberg with Unity Catalog needs a Unity-enabled workspace and DBR 13.1+. On a pay-as-you-go plan, check that your metastore is set up and attached.
Try this to create an Iceberg table
CREATE TABLE catalog.schema.table_name (
user_id STRING,
event_time TIMESTAMP,
page_url STRING
) USING ICEBERG;
Use a single-node cluster with Unity Catalog enabled to keep costs low. If Unity Catalog isn’t showing, your workspace might not support it yet.
If this helps kindly accept the answer thanks much.