Viewing 15 posts - 106 through 120 (of 369 total)
GSquared (8/19/2009)
declare @i int, @b-2 bit;
select @i = 0, @b-2 = 1;
select @i +...
August 19, 2009 at 1:30 pm
dmw (8/12/2009)
As Paul said, I was wrong when I stated that schemas do not contain stored procedures.
I suspect tablespaces are irrelevant to...
August 13, 2009 at 10:41 am
Some links for understanding and reference:
Hilary Cotter's article: http://www.simple-talk.com/sql/learn-sql-server/sql-server-full-text-search-language-features/
Full-Text Search Q and A http://msdn.microsoft.com/en-us/sqlserver/aa336328.aspx which contains the answer to the Question: why do we need full text if we can...
August 11, 2009 at 11:16 am
1) How to repopulate full-text catalogs using sql query.? Is it neccessary after every insert?
Yes and No. It all depends how you set up your full-text index. Reference...
August 11, 2009 at 10:56 am
APARNA (7/27/2009)
Thanks for your inputs. All these days I have used OPENXML without worrying about the performance implications.
You should worry! See: http://www.sqlservercentral.com/blogs/michael_coles/archive/2008/01/20/stop-using-openxml-please.aspx
July 28, 2009 at 9:46 am
GUID is also known as a UUID. See: http://en.wikipedia.org/wiki/Uuid which also describes the Versions and how to identify them.
July 16, 2009 at 7:20 am
SQL Server GUIDs are Version "4" (random) and not Version "1" (MAC address).
An advantage for using GUIDs in a .Net application is that the value can be generated anywhere within...
July 16, 2009 at 7:14 am
Sorry, it is one of the numerous limitations in SQL Server's full-text functionality. Ref BOL: http://technet.microsoft.com/en-us/library/ms142492(SQL.90).aspx
Oracle, on the other hand, supports true SQL wildcarding (%_) of search terms. Ref:...
July 9, 2009 at 11:51 am
The System Functions are classified as Scalar Functions.
Reference BOL:
Scalar Functions: http://technet.microsoft.com/en-us/library/ms174318(SQL.90).aspx
System Functions: http://technet.microsoft.com/en-us/library/ms187786(SQL.90).aspx
Using a System Function such as CAST and CONVERT against an xml data type is permitted. Ref:
http://technet.microsoft.com/en-us/library/ms189887(SQL.90).aspx
Therefore,...
June 16, 2009 at 9:37 am
See the following post which briefly describes our process.
http://www.sqlservercentral.com/Forums/FindPost702354.aspx
More "meat" can be found in the linked posting (message 474053).
June 9, 2009 at 8:02 am
an interesting statement in the explanation:
...thought of this question considering larger scenarios where data types need to be chosen with care.
I think a bit more care should have been put...
June 5, 2009 at 11:55 am
I agree with all of those that chose NCHAR(1). The question stated one character of data, not one byte. The explanation is wrong as it states one byte....
June 5, 2009 at 10:33 am
Randolph Potter (6/2/2009)
Nice tip, John! I'm going to use it myself 🙂
You're welcome. It is one of numerous defensive measures that I've implemented. Usually resulting from the school...
June 2, 2009 at 1:09 pm
Put a safety check at the beginning of your script. We have to do the same thing (i.e., upgrade 100+ databases with a new release). To avoid accidental...
June 2, 2009 at 11:10 am
The use of XQuery would be better vs. OPENXML which is generally considered to be obsolete. It is more readable which helps to avoid errors.
Additionally, OPENXML is a resource...
June 2, 2009 at 10:10 am
Viewing 15 posts - 106 through 120 (of 369 total)