Forum Replies Created

Viewing 15 posts - 1,906 through 1,920 (of 6,401 total)

  • RE: DB Mirroring and Log Backups

    Log backups once a day, really? Whats your RPO, 24 hours, if so no need to do the log backup your nightly full will meet that expectation.

    But in answer...

  • RE: CASE WHEN SELECT Help.

    Is it not just a case of adding the where clause into the script you already have

    SELECT

    M.[Description]

    ,A.*

    ,M.Threshold

    ,M.[Threshold Direction]

    ,CASE

    WHEN M.[Threshold Direction] = '>' AND A.Value > M.Threshold THEN 'GREEN'

    WHEN...

  • RE: Today's Random Word!

    Ed Wagner (10/28/2015)


    Eirikur Eiriksson (10/28/2015)


    Jeff Moden (10/28/2015)


    Eirikur Eiriksson (10/28/2015)


    Ed Wagner (10/28/2015)


    Eirikur Eiriksson (10/28/2015)


    happygeek (10/28/2015)


    nibble

    Quark

    String

    Tension

    "Wait-till-last-minute"

    (83-code-reviews-in-2-days-on-urgent-project :sick::blink::unsure:)

    Ultimate tensile strength (UTS)

    Shear

    Sheep

  • RE: FTI search issue

    Remove the * from the CONTAINS search, do you get the right results then?

  • RE: Powershell Permissions

    Might be related, but has the agent account changed since setup? And if so was it done via services.msc or SQL Server Config Manager?

    If services.msc, go to SQL Server...

  • RE: Today's Random Word!

    Ed Wagner (10/28/2015)


    whereisSQL? (10/28/2015)


    anthony.green (10/28/2015)


    whereisSQL? (10/28/2015)


    crookj (10/28/2015)


    anthony.green (10/28/2015)


    Ed Wagner (10/28/2015)


    anthony.green (10/28/2015)


    Ed Wagner (10/28/2015)


    anthony.green (10/28/2015)


    Ed Wagner (10/28/2015)


    Sushi

    Wasabi

    Soy

    Bean

    Navy

    Sailor

    Pirate

    Eye-Patch

    Arrrrrrrrrrr

    Treasure

    Loot

    Classifieds

  • RE: Today's Random Word!

    whereisSQL? (10/28/2015)


    crookj (10/28/2015)


    anthony.green (10/28/2015)


    Ed Wagner (10/28/2015)


    anthony.green (10/28/2015)


    Ed Wagner (10/28/2015)


    anthony.green (10/28/2015)


    Ed Wagner (10/28/2015)


    Sushi

    Wasabi

    Soy

    Bean

    Navy

    Sailor

    Pirate

    Eye-Patch

    Arrrrrrrrrrr

  • RE: Getting error at the time of deplyment

    You checked that the server is right, you have permissions and that you can browse to it?

    Your not using SSL at the server level are you and need to...

  • RE: migrating from Oracle 11g to SS 2014

    Generally in the past when I have done Oracle to SQL migrations, we migrate everything as NVARCHAR(MAX) (Yes I know over kill), into a staging database, then use functions...

  • RE: get last full backup times

    Generally yes it would as a full backup resets the differential point.

    But as these are snapshot backups using VSS unsure how they interact with the differential markers.

    Would be worth doing...

  • RE: Percentage of Fields Used in a Table - Query

    Something like the following

    create table #test (cola bit, colb bit, colc bit, cold bit)

    insert into #test values

    (1,1,1,1),

    (1,null,1,1),

    (1,null,null,1),

    (1,null,null,null),

    (1,null,null,null),

    (1,null,1,null)

    select * from #test

    select count(*), count(cola), count(colb), count(colc), count(cold) from #test

    select 'colA : '+convert(varchar,...

  • RE: Query Result Snapshots

    Big vague.

    Can you elaborate more on the problem in hand?

  • RE: get last full backup times

    Looks like you have a 3rd party tool also backup up the DB's as the is_snapshot flag is set to 1.

    You can filter them out by adding

    WHERE msdb.dbo.backupset.is_snapshot = 0

  • RE: Today's Random Word!

    Ed Wagner (10/28/2015)


    anthony.green (10/28/2015)


    Ed Wagner (10/28/2015)


    anthony.green (10/28/2015)


    Ed Wagner (10/28/2015)


    Sushi

    Wasabi

    Soy

    Bean

    Navy

    Sailor

Viewing 15 posts - 1,906 through 1,920 (of 6,401 total)