Viewing 15 posts - 21,421 through 21,435 (of 22,184 total)
BEGIN and END are logical groupings and control flow statements within a TSQL statement. They aren't terminators to the SQL utility in the same way that GO is. So if...
December 6, 2007 at 8:26 am
You can make uniqueidentifiers null. So the problem lies somewhere else. Do you have a trigger on the table or a default on the column that would be causing this?...
December 6, 2007 at 8:23 am
While it gets messing to maintain, when we have a number of parameters that may or may not be referenced, basically a search screen, this is how we configure the...
December 6, 2007 at 7:15 am
I have to agree. The beauty of the auto-grow is that you don't have to sweat details like that sometimes. The only suggestion I'd make is to set the auto-grow...
December 6, 2007 at 6:35 am
Actually, you've got it right. It's going to update alll the rows from one table where the id's match in the second table.
Maybe you phrased the question wrong or I...
December 6, 2007 at 6:33 am
Once you identify the offending procedure using Gail's method, get execution plans to see what is occuring within the script.
December 5, 2007 at 6:06 am
Do you foresee a need to use character sets from other languages, Kanji, Cyrilic, what have you? No, use VARCHAR. Yes, use NVARCHAR.
December 4, 2007 at 5:41 am
99.999% TSQL.
The remaining bits I use C# or VB.NET through the SMO (SQL Management Object). Very little need for anything else.
I did go through a great book on using PERL...
December 4, 2007 at 5:39 am
montgomery johnson (12/3/2007)
December 4, 2007 at 5:32 am
Gail is 100% correct. To add to it a bit, if your statement uses an index to retrieve the data, it frequently comes back in index order. The only way...
December 4, 2007 at 5:25 am
Or, I didn't think that through all the way and I'm wrong.
December 3, 2007 at 10:23 am
If you have a primary key constraint defined as nonclustered, you already have an index on that column, so no worries there.
Yes, you don't have to include the clustered index...
December 3, 2007 at 9:49 am
It simply gives you an indication whether the error is informational, really important, fatal to a connection or fatal to the server. See the reference linked above for details.
December 3, 2007 at 7:05 am
I went and read the original message. It's whining, pure and simple. I then read as many of the comments as I could stomach. It's kind of freaky how attached...
November 30, 2007 at 9:01 am
The real problem is, I am a jerk. So I have to try to reduce the damage as much as possible. Emails are dangerous because, even a well crafted message...
November 30, 2007 at 6:57 am
Viewing 15 posts - 21,421 through 21,435 (of 22,184 total)