December 9, 2011 at 11:22 pm
Hi,
In a Blob column we storing mail contents, comments, documents etc.,
That content contains credit card number, While sending it to screen we need to mask that 16 digit credit number alone.
Is there any way to do this SQL Server.
December 10, 2011 at 12:57 am
The encryption feature is available in SQL Server. But it’s a BLOB & you want to encrypt a portion of it, I would recommend you to do this encryption on application side.
December 11, 2011 at 6:49 am
vino5786 (12/9/2011)
Hi,In a Blob column we storing mail contents, comments, documents etc.,
That content contains credit card number, While sending it to screen we need to mask that 16 digit credit number alone.
Is there any way to do this SQL Server.
Gosh... why are you storing this all in one Blob column? These types of things should be stored in a normalized fashion and display as separate lists of things on the screen.
When you say you need to "mask that 15 digiit credit number alone", what do you really mean? Do you mean you want to display it as a separate field on the screen or do you mean you want to blot out the credit card number?
--Jeff Moden
Change is inevitable... Change for the better is not.
December 11, 2011 at 8:55 pm
Thanks for your reply. I mean to mask 15 digit number with xxxxx.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply