gpt4 book ai didi

sql - 为什么我无法使用 OBJECT_ID() 函数找到外键?

转载 作者:行者123 更新时间:2023-12-02 14:59:27 25 4
gpt4 key购买 nike

我在 MS SQL Server 2012 中遇到一个奇怪的问题。我正在尝试检查升级脚本中是否已存在外键。我过去曾使用系统 OBJECT_ID() 函数来查找表、 View 和过程,但是当我尝试使用它来查找外键时,它不起作用。

-- This query always returns null
SELECT OBJECT_ID(N'FK_Name', N'F')

-- This query works, returning the object ID for the foreign key
SELECT object_id FROM sys.foreign_keys WHERE name=N'FK_Name'

This所以答案表明我的 OBJECT_ID() 查询应该可以工作。

最佳答案

好吧,您的外键可能正在查找不在默认架构中的表(可能是dbo)。在这种情况下,除非您指定架构,否则您将看不到 object_id,如下所示:

SELECT OBJECT_ID(N'<schema>.FK_Name', N'F')

实际上,您的数据库中可以有多个同名的对象,但位于不同的架构中。 OBJECT_ID(N'FK_Name', N'F') 将返回默认架构中对象的 id。

你可以这样测试:

create schema test
create table test.temp1 (id int primary key)
create table test.temp2 (id int)
go

alter table test.temp2 add constraint FK_temp foreign key(id) references test.temp1(id)

select object_id('FK_temp', 'F') -- returns null
select object_id('test.FK_temp', 'F') -- returns object id

drop table test.temp2
drop table test.temp1
drop schema test

sql fiddle demo

关于sql - 为什么我无法使用 OBJECT_ID() 函数找到外键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29680286/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com