Viewing 9 posts - 1 through 10 (of 10 total)
Thanks very much for taking the time to look at this Eirikur, this works well.
May 15, 2014 at 10:34 pm
Thanks Jimbob, I ran this over a few sample datasets in dev this morning, and this query is returning exactly the results I am after, much appreciated
April 16, 2012 at 9:49 pm
No mike, it's the same issue, I'm not doing a good job of explaining what I need, I'm going to have another go at it, so drop exapmlelog if you...
April 15, 2012 at 5:59 pm
I need to find a way of limiting the partitions from the cte to rows that have occurred within a 5 minute of the latest timestamp in the partition, so...
WITH...
April 12, 2012 at 7:43 pm
I’m still not over the line with this one, what I’ve found is my sub query doesn’t appear to be doing what I want, I get the exact same...
April 11, 2012 at 11:33 pm
OK capn, this is great stuff,
I'm also going to use a sub query to return rows where the timestamp is within + 5 minutes after each of the rows returned...
April 11, 2012 at 7:17 pm
Sorry guys, I read the forum etiquette, quite right too....
CREATE TABLE [dbo].[ExampleLog](
[ID] [uniqueidentifier] NOT NULL,
[EVENTNUMBER] [int] NULL,
[DISPLAYSERIAL] [int] NULL,
[DISPLAYID] [varchar](50) NULL,
[OBJECTSERIAL] [int] NULL,
[OBJECTRSSILEVEL] [int] NULL,
[OBJECTID] [varchar](50) NULL,
[TIMESTAMP] [datetime] NULL)
INSERT INTO...
April 11, 2012 at 5:37 pm
Update: I figured this one out, this is what I did, for anyone searching for a similar solution:
CREATE TRIGGER [trgname]
ON [tblname]
AFTER INSERT
AS
BEGIN
...
November 1, 2011 at 11:45 pm
SSIS file system task looks like the go, thanks very much
January 17, 2011 at 8:30 pm
Viewing 9 posts - 1 through 10 (of 10 total)