Viewing 15 posts - 14,296 through 14,310 (of 22,211 total)
Well, we're already not comparing apples to apples then. That just makes it harder. No differences in the connection settings, both using the same driver (albeit, different versions)?
I haven't seen...
September 24, 2010 at 11:23 am
Good catch Lowell. I didn't see that at all.
September 24, 2010 at 9:53 am
Instead of SSMS or Trace, try using the DMV's.
sys.dm_exec_requests will show open, active requests, not just open connections. If you have an uncommitted transaction, it'll be there.
September 24, 2010 at 9:24 am
Are you getting an error or is there missing/incorrect data?
September 24, 2010 at 9:22 am
So you're saying that the 2008 instance moves more data locally and then processes faster than the 2005 instance...
Are there other differences? More memory, better/more cpu's? Are the connection settings...
September 24, 2010 at 9:21 am
You mean that the exact same amount of data is moved regardless of which side you run the query from? Are you sure that one side or the other isn't...
September 24, 2010 at 9:04 am
GilaMonster (9/24/2010)
Grant Fritchey (9/24/2010)
Based on the info in the spread sheet, it looks like you have out of date statistics. You've got missing stats warnings.Or maybe auto_create_stats turned off?
Yep, absolute...
September 24, 2010 at 9:00 am
You might be able to find a free software that could help you here: http://www.supershareware.com/sql-server-comparison-free/
I'd go for something like that rather than try to write it myself.
Do you have Visual...
September 24, 2010 at 8:06 am
Yep. A linked server query will move all the data across the wire and then perform filtering. You're better off using OPENQUERY to pass the processing to the remote machine...
September 24, 2010 at 8:02 am
First off, nesting views frequently leads to performance problems. I recommend against it.
Based on the info in the spread sheet, it looks like you have out of date statistics. You've...
September 24, 2010 at 8:01 am
You can't segregate the data within a table. If your client has to be completely isolated, then you have to move them to another table. The only other option you...
September 24, 2010 at 7:51 am
You can run it for 24 hours, you just have to be prepared for the fact that you're going to get a whole lot of data. Plan accordingly, run a...
September 22, 2010 at 9:42 am
Bhuvnesh (9/22/2010)
September 22, 2010 at 6:48 am
Brandie Tarvin (9/22/2010)
Grant Fritchey (9/22/2010)
...I think people thought I was a little weirder than usual.
I'm so glad you put those last two words on that sentence. Otherwise, I would feel...
September 22, 2010 at 6:44 am
Viewing 15 posts - 14,296 through 14,310 (of 22,211 total)