Viewing 15 posts - 31 through 45 (of 334 total)
From Microsoft website for x64 standard:
"Windows Server 2003 R2 Standard x64 Edition, supports up to 32 GB of RAM on 1- to 4-way servers"
Your limitation will be what sql2000 can...
January 23, 2007 at 9:10 am
Need a little more information. What version of Sql are you planning to load on this. Sql2005 has a ram limit of os max. Which is 4gig per process on...
January 23, 2007 at 8:37 am
How often is this report going to be run. A different approach to a relevant report would be to select the top 2 search phrases from each session id, or...
January 23, 2007 at 8:25 am
I would also try turning the table variable into a #temp table. I have seen different performance based on using the different table expressions. You should also have an index...
January 23, 2007 at 8:21 am
I usually just fire up profiler on my local machine and give it the databases that I want to look at. You'll have to add the dbid to the default...
January 23, 2007 at 8:09 am
You shouldn't care. If you create two indexes one in ascending and one in descending orders. In one index it would be in rec no 1 and one it would...
January 22, 2007 at 3:10 pm
Better than detaching them, I would just take them offline. Are there any current users in the databases. The other thing you can do is setup a profiler trace and...
January 22, 2007 at 12:57 pm
So, if I am reading correctly, the other offsite systems data is never going to tape? I don't know if you have access to a NAS, but that is where...
January 17, 2007 at 7:31 am
Thanks for the good info. Although if you do just insert you will get fragmentation, only it will come at the end of the page. As the last page fills...
January 17, 2007 at 6:35 am
Dave,
Your in a tough spot. I have a vendor here for one of our oracle instances, that has a lot of procedures. I have had to add hints to their...
January 16, 2007 at 3:15 pm
Read up on dbcc showcontig. Fill factor needs to take into account what the clustered key is, and what kind of insert/update/delete activity is going on in the database. For instance,...
January 16, 2007 at 3:02 pm
Is this a 24x7 shop? I have to agree with the owner on this one. Why spend the money on expensive software when the Sql tools work just fine. You...
January 16, 2007 at 2:59 pm
Yeah, I thought about the 4 limit. As you said you can always build some fluff in. # of tables expected = the increment value. Scope for upto 10 tables...
January 16, 2007 at 2:50 pm
How many rows are in each table? You could create the identity in each table and use a different range for each. say 1-1000, 1001-2000, 2001-3000, 3001-4000. If you used...
January 16, 2007 at 2:16 pm
I forgot to add that I would turn the update into a select so I could tune that statement. At least to run the estimated execution plan.
-- pMxGetGainInfo
--update @portGainTable
-- set...
January 16, 2007 at 1:45 pm
Viewing 15 posts - 31 through 45 (of 334 total)