Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
gangadhara.ms
Aged Yak Warrior
549 Posts |
Posted - 2010-08-27 : 06:49:29
|
Dear all,I am newbie to SQL Server 2008 and i need help related to Encyption Techniques in SQL server 2008.Just for your reference..our databases are being migrated to SQL server 2008 R2Ple help me from where i need to start.Thanks,Gangadhar |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
gangadhara.ms
Aged Yak Warrior
549 Posts |
Posted - 2010-09-07 : 00:02:05
|
Hi Tara,I started with MSDN and learned some of the things for Encryption,I ran the following query to get prepare for Encryption in SQL 2008 USE master;GOCREATE MASTER KEY ENCRYPTION BY PASSWORD = 'ObyGoxDandy2974728';GOCREATE CERTIFICATE PersDBCert WITH SUBJECT = 'Certificate forPersonnel DB'GOUSE PersonnelGOCREATE DATABASE ENCRYPTION KEY WITH ALGORITHM = TRIPLE_DES_3KEYENCRYPTION BY SERVER CERTIFICATE PersDBCertGOALTER DATABASE PersonnelSET ENCRYPTION ONGOTo manage the encryption state of the database by using SQL Server ManagementStudio, follow these steps:1. In the Object Explorer view in SQL Server Management Studio, right-click the database you want to configure, and then select Properties from the shortcut menu.2. In the Database Properties dialog box, select Options from the Select A Page list. You can now do the following:Turn on database encryption by setting Encryption Enabled to True.And and after that i have created one sample table and inserted some data.And selected by using select * from tablenameStill i am able to view the original data its not encrypted ?Any help in this regard highly helpful |
 |
|
|
|
|