Viewing 15 posts - 22,156 through 22,170 (of 26,490 total)
Grant Fritchey (3/4/2009)
I've got a poster that I really don't know how to help.
It's out of my area of expertise, but I had a supervisor that told me that he...
March 4, 2009 at 12:25 pm
Ninja's_RGR'us (3/4/2009)
Grant Fritchey (3/4/2009)
Ninja's_RGR'us (3/4/2009)
Looks to me like we need about another 2000...
March 4, 2009 at 12:21 pm
What is your normal way of writing dates: mm/dd/yyyy or dd/mm/yyyy. If the later, then that is probably why the dates in character format needed to be that way,...
March 4, 2009 at 12:16 pm
Stepping out of my area a bit, but when you say the DNS changed, could you elaborate on that some more please?
March 4, 2009 at 12:11 pm
Code ran just fine on my system. What is the compatability level of your database?
March 4, 2009 at 12:09 pm
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
Viewing 15 posts - 22,156 through 22,170 (of 26,490 total)