There is no built-in method of encrypting the <i>stored data</i>, though you can encrypt the data as it is sent over the wire (the network packets), as well as the text of things like stored procedures.<br><br>You could make a stored procedure to encrypt/decrypt on the fly, and use that SP to access the data, but performance would be less than stellar. <p>Robert Bradley<br><a href=mailto: > </a><br><a href=
Thank you very much for the reply. But my question was related to encrypting/hiding the schema of the SQL Server 7.0 database(not the data that resides within the database). I know there are different techniques by which you can encrypt the data over the network.<br><br>I will appreciate if someone could help me out of this.
As foxdev says, there is no built-in method of encrypting your stored data, by which he means your schema as well. I had always felt that this was a feature and not a fault.... a bit like Open Source coding. <p> <br><a href=mailto: > </a><br><a href=
To some extent, you could use views; you'd grant rights to the views, and remove the rights from the tables. In this way, the users could see the structures of the views that you set up, but not the underlying base tables, thus allowing you to hide columns or even entire tables.<br><br>Its not exactly what you are looking for, but perhaps it would satisfy the business need that you have. <p>Robert Bradley<br><a href=mailto: > </a><br><a href=
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.