I am having issues trying to get this to work for some reason: @nasreen-akter @MartinJaffer-MSFT
Update MercerReportTable
SET [CountType10] = (SELECT COUNT(PersonRec10)
FROM [MercerStagingDev].[MILKY-WAYTEST\AppSQLVST4DotNetDev-R].[MercerReportTableMod]
WHERE PersonRec10 = 10)
The statement seems successful when executed, but nothing is updated in the MercerReportTable. There are 3000+ items that should be the result count. The column is the following type, but that should not matter, correct? When I just run
(SELECT COUNT(PersonRec10)
FROM [MercerStagingDev].[MILKY-WAYTEST\AppSQLVST4DotNetDev-R].[MercerReportTableMod]
WHERE PersonRec10 = 10) I get 3624 which is the correct number of rows..but I can't get other table to update....
[CountType10] [nchar](10) NULL,
Any ideas? Thanks Mike