Viewing 14 posts - 1 through 14 (of 14 total)
Anyone care to post a "best practice" example use of this feature?
January 17, 2008 at 6:24 am
I bought the $25 version, and it has rough edges but saves loads of time. It provides not just decent intellisense, but code snippets. Just being able to type ssf[TAB]...
July 26, 2006 at 10:39 am
In golf, the correct list would be 1, 2, 3, 3, 5. Nobody came in 4th place, but someone did come in 5th.
April 26, 2006 at 9:35 am
Please post the T-SQL example here.
April 26, 2006 at 6:41 am
This post was about HOW these work, not what they do. Can anyone confirm that there is NO performance difference between SCOPE_IDENTITY and @@IDENTITY?
January 31, 2006 at 11:35 am
Actually, the Books Online -> Scope_Identity describes what it does, but says nothing at all about how it does it.
I would surmise that each connection has TWO global last_identity values,...
January 30, 2006 at 10:20 am
Another great reason to upgrade to Yukon, where this is allowed.
November 3, 2005 at 7:24 am
I could send some Pink Paper to Redmond, this bug shows there is a terrible shortage there.
September 13, 2005 at 6:51 am
SQLXML in SQL Server 2000 isn't suited for this task, in my opinion. I agree with the posters above who say in SQL2000 you should do this outside of your...
September 6, 2005 at 12:06 pm
WOW!
We just found out that if SQL Server 2005 is creating XML, and the column contains HTML data, it AUTOMATICALLY does the HTMLEncode() for you.
We don't need our Managed Extension,...
August 29, 2005 at 1:24 pm
Thanks Chris. Astute as always.
Our design calls for the XML data to be produced by SQL Server 2005, which it is simply great for, but there are also elements that...
August 29, 2005 at 9:12 am
First, strSource is a String, not a StringBuilder, so it is immutable. You'd need:
strSource = strSource.Append( "something" );
But you should certianly use a StringBuilder for work like this.
August 25, 2005 at 12:27 pm
If you check Kalen Delaney's Inside SQL Server 2000, Chapter 7, Corrolated Subqueries, Page 354, she explains that using the LEFT JOIN and testing for null uses less than half...
August 16, 2005 at 11:22 am
Sql Server cannot handle this, see MS article:
October 21, 2004 at 7:33 am
Viewing 14 posts - 1 through 14 (of 14 total)