Hey everyone,
Recently we've been experiencing an issue in CRM where a certain query hangs the entirety of the organization until it finishes running. This particular query doesn't
look like it's something that would force the organization to hang like it does, but we saw it in our DEV environment and now see it in PROD.
Here's the query:
select VersionNumber, CONVERT(bigint, VersionNumber) as VersionValue from LocalizedLabelView order by LocalizedLabelId
So I'm fairly certain this query fires whenever an object (not record) is saved within the organization; please let me know if that's not the case (we're trying to track down the action that causes it). We added an index to LocalizedLabelId this morning
and are hoping that helps eliminate these hangups.
Has anyone else experienced this issue?