Viewing 15 posts - 21,736 through 21,750 (of 22,184 total)
It sounds like you're almost using the tool backwards. We've been spending all our time working on the schema, in source control, and then we automate getting it out to...
July 26, 2007 at 11:16 am
No doubt that Jacob's article on Unit Testing will be as good as the job he did on this one. You might also want to check out the two I posted...
July 25, 2007 at 8:10 am
Nice introduction to DBPro. Well written.
But, I have to agree with Mr. Leach on the basic point that instead of comparing databases as a deployment methodology, we in the database...
July 25, 2007 at 5:22 am
I'm not too sure I'm crazy about this trend. I mean, some of us have a face perfect for radio...
June 20, 2007 at 5:54 am
I do have to admit to using Redgate SQL Refactor & SQL Prompt. Between the two they do tons of formatting so I don't have to. I do like the...
June 19, 2007 at 5:10 am
I still capitalize the reserved words because not all our SQL code will end up in a nice graphical editor. It does make it a bit easier to read.
June 18, 2007 at 8:42 am
If the environment has moved to 2005 and its new development, there's no real reason to not go to SSIS. It's going to be the tool used in future releases...
June 13, 2007 at 12:48 pm
Have you looked for configuration differences between the BETA servera and PROD?
Any chance that after inserting 1.2 million rows a record at a time that you've got index fragmentation problems?
Those...
June 11, 2007 at 11:44 am
<ShamelessPlug>I just got an article published on the basics of performance tuning at Simple-Talk.com
http://www.simple-talk.com/sql/performance/sql-server-performance-crib-sheet/
</ShamelessPlug>
June 11, 2007 at 11:40 am
It might not be exactly what you're looking for, but have you looked into, what was in SQL 2000, the black box? Lookup sp_trace_create in BOL.
June 11, 2007 at 11:36 am
Something along the lines of:
SELECT c.State, h.HotelName, h.MinPrice
FROM City c
INNER JOIN Hotel h
ON c.City = h.City
AND h.Range = (SELECT MIN(Range)
FROM Hotel h2
WHERE h2.City = h.City
and h2.Hotel = h.Hotel
...
June 11, 2007 at 11:30 am
The estimated plan can't be trusted because statistics & data can get out of sync. I had to come up with a contrived situation to display it. Silly, I'll grant...
June 8, 2007 at 9:38 am
With some help from a person, here's one that works (by works I mean we get two different plans).
IF
EXISTS (...
June 8, 2007 at 8:55 am
Viewing 15 posts - 21,736 through 21,750 (of 22,184 total)