如何查看两个 .sdf 文件之间的差异?
我需要一个工具来显示两个 .sdf 文件之间的差异。 有什么我可以下载的或者我必须编写一些代码吗?
I need a tool that show me the differences between two .sdf files.
Is there something I can download or do I have to write some code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有许多公司为 SQL Server 制作架构比较工具(我认为这就是您问题的基础)。例如,xSQL Software 提供xSQL 对象,它对于某些版本的 SQL Server 是免费的。 Red-Gate 有 SQL Compare,有 14 天试用期。
如果您正在寻找 FOSS 的东西,可以使用 Open DBDiff。
There are a number of companies which make schema comparison tools for SQL Server (which I presume is what underlies your question). For instance xSQL Software offers xSQL Object, which is free for certain editions of SQL Server. Red-Gate have SQL Compare, which has a 14-day trial.
If you are looking for something FOSS, there is Open DBDiff.
如果您在 Linux 上运行,则可以使用“diff”命令比较任意两个文件或目录。语法非常简单:“diff item1 item2”。有关详细信息,请使用“man diff”或查看此链接。
If you are running on linux you can compare any two files, or directories for that matter, using the 'diff' command. The syntax is quite simple: 'diff item1 item2'. For more info use 'man diff' or check out this link.