Query to get all foreign key constraints in SQL Server 2000

前端 未结 3 805
生来不讨喜
生来不讨喜 2020-12-15 01:44

I need a query for SQL Server 2000 to get a list of all foreign keys.

Particularly all the foreign keys that point to a particular column.

How do I write thi

相关标签:
3条回答
  • 2020-12-15 02:05
    select * from sysobjects
    where xtype = 'F'
    

    That should do the trick and be compatible with SQL Server 2000, I hope!

    If you additionally need the table and column information in SQL Server 2000, it gets a bit more involved; you need to join the sysforeignkeys and syscolumns catalog views like so:

    select
      so.name 'foreign key name',
      OBJECT_NAME(parent_obj) 'table',
      OBJECT_NAME(sf.fkeyid) 'referencing table',
      sc1.name 'referencing column',
      OBJECT_NAME(sf.rkeyid) 'referenced table',
      sc2.name 'referenced column'
    from sysobjects so
    inner join sysforeignkeys sf on so.id = sf.constid
    inner join syscolumns sc1 on sf.fkeyid = sc1.id and sf.fkey = sc1.colid
    inner join syscolumns sc2 on sf.rkeyid = sc2.id and sf.fkey = sc2.colid
    where so.xtype in ('F','PK')
    

    And if you want to leverage the INFORMATION_SCHEMA views which ARE indeed available in SQL Server 2000, use this query:

    SELECT
        rc.CONSTRAINT_NAME,     
        rcu.TABLE_NAME 'Referencing Table', 
        rcu.COLUMN_NAME 'Referencing Column',
        rcu1.TABLE_NAME 'Referenced Table',
        rcu1.COLUMN_NAME 'Referenced Column'
    FROM
        INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS rc
    INNER JOIN 
        INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE rcu 
          ON rc.CONSTRAINT_CATALOG = rcu.CONSTRAINT_CATALOG 
             AND rc.CONSTRAINT_NAME = rcu.CONSTRAINT_NAME
    INNER JOIN 
        INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE rcu1 
          ON rc.UNIQUE_CONSTRAINT_CATALOG = rcu1.CONSTRAINT_CATALOG 
             AND rc.UNIQUE_CONSTRAINT_NAME = rcu1.CONSTRAINT_NAME
    

    Marc

    0 讨论(0)
  • 2020-12-15 02:13

    Look at the source of sp_helpconstraint for more ideas, but this should work...

    to get every FK that refers to target table & column

    • replace "YourTableName"
    • uncomment the last "AND" and set your target column name

    code:

    --list all tables & columns that refer to the given table
    select
        k.name,pt.Name AS ParentTable,pc.name,c.constraint_column_id,ct.Name AS ReferedToTable,c.referenced_column_id,cc.Name
        from sys.foreign_keys                  k
            INNER JOIN sys.foreign_key_columns c ON k.parent_object_id=c.parent_object_id
            INNER JOIN sys.objects             pt ON c.parent_object_id=pt.object_ID
            INNER JOIN sys.objects             ct ON c.referenced_object_id=ct.object_ID
            INNER JOIN  sys.columns            pc ON c.parent_object_id=pc.object_ID AND c.parent_column_id=pc.column_id
            INNER JOIN  sys.columns            cc ON c.referenced_object_id=cc.object_ID AND c.referenced_column_id=cc.column_id
        where k.referenced_object_id = object_id('YourTableName')
            --AND pc.name='YourColumnName' --parent table column name
            --AND cc.name='YourColumnName' --referenced table's column name
    
    0 讨论(0)
  • 2020-12-15 02:32
    select * from INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS
    

    If you need more information about the key then you can join it to the INFORMATION_SCHEMA.KEY_COLUMN_USAGE view, which contains the columns referenced by the key.

    0 讨论(0)
提交回复
热议问题