Forum Replies Created

Viewing 15 posts - 1,891 through 1,905 (of 6,394 total)

  • RE: Required Permissions to Enable A Mirroring Session

    From BOL

    Requires ALTER permission on the database and CREATE ENDPOINT permission, or membership in the sysadmin fixed server role.

    https://msdn.microsoft.com/en-us/library/ms179306.aspx

  • RE: Today's Random Word!

    Ed Wagner (10/29/2015)


    anthony.green (10/29/2015)


    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

    Lamb Chops

    Minted

  • RE: SSIS excel source case sensitive fields

    Please don't cross post questions on multiple threads http://www.sqlservercentral.com/Forums/Topic1731492-364-1.aspx#bm1731775

    Koen and Phil have given you the solution.

    Make copies of your packages.

    Open them up in your favorite text editor

    Find and Replace the...

  • RE: Installation Error on 2012 Server

    Is it an error or a warning?

    You should just be able to skip past it as it should be a warning, as its there as a reminder to sort out...

  • RE: Accidental to "proper" DBA

    Where are you based and what will you mostly be doing, admin, development, bit of both?

  • RE: FTI search issue

    If you have a reversed string in a computed column and then add an index to that column

    Your string then looks like nixcba for example.

    You can then full text that...

  • RE: Installation Error on 2012 Server

    You need to ensure that you set the Windows firewall to allow the sqlserver.exe process or open up the port that SQL uses.

    If your installing a default instance, the port...

  • RE: FTI search issue

    Ah sorry I understand what your doing now.

    Your wanting a left sided prefix search which is not possible in full text, only right side eg. "xin*"

    My recommendation would be...

  • RE: DB Mirroring and Log Backups

    RPO = recovery point objective

    Also known as how much data can the company afford to loose before it becomes a problem for the company.

    Can you survive with 24 hours of...

  • RE: CASE WHEN SELECT Help.

    Should do it with a derived select

    SELECT

    M.[Description]

    ,A.*

    ,M.Threshold

    ,M.[Threshold Direction]

    ,dev1.[Colour]

    ELSE NULL END

    FROM [tbl_qd_audit] A

    JOIN [tbl_qd_measures] AS M

    ON A.[Measure] = M.[Measure]

    LEFT JOIN (

    SELECT A.Measure,

    CASE

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

  • RE: CASE WHEN SELECT Help.

    So you need to restrict the case statement to 3 measures not the view?

    Can you post the definitions of [tbl_qd_audit] and [tbl_qd_measures] with some sample data and an expected outcome

  • 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

Viewing 15 posts - 1,891 through 1,905 (of 6,394 total)