sql 2005 encryption

  • I want to do encryption in sql 2005 without modfiing any exsiting data structure or application? it that possible in sql 2005; pls hlep; thanks in advance.

  • I do not believe you're able to do that in 2005 ... 2008 offers transparent data encryption, so perhaps this could be good justification to upgrade :). Don't quote me though, as encryption is one of my weakest areas as I haven't really used it to much outside of testing so I'm not entirely sure if there are any other options available in 2005.

  • I'm not 100% sure if you are trying to encrypt all of your data or what you are looking for, but there is an encryption option available on the networking setup of 2005.

    Use the SQL Server Configuration Manager, expand the networking configuration, right click on Protocols and select Properties. Once you are there you can set Force Encryption. However, I think this only encrypts the information being sent over the wire.

    Have fun!

    Regards, Irish 

  • Joe (12/9/2008)


    I want to do encryption in sql 2005 without modfiing any exsiting data structure or application? it that possible in sql 2005; pls hlep; thanks in advance.

    What do you want to encrypt and why? Who are you trying to hide the data from?

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • Thanks for the reply;

    GilaMonster;

    I want to encrypt the entire DB so that if someone steal the DB, then they are not able to attach it or restore it;

  • Joe (12/10/2008)


    Thanks for the reply;

    GilaMonster;

    I want to encrypt the entire DB so that if someone steal the DB, then they are not able to attach it or restore it;

    For that you need SQL 2008's transparent database encryption. 2005's encryption is not designed for that, as the keys are within the database itself.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • Gail: what if I were to encrypt a single column on request from one of our clients..

    1.How is the process supposed to work?

    2.How would the process of querying the table with ref to this column work after encryption?

    Thanks!!

    The_SQL_DBA
    MCTS

    "Quality is never an accident; it is always the result of high intention, sincere effort, intelligent direction and skillful execution; it represents the wise choice of many alternatives."

  • The_SQL_DBA (12/12/2008)


    1.How is the process supposed to work?

    That's a bit of a vague question.

    How would the process of querying the table with ref to this column work after encryption?

    If you query it without opening the key and calling the decryption function, you'll see the encrypted data.

    May I suggest you read over the encryption section in BoL. It's fairly good. If you have specific questions afterwards, post them.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • Yes- I do believe I need to catchup a lot :hehe: with the encryption feature on SQL. I think this is the right time I do it.

    Thanks Gail for your comments and views!

    The_SQL_DBA
    MCTS

    "Quality is never an accident; it is always the result of high intention, sincere effort, intelligent direction and skillful execution; it represents the wise choice of many alternatives."

Viewing 9 posts - 1 through 8 (of 8 total)

You must be logged in to reply to this topic. Login to reply