Viewing 15 posts - 20,056 through 20,070 (of 22,202 total)
Really? You're using it? Any words of wisdom on either living with it well or avoiding it entirely?
July 1, 2008 at 5:26 am
Nah, go take it. If it's really a question & answer type of test, you'll probably pass. It's likely to be one of those filters that HR puts in place...
June 30, 2008 at 1:20 pm
Richlion (6/30/2008)
June 30, 2008 at 11:36 am
In addition to that list of links, which is pretty good, I'd just say to get very familiar with Profiler. One of the best books you can get is "Inside...
June 30, 2008 at 11:23 am
Hey guys,
You think you have problems now? Wait until nHibernate and all it's ilk are in your development systems. Now you'll have object specific databases with dynamic SQL. Tuning headaches...
June 30, 2008 at 7:59 am
It's probably parameter sniffing. As everyone else has already said, get the execution plans and see what the differences are.
June 30, 2008 at 7:54 am
I even had a guy go off on a huge lecture that we were asking too many SQL Server specific questions (for a SQL Server specific position) because we should...
June 30, 2008 at 7:53 am
Hey guys,
I've been out of town. Thanks for keeping the conversation going. Especially since you've been supplying answers much better than the ones I would have supplied.
June 30, 2008 at 6:48 am
Yeah, I have to agree. A blanket statement like that is not good.
June 30, 2008 at 6:31 am
Yes, you want to analyze the trace. A standard trace, using the defaults, will capture the execution time, I/O and CPU costs. That's what you need to look at. It's...
June 30, 2008 at 6:08 am
Be afraid. Be very afraid.
I do the technical interviews for our team. We go through about 20-30 phone screens in order to find someone worth bringing in for an interview....
June 30, 2008 at 6:04 am
One thing not mentioned is the use of copy & paste. We have a project that's actually, honestly, a little complex. In one place, we found we needed a query...
June 30, 2008 at 5:39 am
Jeff Moden (6/24/2008)
jimige257 (6/24/2008)
Is it worth spending 2 hours optimizing a prodedure that works now and is needed last week? Many would say not.
And, THAT is why I tell folks...
June 30, 2008 at 5:34 am
Convert the NOT IN statement to a LEFT JOIN and only select values where the key from the second table are NOT NULL. That's much more likely to make good...
June 24, 2008 at 12:16 pm
You have to issue a USE statement or quantify the object names in the queries with the database name. Neither method supports using a parameter which is why all you'll...
June 24, 2008 at 9:24 am
Viewing 15 posts - 20,056 through 20,070 (of 22,202 total)