Build Error -
I'm having a build issue after adding a custom table, but I'm not sure why. If I remove the table, I'm able to do a full build without issue. I can add the custom table back and run a changes only build without issue. I've looked at the logs, but I'm not seeing the issue. The error says, :Build accumulate with changes in schema detected. Try first to build changes".
Here is my custom table :
SELECT A.CIFKEY,B.[AMT],A.[BranchName]
FROM [DistinctDepositTotals]A
INNER JOIN
(
SELECT B.CIFKEY,MAX(B.[COLUMN])AMT
FROM [DistinctDepositTotals]B
GROUP BY B.CIFKEY)B
ON A.[CIFKEY]=B.CIFKEY AND A.[Column]=B.AMT
I could use some help identifying the issue with the build.
Thank you,
Karen
Please sign in to leave a comment.
Comments
1 comment