副本脚本中的删除表

发布于 2025-01-18 11:40:12 字数 261 浏览 1 评论 0原文

sink-配置

我正在尝试参数化预复制脚本,以从 SQL Server 接收器中删除具有相同架构和表名的现有表。我已经尝试了上述的变体,在预复制脚本中使用数据集属性的正确语法是什么?

此外,是否有关于在 ADF 中使用动态内容的好资源?

sink-configuration

I am trying to parameterize the pre-copy script to DROP existing tables of the same schema and table name from a SQL Server sink. I have tried variations of the above, what's the correct syntax to use the dataset properties in the pre-copy script?

Additionally, is there a good resource on using the dynamic content in ADF?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

维持三分热 2025-01-25 11:40:12

用参数化查询步骤查看其他问题,参数前缀错误,以下执行成功:

DROP TABLE IF EXISTS @{item().TABLE_SCHEMA}.@{item().table_name}

Reviewing other questions with parameterized query steps, the parameters are incorrectly prefixed, the following was executed successfully:

DROP TABLE IF EXISTS @{item().TABLE_SCHEMA}.@{item().table_name}
独夜无伴 2025-01-25 11:40:12

几乎:

DROP TABLE IF EXISTS @{item().destination.schema}.@{item().destination.table}

测试了一下,现在可以使用了。

Almost:

DROP TABLE IF EXISTS @{item().destination.schema}.@{item().destination.table}

Tested it and it works now.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文