我正在将 Azure Databricks 中的数据帧写入 sql 数据仓库
res.write \
.format("jdbc") \
.option("url", url) \
.option("dbtable", table) \
.option("user", user) \
.option("password", password) \
.save()
有了这个我得到一个错误Column 'username' has a data type that cannot participate in a columnstore index.
如何完全消除列存储,或更改列的数据类型以适应列存储?
我有一些列将被视为整数,而一些列将被视为 varchar。