Hello @AKG11 , we are facing a similar issue, and trying to get data via a Stored procedure, as below, but not able to select the date column for choosing the _time. Any ideas please ? DECLARE @From_DT DATE, @To_DT DATE; SET @From_DT =xxx SET @To_DT = xxx exec 'storedprocedure_name' @From_DT, @To_DT;
... View more