Viewing 15 posts - 91 through 105 (of 219 total)
Hugo Kornelis (10/19/2010)
October 19, 2010 at 2:57 am
which query is the fastest and most reliable for returning an accurate record count?
(One of) the fastest? Yes. The most reliable? I don't think so, because that query counts both...
October 19, 2010 at 2:09 am
Carlo Romagnano (10/13/2010)
In the example, unfortunately, most of syntax has been lost because of html tag.
Could you please zip that script and attach it to your next message? 🙂
October 13, 2010 at 1:56 am
This example is the query used to send a formatted html by xp_sendmail:
-- to test send output to text or file c:\temp\1.htm
SET NOCOUNT ON
select '' AS []
SELECT
' '...
October 12, 2010 at 1:10 am
Good question, but there is a link to BOL/articles/etc missing in the explanation. Should I take the explanation on trust? 🙂
September 15, 2010 at 12:31 am
The question would be more educational if it had no 'DROP CONSTRAINT' statement. In this case I would probably have answered wrong 🙂
September 10, 2010 at 12:59 am
The Resource database is a read-only database that contains all the system objects that are included with SQL Server ... So, the Resource db cannot be moved.
Sorry, but this conclusion...
September 9, 2010 at 1:02 am
The question forces to make an archaeological excavation 😀
August 13, 2010 at 1:38 am
Here is the formatted (in the way I like) code:
DECLARE @Text NVARCHAR(500)
DECLARE @StringDelimiter CHAR
SELECT @Text = 'This t-sql will split these sentences into rows.' +
'How many rows will be returned?.'...
July 2, 2010 at 5:30 am
This is one of several examples of practical use of Tally table
As for me, this is one of several the thousands examples of totally unformatted and obscure code. An example...
July 2, 2010 at 12:57 am
This could have a great performace effect for the other unencrypted databases
I agree with tommyh, the word 'great' is misleading in this context.
Not being a native English speaker, I deciphered...
June 29, 2010 at 12:25 am
Nice question.
OFF
I would like thanks my coorker...
What does the word 'coorker' mean? Is it a typo and needs to be 'coworker'?
June 23, 2010 at 1:15 am
Thanks to the author! That was a good lesson about the SELECT INTO statement.
June 21, 2010 at 12:44 am
stewartc-708166 (6/20/2010)
These operators ... are definately underused.
Maybe because they are not compatible with SQL Server 2005 and below?
June 21, 2010 at 12:40 am
Viewing 15 posts - 91 through 105 (of 219 total)