Viewing 15 posts - 3,121 through 3,135 (of 10,144 total)
ramrajan (7/18/2014)
July 18, 2014 at 8:56 am
ramrajan (7/18/2014)
ID ReadingDate SeqID
1 2014-07-18 07:48:30.200 1
1 2014-07-17 07:48:30.200 2
2 2014-07-17 07:48:30.200...
July 18, 2014 at 8:48 am
pmadhavapeddi22 (7/18/2014)
Thank you J Livingston and David Burrows.I appreciate your help and time
<<cough>>
----------------------------------------------------------------------------
JLS
SQL Server parse and compile time:
CPU time = 0 ms, elapsed time = 8...
July 18, 2014 at 8:41 am
ramrajan (7/18/2014)
Please someone help me
Can you provide Ed with the information he needs to complete your query for you?
July 18, 2014 at 8:03 am
Use ROW_NUMBER(). Partition by ID, order by date descending, pick the first two rows.
Then check the date difference between row 2 and row 1 of each partition, using a CTE...
July 18, 2014 at 7:13 am
Latest reading date
Current reading
Are they the same thing?
July 18, 2014 at 7:07 am
Try this for a performance lift:
;WITH Aggregates AS (
SELECT
caseid,
[total]= SUM(benefitpaid),
[unprocessed]= SUM(CASE WHEN unprocessed = 1 THEN benefitpaid ELSE 0 END),
[sentout]= SUM(CASE WHEN statusid = 2 THEN benefitpaid ELSE 0...
July 18, 2014 at 6:11 am
This is a truly wild guess but seems to fit the sketchy description:
;WITH DedupedData AS (
SELECT tbl_id, cs_id, USERID, assgn_dtm, complet_dtm,
rn = ROW_NUMBER () OVER (PARTITION BY cs_id, USERID,...
July 18, 2014 at 5:45 am
DROP TABLE #Temp
CREATE TABLE #Temp (KEY1 INT, Key2 INT, [Type] VARCHAR(5))
INSERT INTO #Temp VALUES
(1,NULL, 'TypeA'),
(2,5, 'TypeA'),
(3,1, 'TypeB'),
(4,NULL, 'TypeA'),
(5,NULL, 'TypeB'),
(6,26, 'TypeC'),
(7,NULL, 'TypeD'),
(8,NULL, 'TypeD')
SELECT *
FROM #Temp ot
WHERE NOT EXISTS (
SELECT 1...
July 18, 2014 at 3:58 am
rhd110 (7/17/2014)
Hi Techies any reply for this.
Yep, but haven't heard anything since.
July 18, 2014 at 2:22 am
John Roy Ellis (7/17/2014)
That article offers very little, in terms of anything along the lines of examples or knowledge transfer.I await another response.
Thank you.
John
Here's another response: read the article then...
July 18, 2014 at 2:18 am
pilla.sree85 (7/17/2014)
July 17, 2014 at 7:34 am
rhd110 (7/17/2014)
Hi Techies any reply for this.
DROP TABLE #Temp
CREATE TABLE #Temp (ID int, [RowCount] int)
INSERT INTO #Temp (ID, [RowCount]) VALUES
(1, 448),(2, 267),(3, 297),(4, 216),(5, 405),(6, 254),(7, 107),(8, 102),(9,...
July 17, 2014 at 7:28 am
-- Next, check to see if table ReceivedFiles is required in the query,
-- perhaps you can get away with checking to see if there is a value or not...
July 17, 2014 at 6:21 am
-- Next, a little reformatting. Note that I've changed the expression for totalcount,
-- to indicate that you are counting rows. Aggregate functions COUNT, SUM, AVG etc ignore
-- rows where...
July 17, 2014 at 6:10 am
Viewing 15 posts - 3,121 through 3,135 (of 10,144 total)