Viewing 15 posts - 796 through 810 (of 3,738 total)
Lynn Pettis (7/16/2014)
Lynn Pettis (7/16/2014)
Welsh Corgi (7/16/2014)
I need o update the existing record to the encrypted value so...
July 16, 2014 at 11:29 am
Thank you so much for your help. I appreciate it.:-)
July 16, 2014 at 11:16 am
Lynn Pettis (7/16/2014)
Lynn Pettis (7/16/2014)
Welsh Corgi (7/16/2014)
I need o update the existing record to the encrypted value so...
July 16, 2014 at 11:14 am
Ed Wagner (7/16/2014)
Welsh Corgi (7/16/2014)
Lynn Pettis (7/16/2014)
Welsh Corgi (7/16/2014)
I need o update the existing record to the encrypted...
July 16, 2014 at 11:10 am
Lynn Pettis (7/16/2014)
Welsh Corgi (7/16/2014)
I need o update the existing record to the encrypted value so I need...
July 16, 2014 at 10:52 am
Suresh B. (8/24/2009)
Database master key:
select * from sys.symmetric_keys
ok how can I delete the mater and subordinates?
Thanks.
July 16, 2014 at 10:14 am
I need to add to a Data Transformation task to Load to Staging.
I need o update the existing record to the encrypted value so I need to add an addition...
July 16, 2014 at 10:11 am
TomThomson (7/16/2014)
Welsh Corgi (7/16/2014)
I can't get it to store the encrypted value.
I seem to have missed something out in the decryption. If you change
SELECT CONVERT(varchar(128), DecryptByKey(SSN)) as Plaintext_SSN
...
July 16, 2014 at 8:48 am
I changed the Data Type.
I revised Tom's code for I had errors with the variable names that I used.
I can't get it to store the encrypted value.
CREATE TABLE Name_and_SSN
(Full_Name VARCHAR(50),
encodedSSN...
July 16, 2014 at 8:22 am
Tom, thank you very much for your help.
If you were to execute the code that I posted you will find that it does not not store a value in the...
July 16, 2014 at 7:57 am
I opened the key and I was trying to write not read.
If you would be so kind as to execute my code you will see what I mean.
July 16, 2014 at 7:52 am
oops. I did something wrong the value of the SSN is Null.:unsure:
July 16, 2014 at 7:40 am
I was able to Insert the Record.
What do I need do to read the unencrypted value?
--First create a certificate, access to which represents permission to decrypt the SSN column; lets...
July 16, 2014 at 7:36 am
Thank you.
Could you please included the creation of the Key etc?
CREATE TABLE Name_and_SSN
(Name VARCHAR(50),
SSN CHAR (9))
OPEN SYMMETRIC KEY SSNKEY DECRYPTION BY CERTIFICATE SSN_Cert;
INSERT Name_and_SSN(full_name,encodedSSN)
values(@name, EncryptByKey(Key_GUID('SSNKEY'), convert(varbinary(128), @ssn)));
update...
July 16, 2014 at 7:20 am
Viewing 15 posts - 796 through 810 (of 3,738 total)