Viewing 15 posts - 406 through 420 (of 469 total)
Something like this is probably what you're looking for. My bet would be that with 600,000 rows a temp table will end up being more efficient than a table...
October 21, 2010 at 10:30 am
ps. (10/21/2010)
any idea how do we check the same in sql server 2000? sysforeignkeys doesn't have is_trusted column..
I'm pretty sure that SQL 2000 doesn't have that same capability. I...
October 21, 2010 at 6:40 am
garima.arya (10/21/2010)
If someone has added a foreign key constraint, why would he write a query like this.
Interesting point about how the query optimizer works but I'm more with Garima. ...
October 21, 2010 at 6:24 am
William Vach (10/15/2010)
October 15, 2010 at 7:36 am
One of the things we offer with our product, an Electronic Health Record, is a service that will create PDFs of the most relevant data. It has all the...
October 11, 2010 at 6:46 am
Generic optimizations are difficult to give since how long something takes will vary depending on the schema. One thing that may come in handy is using CTE to handle...
September 16, 2010 at 2:57 pm
The product I work on is an enterprise application and our clients pay us for a support contract. That contract doesn't cover customizations but that doesn't necessarily mean that...
August 24, 2010 at 8:49 am
I wouldn't be surprised if this came up as the user saying, "Hey, on this transitional screen would it be possible to display summary data," it got implemented, and then...
July 14, 2010 at 7:08 am
kaspencer (6/28/2010)
We all make mistakes, and we all forgive mistakes. But on a forum of this type we expect mistakes to be acknowledged by the moderators, and then corrected.
Right. ...
June 28, 2010 at 7:00 am
For the enterprise level application I support we "require" all clients to have a DBA that manages their servers. There are a lot of the smaller shops that don't...
June 25, 2010 at 7:43 am
Indexes should be looked at in a whole application perspective to get the best setup. Trying to optimize for this specific query could lead to a less than optimal...
June 7, 2010 at 3:02 pm
If you're looking to track how long each query is taking you can have profiler log to a table or a file and then do averages on the duration. ...
June 3, 2010 at 6:29 am
I can't really explain why this would happen but I do have a recommendation. We've solved similar problems in the past by loading information from some of the tables...
May 11, 2010 at 2:24 pm
Thanks for the links. I haven't had a chance to finish them but I do see your concerns and can start to piece together how that might have caused...
May 11, 2010 at 12:47 pm
Duplicate rows if something else is working in the table? Yep but there's no way that's the case where we saw the duplicate entries. It was a development...
May 11, 2010 at 11:21 am
Viewing 15 posts - 406 through 420 (of 469 total)