79500848

Date: 2025-03-11 13:07:53
Score: 1.5
Natty:
Report link

Can someone help further the modify the Azure Data Factory expression for the following T-SQL code: SELECT DeltaTable. * FROM dlt.DeltaTable LEFT OUTER JOIN dbo.TableName AS tgt ON dlt.DeltaTable.signature = tgt.signature
WHERE tgt.signature IS NULL;

You will probably get the error when you directly add the expression. as below

To resolve this error, follow the below steps:


@concat('SELECT ',pipeline().parameters.DeltaTable,'.\* FROM ',pipeline().parameters.DeltaTable,' LEFT OUTER JOIN ',pipeline().parameters.TargetTable,' ON ',pipeline().parameters.DeltaTable,'.signature = ',pipeline().parameters.TargetTable,'.signature WHERE ',pipeline().parameters.TargetTable,'.signature IS NULL')

Output:

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • RegEx Blacklisted phrase (3): Can someone help
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): Can someone help
  • Low reputation (1):
Posted by: Shraddha Pore