Hi,
Here is my scenario.
create table dbo.customer_info(Customer_ID bigint, SSN varchar(32))
insert into dbo.customer_info values(2330, '543-54-9087')
insert into dbo.customer_info values(2330, '321-54-9087')
Is there any way that a DBA can hide SSN information from users/database users.
Not through the views/functions/procedures
Thanks you for your valuable time.
Sri.