Viewing 15 posts - 11,146 through 11,160 (of 18,923 total)
Just put a default of getDate() on those columns. No need to have an insert trigger then. YOu'll simply need an afeter insert for the midified by and date columns.
Why...
November 15, 2006 at 2:37 pm
It takes 2.5X times (IIRC) while it resorts the data, it basically makes a copy of the table in tempdb while working this out. Then it also has to write...
November 15, 2006 at 2:32 pm
Also implied with this >>> run off hours if at all possible!!!!!
November 15, 2006 at 2:09 pm
Well not only would it take time but it would require 250% of the space the table occupies now (while doing the work). So I would withdraw this solution in...
November 15, 2006 at 2:07 pm
That one I can confirm... It's per physical socket. Even a quad core should cost only one license (I guess it could change on there end however).
November 15, 2006 at 1:57 pm
No, only an update command can do that
. You can transform the data as you wish when you select it
November 15, 2006 at 1:51 pm
I can't answer the first one (but I think standard), but I'm sure you have to pay only for 4 (physical) processors.
November 15, 2006 at 1:40 pm
How does this work for you?
SELECT CONVERT(VARCHAR(10), GETDATE(), 101) AS MMDDYYYY
OR
SELECT CONVERT(VARCHAR(10), DateCol, 101) AS DateCol from dbo.YourTable
November 15, 2006 at 1:16 pm
Cool, we'll call that the first test for red-gate
!
November 15, 2006 at 1:14 pm
Thanx for the info... will make the necessary modification to the maintenance plan!.
November 15, 2006 at 12:47 pm
ok and for ultra small databases (250 MB >> 10 users)?
November 15, 2006 at 12:22 pm
Ok thanx... 2 databases : single application.
FREEPROCCACHE it is.
How often would you suggest running the update stats / reindex commands?
November 15, 2006 at 12:07 pm
Just to clarify that. Asking for help 3 message in a row is how I felt like we had to serve you. I'm happy to hear that this is not...
November 15, 2006 at 11:55 am
BTW you have a trailing space in count of unique claims that you have in the where that you don't have in the sort.... that sure can't help!
SELECT CalcAction FROM...
November 15, 2006 at 11:52 am
So basically after reindexing (not updating the stats) the whole db you need to clear the proccache??
November 15, 2006 at 11:48 am
Viewing 15 posts - 11,146 through 11,160 (of 18,923 total)