Viewing 15 posts - 22,156 through 22,170 (of 26,484 total)
My first thought was that you were using SQL Server 2000 and had posted in erronously in a SQL Server 2005 forum, but that isn't the case.
Could you post the...
March 4, 2009 at 11:56 am
What version of SQL Server are you currently running?
March 4, 2009 at 11:30 am
The_SQL_DBA (3/4/2009)
I want to hard code the time but the date should be retrieved from getdate().
The field takes input as...
March 4, 2009 at 11:23 am
Since it is for today, change the -1 to 0 in my code in my previous post.
March 4, 2009 at 11:20 am
First, boy has this put him under the microscope. Second, I'll have to wait until I get home to look at these posts of his as our web filter...
March 4, 2009 at 10:50 am
mikekay (3/4/2009)
March 4, 2009 at 10:33 am
I think this thread will provide you with what you need to solve your problem.
Let us know if it helps.
March 4, 2009 at 10:25 am
[font="Courier New"]
declare @StartDate datetime,
@EndDate datetime;
set @StartDate = dateadd(hh, 7, dateadd(dd, datediff(dd, 0, getdate()), -1));
set @EndDate = dateadd(hh, 7, @StartDate);
select
...
March 4, 2009 at 10:16 am
The_SQL_DBA (3/4/2009)
I am getting the output as 2009-03-04 07:00:00.000
but my callentry gives me empty data with the above result set
for it...
March 4, 2009 at 10:11 am
winston Smith (3/4/2009)
tbl.columnName <> 'ACT'
In the actual table tbl.columnName is NULL. I thought NULL is not equal to 'ACT'. but nothing is selected...
March 4, 2009 at 9:57 am
There are two ways to approach this. The first is brute force creating each audit or history table and the triggers needed to populate them. The second is...
March 4, 2009 at 9:53 am
GilaMonster (3/4/2009)
Lynn Pettis (3/4/2009)
Have you also noted that he changed his name? Now it doesn't match the name in the quoted replies to his deleted posts. :w00t:
That's easily...
March 4, 2009 at 9:48 am
Have you also noted that he changed his name? Now it doesn't match the name in the quoted replies to his deleted posts. :w00t:
March 4, 2009 at 9:44 am
I don't have time right now to look at all of this but I will look at it this evening.
Thank you for posting the information asked.
March 4, 2009 at 9:38 am
Mangal9i (3/4/2009)
My topic was, Answered Posts. Nobody is talking about that and stve has closed my other thread.
You should have locked this thread Steve....
March 4, 2009 at 9:33 am
Viewing 15 posts - 22,156 through 22,170 (of 26,484 total)