用于编辑已存储在 SQL Server 中的 SSIS 配置的工具?
有一个选项可以在 SQL Server 中保存 SSIS 配置。这似乎是个好主意。这样我的 SSIS 包不需要任何文件访问权限即可运行。
但它的存储格式对用户来说并不友好。是否有一种工具可以让您以友好的方式查看和编辑这些设置?
There is an option to save SSIS configurations in SQL Server. It seems like a nice idea. That way my SSIS package does not need any file access to run.
But the format it is stored in is not user friendly. Is there a tool out there that lets you view and edit these settings in a friendly manner?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了查看,我们总是只使用
SELECT *
我确实创建了一个过程,为我们的配置表导出特定的过滤器(我们称之为 sysdtsconfig),您还可以看到我们已经用我们的自己的元信息。
如果这不适合您,只需获取 Mladen 的 SSMS 工具包(免费)并使用它来编写您的脚本配置表。
For viewing, we've always just used
SELECT *
I did create a proc that exports a particular filter for our configuration table (we call it sysdtsconfig) and you can also see we've extended it with our own meta information.
If that doesn't suit you, just grab Mladen's SSMS Tools Pack (free) and use that to script out your config table.