Forum Replies Created

Viewing 15 posts - 1 through 15 (of 345 total)

  • RE: Stretch Database Datatype Limitations

    Wrong. Hmm. Does the "choose 3" mean choose three data types or choose three options from the selection provided? Apparently the former. Don't tick 3 boxes!



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: Why every SQL Server installation should be a cluster

    robert_verell (4/15/2014)


    -licensing with SQL 2012 is a pain point here too for physical clusters. Since you've installed SQL Server on the second (and n+ nodes) you have to license...



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: Why every SQL Server installation should be a cluster

    Markus (4/15/2014)


    William Soranno (4/15/2014)


    Bill,

    Your senario might work if I had only a few databases to mirror and a few "applications" to change connection strings.

    I have 66 databases, and growing, on...



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: Regaining access to SQL server after changing the domain

    Good tip. I've done this in the past, but not via the service. I've stopped the service, opened a command prompt to the SQL Server program folder, and run the...



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: Bulk Logged recovery model

    "Now, after you take a log backup, could you see a log file bigger than usual?"

    No points for me. I perceive there being a difference between a "backup file" and...



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: Quick and Dirty DR Solution Using Robocopy

    Sean Elliott (UK) (11/7/2011)


    Be aware that using the /z switch (restartable mode) for Robocopy slows it down massively cant tell you how much but something like half speed. You are...



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: That case filter

    I thought this was a very good question. I must admit i spent time debugging the CASE statement in my head to try and determine what it would return -...



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: temp table in sysobjects

    Good question. Couple of issues with the construction of it though:

    1. Unless the database context is set to tempdb, or you explicitly reference tempdb..sysobjects, you will get no rows returned.

    2....



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: Split string using Tally Table

    Like someone else who replied, I shortcircuited the whole thing & counted the delimiters (well, more specifically the spaces between the delimiters), assuming it was an obfuscation question not a...



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: Using the UPTIME Utility to Monitor Servers

    Good point.

    I've never really understood the big fuss over xp_cmdshell being enabled or not. I see how it can be a security risk, and how if SQL security gets...



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: Using the UPTIME Utility to Monitor Servers

    If you're running it as a SQL Agent job, why not enable xp_cmdshell on the first step, run the utility in the next step then disable xp_cmdshell in the last...



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: Play with NULLIF

    Thanks for the info Hugo. I can now see where it would be useful in a couple of queries I have for some reports - where I was getting...



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: Play with NULLIF

    Good question but just raises another for me - when would you use NULLIF? It may be useful, but I am struggling to see where you would use it....



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: Lost in sp_executesql

    This seems to work:

    DECLARE @sql4 nvarchar(4000)

    DECLARE @sql5 nvarchar(4000)

    DECLARE @ParmDefinition nvarchar (500)

    DECLARE @ParmDefinition2 nvarchar (500)

    DECLARE @Prop int

    DECLARE @SrvName sysname

    SET @SrvName = N'AServer'

    SET @sql5 = N'USE [model]; SELECT @PropOUT2 = FILEPROPERTY (''modeldev'',''SpaceUsed'')'

    SET...



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


  • RE: Lost in sp_executesql

    To start with, here's solution to your undefined variable error:

    DECLARE @sql4 nvarchar(4000)

    DECLARE @sql5 nvarchar(4000)

    DECLARE @ParmDefinition nvarchar (500)

    DECLARE @ParmDefinition2 nvarchar (500)

    DECLARE @Prop int

    SET @sql5 = N'USE [model]; SELECT @PropOUT2 = FILEPROPERTY...



    Scott Duncan

    MARCUS. Why dost thou laugh? It fits not with this hour.
    TITUS. Why, I have not another tear to shed;
    --Titus Andronicus, William Shakespeare


Viewing 15 posts - 1 through 15 (of 345 total)