检查表是否存在于外部链接数据库中

2021-09-10 00:00:00 tsql sql-server objectid

所以我正在创建一个脚本,我在其中链接另一个服务器中的数据库.

So I'm creating a script where I"m linking a database that is in another server.

使用 OBJECT_ID 我想检查外部链接数据库中是否存在一个表,如下所示:

Using OBJECT_ID I want to check whether a table exists in the external linked database like so:

IF OBJECT_ID('[10.0.48.139].[DBNAME].[dbo].tblRating', 'U') IS NOT NULL
    BEGIN
        SET @Sql = N'
        INSERT INTO tblRating
                ( fldSubDivisionID ,
                  fldClientName ,
                  fldAddress ,
                  fldCountryID ,
                  fldComments ,
                  fldCreatedDate ,
                  fldCreatedBy ,
                  fldModifiedDate ,
                  fldModifiedBy
                )
        SELECT * FROM ' + @SourceDB + '.tblRating';
        EXECUTE sp_executesql @Sql;
    END
ELSE
    PRINT 'Table [tblRating] Not Found in Source Database'

即使该表存在于 [10.0.48.139].[DBNAME].[dbo] 中,由于某种原因它总是返回 null.当你把一个 Serverlocation 或 ip 放在那里时,我不认为 OBJECT_ID 喜欢它.

Even though the table exists in [10.0.48.139].[DBNAME].[dbo] for some reason it always returns null. I don't think OBJECT_ID likes it when you put an Serverlocation or ip in there.

推荐答案

您可以查询链接数据库的 INFORMATION_SCHEMA 来完成此操作.但是,首先,您必须在链接的数据库上创建一个视图,因为它不能像这样直接查询:

You could query the INFORMATION_SCHEMA of the linked database to accomplish this. First, though, you'd have to create a view on the linked DB since it cannot be queried directly like so:

CREATE VIEW vwInformationSchemaTables AS SELECT * FROM INFORMATION_SCHEMA.TABLES

然后你可以像这样从链接的数据库中查询:

Then you can query from the linked database like so:

IF EXISTS(SELECT 1 FROM [10.0.48.139].[DBNAME].dbo.vwInformationSchemaTables WHERE TABLE_NAME='tblRating') 
BEGIN 
  --table exists
END

相关文章