为什么我不能使用OBJECT_ID()函数找到外键?

时间:2015-04-16 16:07:40

标签: sql sql-server sql-server-2012

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

-- 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 SO回答表明我的OBJECT_ID()查询应该有效。

1 个答案:

答案 0 :(得分:14)

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

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

实际上,您可以在数据库中拥有多个具有相同名称的对象,但这些对象位于不同的模式中。 OBJECT_ID(N'FK_Name', N'F')将在默认架构中返回object的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