Viewing 15 posts - 181 through 195 (of 347 total)
Visibility of the same tablix (tab1,Tab2) is also controlled based on
1) if there are values for the result set
2) Select from parameter Tab1,Tab2 or both
If there are no rows...
March 11, 2015 at 9:35 am
Actually I want multi value Tab1,Tab2 or select Both (multi-value) . This way I can eliminate All .
March 11, 2015 at 7:11 am
If you don't mind can you send an update query instead of the select ?
Thanks,
PSB
March 3, 2015 at 9:49 am
The query performance is very poor . Any tips on improving performance ?
February 17, 2015 at 5:24 am
Any help will be greatly appreciated.
Thanks,
PSB
September 29, 2014 at 1:26 pm
Hi,
Some of the values are also 14 digit . If I use your code below , it returns incorrect dates as shown below.
declare @TimeMS bigint = 61353491400000;
select
[Date/Time] =
-- Verify time...
July 30, 2014 at 8:27 am
Need to find the following:
Open 1st Action :
-Min, Max, and Average time from Order open to first response
Close 1st Action:
-Min, Max, and Average time from Order open to closure
--------------------------------------------------------------------------
Open 1st...
May 23, 2014 at 9:51 am
If the Order has not been completed yet then it shows as 1969-12-31 19:00:00.000 or much older dates..
May 23, 2014 at 9:26 am
CREATE TABLE #Order
(
OrderID INT,
DateCreated DATETIME,
DateCompleted DATETIME,
NotificationID INT,
NotDaTE DATETIME,
RecipientID INT,
NotificationType VARCHAR(20)
)
INSERT INTO #Order (OrderID,DateCreated,DateCompleted,NotificationID,NotDaTE,RecipientID,NotificationType)
SELECT 93207,'5/22/2014 08:16:03.000','5/23/2014 10:52.000',601780,'5/22/2014 10:16:19.000',48603,'REQREPLY'
UNION
SELECT 93207,'5/22/2014 08:16:03.000', '5/23/2014 10:52.000', 601779,'5/22/2014 10:16:20.000',16242,'REQTECH'
UNION
SELECT 93207,'5/22/2014 08:16:03.000','5/23/2014 10:52.000',601778,'5/22/2014 10:16:50.000',637,'REQ_IN_QUEUE'
UNION
SELECT...
May 23, 2014 at 9:14 am
Viewing 15 posts - 181 through 195 (of 347 total)