Viewing 15 posts - 2,071 through 2,085 (of 3,008 total)
Lynn Pettis (1/26/2009)
January 27, 2009 at 8:41 am
Lynn Pettis (1/26/2009)
Michael Valentine Jones (1/26/2009)
At the bottom of the main Forums page I see this:
Board Statistics
760,819 members have posted 518,208 posts within...
January 26, 2009 at 6:46 pm
Where do you see the 1,000,000 number?
At the bottom of the main Forums page I see this:
Board Statistics
760,819 members have posted 518,208 posts within 118,891 topics.
It's a big...
January 26, 2009 at 6:07 pm
I would suggest you contact Microsoft for help to see if that is even supported.
January 26, 2009 at 3:20 pm
Why are you using RAW partitions?
Although they may still be supported, they have been obsolete since at least SQL Server 6.0.
January 26, 2009 at 3:08 pm
rew (1/26/2009)
I currently run transaction log backups 4 times per day. I suppose I should increase this...
I usually setup transaction log backups to run every 15 minutes, and sometime more...
January 26, 2009 at 12:27 pm
select
*
from
MyTable
order by
case
when col1 is null and col2 is null and col3 is null
then 1
when col1 is null or col2 is null or col3 is null
then 2
else 3
end
January 26, 2009 at 12:23 pm
Alvin Ramard (1/26/2009)
Michael Valentine Jones (1/26/2009)
1. It has to be syntactically correct code that executes...
January 26, 2009 at 12:00 pm
I think to qualify as a really bad answer; it has to meet the following requirements:
1. It has to be syntactically correct code that executes and apparently does the job.
2....
January 26, 2009 at 11:50 am
When you restore a backup, all database files will be created at the same size the database was when you backed it up.
If you want to control the transaction log...
January 26, 2009 at 10:33 am
You can use a case a mentioned before, but it is harder to code than the previous post shows, because you also have to allow for nulls if the columns...
January 26, 2009 at 8:48 am
select distinct *
from
tableA
where
-- Greater than or equal to yesterday at 00:00:00.000 (midnight)
h.created >= dateadd(dd,datediff(dd,0,getdate())-1,0)
-- Less than today at 02:00:00.000 (2am)
h.created < dateadd(dd,datediff(dd,0,getdate()),'02:00')
January 26, 2009 at 8:39 am
Ross McMicken (1/26/2009)[hr
From what I've read, this is mostly a call center workers issue. They seem to get the worst of it from all sides - management and customers. That's...
January 26, 2009 at 8:32 am
Sergiy (1/24/2009)
[created date] + GETDATE() - GETUTCDATE()
That really only works correctly if the [created date] is from the current date.
The OP posted an example date of '1/12/2004 7:04 PM'...
January 25, 2009 at 8:44 pm
Viewing 15 posts - 2,071 through 2,085 (of 3,008 total)