changes.mady.by.user Conor McCann
Saved on Nov 03, 2017
...
select ApplicationID,Count(TableName ) as [Count] from OracleCounts where TableName ='All Users' group by ApplicationID having Count(TableName ) >1
In ideal world the query result should be 0. However while the problem exists
You need to check the entry to verify to duplicate entry by running:
select * from OracleCounts where TableName ='All Users' and ApplicationID =338
Line 1 and line Line 2 are duplicates. Hence by removing the older entry the issue can be resolved.
delete from OracleCounts where OracleCountsID =1