Forum Replies Created

Viewing 15 posts - 76 through 90 (of 177 total)

  • RE: Moving Files

    sp_detachdb and sp_attachdb don't exist, it should be sp_detach_db and sp_attach_db.

    D'OH - seems like I was the 5th or 6th person to make that point - should read the complete...

  • RE: The Multiple Instance Dilemna

    At my last job where I was the DBA Team Lead, I implemeneted a policy of unique, 12-character random passwords (from Password Safe), but we had a single set of...

  • RE: Install a new SQL Server 2005 named instance

    To install a new clustered instance, set up a new Cluster Group, with a volume(s) allocated (and properly formatted for SQL, of course), dont add anything else to the Cluster...

  • RE: Sort Order - Include Null al last

    So, I'm going to get my point for this - like others have said #3 is WRONG

    Select EmpName, DateOfLeaving from Employees order by DateOfLeaving desc, EmpName asc would give you:

    EmpName...

  • RE: Mirroring: Can I configure a 2 - 1 mirroring setup?

    Thanks Johan.

    I actually got my lazy self to go and do the research, and found this on MSDN

    All database mirroring sessions support only one principal server and one mirror...

  • RE: Mirroring: Can I configure a 2 - 1 mirroring setup?

    Thanks Al :smooooth:.

    Actually, the app has multiple databases, which are spread across the two instances - its an email archiving app (for legal recovery) that covers that whole of North...

  • RE: Dynamic Management Views

    How does this represent a potential security concern?

    The security concern is the ad-hoc SQL being executed - i.e. not controlled code.

  • RE: BETWEEN

    Badly worded question -

    Would statements #1 and #2 consistently return the same result set?

    How do we define "Same Result" Same result as the other statement? Same result across...

  • RE: How to pause Replication from an Oracle publisher

    Excellent, thanks.

  • RE: How to pause Replication from an Oracle publisher

    Thanks Mohammed, at the risk of sounding dumb, is that just the job(s). I dont have access to my work SSMS right now.

  • RE: 2005 active/active clustering

    This is a doc I had to create for our department recently, about SQL Installation on a cluster (the formatting looks better in Word!!):


    SQL install on a cluster

    This assumes that...

  • RE: Exceptionally Large DBsize

    santhu (5/29/2008)

    it is basically used as queue servce database..no user table/data resides here, as a result it is difficult to know how data would be there..moreover even i am not...

  • RE: DBCC SHRINKFILE is not working as expected ??

    ALZDBA (5/30/2008)

    THIS SCRIPT IS NOT INTENDED FOR SCHEDULED USAGE !!

    Thanks AL.

  • RE: CASTing

    Christian Buettner (5/27/2008)...Sorry Simon, this is not correct (or at least misleading)...

    Sorry, it could be construed as misleading. My assumption was that everyone would understand that the discussion was about...

  • RE: CASTing

    Aleksandr Furman (5/27/2008)


    About size of nvarchar(max)

    I tried this:

    declare @C nvarchar(max)

    set @C = N'hello' + replicate('-',8000)

    print len(@c)

    the result was still 4000. Can someone explain why it wasn't...

Viewing 15 posts - 76 through 90 (of 177 total)