Forum Replies Created

Viewing 15 posts - 721 through 735 (of 1,034 total)

  • RE: 881223 - How to add a Share Disk resource to a cluster?

    What sort of disk subsystem are you working with?

    In general I've seen SANs used to handle the clustered disk resource, with both nodes of the cluster having access to the...

  • RE: How to use Database mail feature in SQL Server 2000

    dawidjordaan (3/9/2010)


    I will try this out and see what the auditors have to say and report back to this forum. I hope this is something I can slip by them...

  • RE: How to use Database mail feature in SQL Server 2000

    Why not just use something like CDO or if your server is old enough CDONTS?

    Basically brings Database Mail to SQL server 2000. Just for fun I was creating sp_send_dbmail stored...

  • RE: SARGable

    I have to agree with the complainers here.

    When one of the answers is none of the above, how do I know the abscence of a column name is accidental or...

  • RE: Database Size

    Lynn Pettis (1/21/2010)


    Have you checked model to see if that is how it is configured on each of the systems? You may not have fiddled with model, but someone...

  • RE: Database Size

    david.wright-948385 (1/21/2010)


    I bet this will turn out to be another "the intention of QOD is to make people think" or "you can't comment on this if you haven't submitted a...

  • RE: Database Size

    psm-983793 (1/21/2010)


    Hi,

    On my Developer edition both 2005 and 2008 come up with 3MB and 1MB.

    Windows 7 x64

    Cheers,

    Peter

    2 MB mdf, 3 MB ldf here, and I know I haven't fiddled with...

  • RE: GOTO Statement

    Seeing as this is in the SQL 2k5 forum.

    Personally if you have the time, I'd look at converting the GOTO's to TRY/CATCH blocks.

    Just so much simpler to be able to...

  • RE: 4-4-5 Calendar Functions, Part 2

    Every time I read these articles about 4-4-5 my head hurts... and I vow again and again to make sure to not take a job with a company that follows...

  • RE: Hitting nVarchar(max) limitation when running exec sp_executesql

    Hmmm based on that I'd expect this to work though

    declare @bob varchar(2000)

    select

    @bob = 'select * from sys.tables'

    exec sp_executesql @bob

    but instead I get

    Msg 214, Level 16, State 2, Procedure sp_executesql,...

  • RE: Hitting nVarchar(max) limitation when running exec sp_executesql

    I'll bet its not... and here's why

    Microsoft SQL Server 2005 introduces the max specifier. This specifier expands the storage capabilities of the varchar, nvarchar, and varbinary data types. varchar(max), nvarchar(max),...

  • RE: Hitting nVarchar(max) limitation when running exec sp_executesql

    That's odd because this query

    declare @bob varchar(max)

    select

    @bob = 'select * from sys.tables'

    exec sp_executesql @bob

    Returns this message on SQL 2k5 when I run it.

    Msg 214, Level 16, State 2, Procedure sp_executesql,...

  • RE: Old SQL Syntax

    jcdyntek (1/7/2010)


    left outer join, right outer join would have the asterisk on the right side of the =, this is not ansi standard SQL

    I believe that indeed it was ANSI-89...

  • RE: Hitting nVarchar(max) limitation when running exec sp_executesql

    Jeff Moden (1/7/2010)


    mtassin (1/7/2010)


    jcdyntek (1/7/2010)


    I will also check on the limits of character strings, however, if this is an internal string do you really need an nvarchar? if you...

  • RE: Hitting nVarchar(max) limitation when running exec sp_executesql

    jcdyntek (1/7/2010)


    I will also check on the limits of character strings, however, if this is an internal string do you really need an nvarchar? if you used the varchar...

Viewing 15 posts - 721 through 735 (of 1,034 total)