Viewing 15 posts - 46 through 60 (of 334 total)
I am assuming there is not an index on the table in the tempdb db or on the table variable. One thing I have noticed is that table variables and temp...
January 16, 2007 at 1:42 pm
The other server could be using a different plan. We'd really have to see the execution plans to get anymore information. You can still do table scans and have it...
January 16, 2007 at 11:44 am
It sounds to me like maybe the query/sp is using the wrong execution plan. Is it a single sp that is always as the basis of the problem. I generally...
January 15, 2007 at 11:01 am
Just for future reference. You could also have put a delete trigger on the table and written out the deleted data and the time it was deleted. That helps in...
January 15, 2007 at 8:02 am
When considering fill factor, it is more that whether there are a lot of inserts or not. It depends on the key of the clustered index. If you have an...
January 10, 2007 at 2:00 pm
How are the tables linked in access? I know I've run into problems with tables and ms access locking schemes. Dynaset, read-only, etc. (can't remember them all). I would look at...
January 9, 2007 at 3:30 pm
I am assuming that this is a table/s in the current db. You could also create views of the same name as the table which point to table/s in another...
January 9, 2007 at 11:49 am
Are these two machines the same hardware? Nic cards the same speed? Have you terminaled in and ran the query local to see if speed is the same? Do other indexes...
January 9, 2007 at 8:23 am
Are there any other indexes on the prod box. Is it the same class/type machine. How fragmented is the actual database files. When you do a recovery everything is laid out...
January 5, 2007 at 3:14 pm
What is the query time. Do some tests. Set your fill factor to something super low. 20%. Execute your query. Then set it back to 90. You'll notice a time...
January 5, 2007 at 2:51 pm
I just did it and it worked fine for me. You have to export each group individually under the Registered Servers X key. Try it I think you'll find it...
January 5, 2007 at 2:32 pm
I haven't tested this, but a quick look through the registry got me to this key:
[HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL Server\80\Tools\SQLEW\Registered Servers X\SQL Server Group]
You can try exporting from your old machine and...
January 5, 2007 at 12:56 pm
It can't be done with the restore database command. Oney way to do something like that would be to create the multiple file db and then bulk load/dts all of...
January 5, 2007 at 12:48 pm
update tablexxx
set col1 = col2
Tom
January 5, 2007 at 12:43 pm
Do you have any maintenance plans running index builds or consistency checkers? Any other maintenance that could be happening when this is going on. One last thing is to look...
January 5, 2007 at 9:05 am
Viewing 15 posts - 46 through 60 (of 334 total)