Forum Replies Created

Viewing 15 posts - 1,606 through 1,620 (of 6,395 total)

  • RE: Today's Random Word!

    Stuart Davies (12/14/2015)


    Ed Wagner (12/13/2015)


    TomThomson (12/12/2015)


    Ed Wagner (12/11/2015)


    IPO

    Capital

    Investment

    Banker

    recession

  • RE: Database monitoring tools?

    Not going to stand one out from the other, they are all good tools, they all monitor, they all do the same thing, just in different ways and allow for...

  • RE: Database monitoring tools?

    shamshad.ali (12/14/2015)


    The list you mentioned is sorted by best one on top or it is mixed?

    Mixed, as detailed, try them all out, they all do the same but different, they...

  • RE: Database monitoring tools?

    Take a look at

    Red-Gate SQL Monitor

    Idera Diagnostic Manager

    Dell Spotlight on SQL Server

    Dell Foglight

    SQL Sentry Performance Adviser

    ApexSQL Monitor

    Prices vary, and will vary on bulk purchasing so prices are never usually given...

  • RE: L Server in T-SQL

    Assuming you want to create the script in SSMS on the same server where the backups are taken from, take a look at the backup tables in MSDB to dynamically...

  • RE: using SP_WhoIsActive trying to track down the job step

    Remove the ' from around the hex value

    select * from sysjobsteps where job_id = 0xBEB303926F0CE848BA3F9858417DB773

    The hex value is the GUID converted to hex and binary is passed in without quotes...

  • RE: Today's Random Word!

    Stuart Davies (12/11/2015)


    crookj (12/10/2015)


    Ed Wagner (12/10/2015)


    Revenant (12/10/2015)


    Ed Wagner (12/10/2015)


    djj (12/10/2015)


    Old

    Experience

    Hendrix

    Haze

    Purple

    Rain

    Desmond

  • RE: TempDB Log growing

    Then monitor what is using TempDB and define if this is normal or not.

    If not go speak to the person who is causing the issue and work with them to...

  • RE: Troubleshooting Linked Server creation using Windows authentication

    Yes defiantly looks like a double hop issue.

    Check with your domain admins, that the SQL Server accounts have trusted for delegation rights and that the correct SPN's have been set...

  • RE: TempDB Log growing

    Log growth is normal.

    Is the growth rate your seeing normal, who knows.

    You will need to monitor whats using TempDB to see whats causing the log growth, maybe you had a...

  • RE: Mirroring in SQL 2012

    Gazareth (12/10/2015)


    richardmgreen1 (12/10/2015)


    We aren't using it for failover.

    The mirrors will be snapshotted for use in reporting.

    We need the data to run various reports on (that's on thr BI Edition server).

    The...

  • RE: Mirroring in SQL 2012

    Ah ok, that makes more sense.

    In theory it should work, but as John has already mentioned mirroring is now a depreciated feature.

    I would take a look at Log Shipping instead...

  • RE: Need Help SQL Query

    dprasannain (12/10/2015)


    create table #emps (EN varchar(10))

    insert into #emps values

    ('A'),

    ('B'),

    ('C'),

    ('D')

    DECLARE @Names VARCHAR(8000)

    SELECT @Names = COALESCE(@Names + ', ', '') + char(39)+en+char(39)

    FROM #emps

    print @Names

    -- This query does'nt return any values when...

  • RE: Need Help SQL Query

    Post the full code you have executed, that code isn't in my snippet so you have modified it some how to work with your environment

  • RE: Need Help SQL Query

    It all comes down to how you want to handle nulls

    First COALESCE returns a null due to the null in the table

    Second COALESCE returns a string but with *** in...

Viewing 15 posts - 1,606 through 1,620 (of 6,395 total)