Viewing 15 posts - 1 through 15 (of 29 total)
I have no experience in CRL, so would like T-SQL for now please?
the answer to the second question is yes.
January 3, 2013 at 4:05 am
1. I would prefer t-SQL as CLR is way beyond my understanding
2. At the moment I'm not concerned about performance
December 18, 2012 at 7:16 am
Unfortunately i dont have the faintest idea.
Is there any way you can break it down for me?
December 6, 2012 at 3:33 am
CREATE TABLE #mytable
( ID INT IDENTITY(1,1) PRIMARY KEY CLUSTERED, ...
June 22, 2012 at 8:52 am
This is nothing to do with me wanting to export the report. When I do export the report it actually shows on one page, like I have done it on...
May 30, 2012 at 2:14 am
Hi Anthony these work. But where would I add the part to get records from the current time until before midnight?
May 28, 2012 at 9:21 am
It give me this error:
Msg 243, Level 16, State 1, Line 1
Type DATE is not a defined system type.
May 28, 2012 at 8:48 am
This still records I dont want to see?
In all of the functions you have given I am having to change 'DATE' to 'DATETIME' do you think this is why...
May 28, 2012 at 8:43 am
For tomorrow
To see from current time till 29-05-2012 23:59:59.999 or 29-05-2012 00:00:00.000 to 29-05-2012 23:59:59.999
If from current time to midnight
WHERE
DueDate > GETDATE() AND DueDate < CONVERT(DATE,DATEADD(DAY,2,GETDATE()))
// Yes I require...
May 28, 2012 at 8:08 am
Yes fantastic that works. I did only want records for that day and after current time.
what would the logic be for tomorrow?
or this week?
May 28, 2012 at 7:40 am
This also returns records with the following due date 29/5/2012 00:00:000?
May 28, 2012 at 7:27 am
This returns everything for that day. But I only want to return everything for the day after the current time.
May 28, 2012 at 7:10 am
Viewing 15 posts - 1 through 15 (of 29 total)