Forum Replies Created

Viewing 15 posts - 4,081 through 4,095 (of 9,244 total)

  • RE: Failover Clustering and AlwaysOn Availability Groups

    All detailed here[/url] and here[/url]

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server TDE Encryption

    Jai-SQL DBA (6/10/2013)


    name KeyEncBySrvr

    ------ --------------

    masterEncrypted by SMK

    namepvt_key_encryption_type_descissuer_namesubject

    ---- ---------------------------- ----------- ...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server TDE Encryption

    Ok so have a stab, what can you learn from the results?

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server TDE Encryption

    What do the following queries return?

    selectname

    , CASE is_master_key_encrypted_by_server

    WHEN 0 THEN 'Encrypted by password only'

    WHEN 1 THEN 'Encrypted by SMK'

    END AS KeyEncBySrvr

    from sys.databases

    where name = 'master'

    selectname

    , pvt_key_encryption_type_desc

    , issuer_name

    , [subject]

    from...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server TDE Encryption

    A typical create master key command

    USE master

    CREATE MASTER KEY ENCRYPTION BY PASSWORD = 'password'

    A typical create certificate command

    USE master

    CREATE CERTIFICATE MyServerCert WITH SUBJECT = 'My DEK Certificate'

    A typical create database...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server TDE Encryption

    The database master key is independant of the certificate. The master DMk is merely used to protect the private key while the cert is stored on the SQL server.

    The...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Please Please help me- upgrading to sql 2008 R2 enterprise edition from sql standard edition on SQL Failover Cluster

    My 3 part guide is a good source, they're linked below

    Part 1[/url]

    Part 2[/url]

    Part 3[/url]

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: The Importance of Reading Comments

    Vlad-207446 (6/10/2013)


    I don't get it.

    Read my article it will expalin in more detail.

    Vlad-207446 (6/10/2013)


    but if you have to physicaly move the files your self anyway, than wouldn't just

    stop...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: DB mirroring question

    in asynchronous mode the only way to perform a failover between partners is to use the following

    ALTER DATABASE [somedb] SET PARTNER FORCE_SERVICE_ALLOW_DATA_LOSS

    As Lynn says, data could be lost so a...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: DB Mirroring fails due to different file locations in Mirror

    detailed here

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: IP Address Doesnt turn from offline to online

    rajborntodare (6/7/2013)


    "The operation failed because either the specified cluster node is not the owner of the resource, or the node is not a possible owner of the resource"

    Open the...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: The Importance of Reading Comments

    See my article[/url] here on SSC for more detailed info.

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Logshipping Configuration error:3201

    Check the share "testing_backup". On the properties go to the share permissions tab and set permission for sql service accounts for both instances (if not the same).

    Then go to security...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: read registry w/o sysadmin, is it possible?

    Deque (6/6/2013)


    Of course, that requirement is one of the major reasons why BizTalk Server gets it's own instance in our environment.

    If an app logon absolutely requires sysadmin for support purposes...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Cluster - Multi Instance

    Also once you have installed an instance name as a clustered instance you cannot install a stand alone instance of the same name into any node in the cluster, whether...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

Viewing 15 posts - 4,081 through 4,095 (of 9,244 total)