Viewing 15 posts - 136 through 150 (of 334 total)
I would test what size it should be set at. Batch size controls commit actions. If you're bcp'ing 1,000,000 wide rows and your constantly waiting for your log file to...
July 7, 2006 at 6:30 am
You can set your batch size. This will sometimes speed things up.
Tom
July 5, 2006 at 1:08 pm
How many indexes are on the table. Try dropping the indexes during the bulk load and rebuilding them afterwards.
Tom
July 3, 2006 at 12:34 pm
I ran into a similar problem the other day. There was a varchar field used to store an integer. The program was getting the next int value by selecting the...
June 26, 2006 at 3:29 pm
Mike,
Try running. sp_updatestats. I also will run sp_createstats on some tables to give the optimizer more options.
Tom
May 31, 2006 at 12:43 pm
Mike,
When was the last time you rebuilt the indexes on the table. Run dbcc showcontig on the tables involved on each system and post that. It will show the index...
May 31, 2006 at 8:32 am
Mike,
How many processors are on each server??Try this hint on the slower, beefier machine. Run it with the stats set.
At the end of the select add: option maxdop 1
Thanks
Tom
May 30, 2006 at 3:00 pm
What about the processor?
Run this on both machines and post the output from the query analyzer messages tab.
set statistics io on
go
set statistics time on
go
--your code here
Try that, I'll take a...
May 30, 2006 at 12:54 pm
Is the data the exact same on both servers. Have statistics been updated on both servers. No raid will run faster than raid5. What about processor speed.
Tom
May 30, 2006 at 12:27 pm
If I remember right, you have to Issue the
restore database test with recovery
after you restore the log.
Tom
May 12, 2006 at 12:30 pm
Here's a script you can run in each database that will list out the objects each user owns.
select b.name,a.name from sysobjects a join sysusers b
on a.uid = b.uid
where b.name =...
May 5, 2006 at 7:34 am
Has this database been in full recovery before? Try this if you can. Detach the database and re-attach a single file db. A new log file will be created. See...
April 26, 2006 at 6:51 am
I would not make that assumption. You're assuming that they are good programmers which isn't always the case. Some other things I'd look at: Are statistics being updated? Are indexes being...
April 25, 2006 at 3:41 pm
Are these databases all off of the same production server. If they are I would copy the users and sids from the production server and create them on the QA...
April 25, 2006 at 3:16 pm
Are things indexed correctly? I'm don't know your application but you could also use the nolock hint for dirty reads.
Tom
April 25, 2006 at 3:12 pm
Viewing 15 posts - 136 through 150 (of 334 total)