我在SQL服务器中使用MERGE语句刷新数据,但我在MERGE语句的ON子句中反复出现此错误。 代码是
DECLARE @instance varchar(50)
DECLARE @db varchar (50)
DECLARE @queryEntity nvarchar(max)
SET @instance = (select value from Parameter where name = 'SERVERALIAS')
SET @db = (select value from Parameter where name = 'SERVERDB')
SET @queryEntity = 'Select EntityId,EntityName,CreatedDate,ModifiedDate,Active,TENANTID,PriorityId From [' + @instance + '].[' + @db + '].metadata.Entity Where TENANTID = 1'
MERGE [metadata].[Entity] AS trgt
USING ( VALUES(@queryEntity) ) AS src
ON ( **trgt.EntityId = src.EntityId** )
WHEN matched
--AND trgt.ModifiedDate <= src.ModifiedDate
THEN
-- if the master has a row newer than the client
-- update the client
UPDATE SET trgt.EntityId = src.EntityId,
trgt.EntityName = src.EntityName,
trgt.Createddate = src.CreatedDate,
trgt.ModifiedDate = src.ModifiedDate,
trgt.Active = src.Active,
trgt.TENANTID = src.TENANTID,
trgt.PriorityId = src.PriorityId
WHEN NOT matched BY SOURCE
THEN
DELETE
WHEN NOT matched BY TARGET
THEN
INSERT ( EntityId, EntityName, CreatedDate, ModifiedDate, Active, TENANTID, PriorityId)
VALUES ( src.EntityId, src.EntityName, src.CreatedDate, src.ModifiedDate, src.Active, src.TENANTID, src.PriorityId);
答案 0 :(得分:2)
您尚未为src
指定列名 - 消息非常清楚。试试这个:
MERGE [metadata].[Entity] AS trgt
USING ( VALUES(@queryEntity) ) AS src(EntityId)
--------------------------------------^
我应该指出,这只是一个开始。 src
也没有在MERGE
的其余部分中指定的许多其他列。实际上,它只是一个字符串。 MERGE
只是因为它看起来像一个查询而不执行字符串。
您有三种选择。第一种是省去变量并将查询字符串放在MERGE
中。但这似乎不可能,因为你有可变的标识符名称。
第二种是使用动态SQL和MERGE
。
我的建议是使用动态SQL创建视图或使用规范名称填充表。然后将其用于MERGE
语句。