Forum Replies Created

Viewing 6 posts - 1 through 7 (of 7 total)

  • RE: A Stock Price Correlation Matrix

    Thanks!

    I was looking for exactly this!

  • RE: Index Defragmentation and update stats

    I changed a few references to @DBName to quotename(@DBName) as there is an issue with database names with spaces.

    Otherwise, thanks very much.

  • RE: How long is a NULL?

    SET CONCAT_NULL_YIELDS_NULL ON

    DECLARE @str AS VARCHAR(8)

    SET @str = 'abcdefghij'

    SELECT @str

    SELECT LEN(@str)

    SELECT LEN(@str+NULL)

    SELECT ISNULL(@str+NULL,'1234567890')

    --------

    abcdefgh

    -----------

    8

    -----------

    NULL

    ---------

    123456789

    Okay.....

  • RE: Snapshot of MSDB

    The Microsoft 70-431 self-training book says "You cannot create Database Snapshots against system databases." Was this changed in a service pack, or was the author being lazy?

  • RE: Guide to MCITP: SQL Server 2008 Developer

    Pass 4 Sure & Self Exam Engine are suspected to be brain-dumps by certguard[/url].

  • RE: Stored procedure parameters

    This is a cheeky one.

    Technet (link) says the following:

    The data type of a parameter determines the type and range of values that are accepted for the parameter. For example, if...

Viewing 6 posts - 1 through 7 (of 7 total)