Viewing 15 posts - 1,936 through 1,950 (of 3,011 total)
Mike Levan (3/17/2009)
March 18, 2009 at 10:05 am
If both schedules start at the same time of day, then the job will run only one time.
March 18, 2009 at 9:41 am
steve dassin (3/16/2009)
Gift Peddie (3/15/2009)
Science is a b****, expediency is a w*****. It's not easy to sleep with science. But sql sells itself to even the lowest bidder. It's been...
March 16, 2009 at 9:58 pm
I can't see why you would drop the clustered index and then recreate it, since that forces SQL Server to rebuild the table as a heap and then rebuild it...
March 16, 2009 at 9:39 pm
You will have to delete the maintenance plans and redo them.
March 16, 2009 at 3:57 pm
Are you completely reloading the table each time, or just adding new rows to existing data?
March 16, 2009 at 3:55 pm
Lowell (3/16/2009)
i'm using sp_revokeaccess instead of sp_dropuser, because the users might be orphaned and not tied to a login;
this yanks them out the way i expected:
[font="Courier...
March 16, 2009 at 12:04 pm
I think it would be hard to justify any effort to develop a flat file database, since there are fairly mature free open source databases available, and free versions of...
March 16, 2009 at 9:46 am
I worked at a place where an expensive outside consultant did a study of our data environment and actually proposed something like this.
The CIO just said that was the stupidest...
March 16, 2009 at 9:23 am
You might turn the question around and ask "Why not use 64-bit?"
One thing that may be a cost consideration is that 32-bit Windows Server 2003 requires Enterprise Edition to support...
March 14, 2009 at 1:10 pm
I think the guy's a troll, trying to start trouble.
Nothing to see there, just move along.
March 14, 2009 at 12:03 am
Marios Philippopoulos (3/13/2009)
Is there a performance difference between these 2 calculations?
IF DATEDIFF(SECOND,@StartDate,@EndDate) <0
BEGIN...
versus
IF @StartDate >= @EndDate
BEGIN...
Both variables are datetime.
They are not logically equivalent tests. Notice the different...
March 13, 2009 at 10:34 pm
foxjazz (3/13/2009)
select name from mynametable where changedate > @yesterday
fetch from @sel into @name
while (@@fetch_status =...
March 13, 2009 at 3:41 pm
Is depends on the meaning of downtime. If you look at if from the user point of view of not people not being able to do their jobs and...
March 13, 2009 at 12:20 pm
You must enclose the date in single quotes to cast it correctly to a date time.
when createddate > 2009-06-01
is the same as
when createddate > '1905-06-26'
because 2009-06-01 becomes...
March 13, 2009 at 11:58 am
Viewing 15 posts - 1,936 through 1,950 (of 3,011 total)