查找 PK 与 FK 相同的表
如何使用信息模式找到数据库中 PK 与 FK 相同的所有表?我需要它来生成将数据库转换为数据仓库的脚本。通过确定表是否是链接,我还需要知道表是否具有与 pk 相同的 fk。
我正在使用 ms sql 和数据库中可用的默认信息架构。
How can i find all the tables in a database where the PK is the same as the FK using the information schema? I need this to generate a script that converts a database into a data vault. By determining if a table is a link i need too know if the table has a fk that is the same as the pk.
I'm using ms sql and the default information schema that are available in the database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个信息模式,它允许使用预定义的视图查询表定义。
There is an information schema, which allows to query table definitions using pre-defined views.