Activity overview
Latest activity by sridharv86
In the initial commit, I see that the complete sql did not commit properly from the history as you can see below [last_call_interaction_date_time_CST] AS (CONVERT([datetime], AT TIME ZONE AT TIME ZONE ,(0))) I fixed the issue by correcting the sql like below and it worked. [last_call_interaction_date_time_CST] AS (CONVERT([datetime],(([last_call_interaction_date_time_UTC] AT TIME ZONE 'UTC') AT TIME ZONE 'Central Standard Time'))) / comments
In the initial commit, I see that the complete sql did not commit properly from the history as you can see below[last_call_interaction_date_time_CST] AS (CONVERT([datetime], AT TIME ZONE AT TIME ZO...