Here is the scenario:
Company A would want to share his data with Company B. He only wants to share a view from his database. Currently, Co. A gave a public access to Co. B.
Co.A doesn't want that Co.B to look through the logic of the stored procedures, the tables structures ...plain and simple...the system...obviously the reason why Co.A created a view in the first place.
What's the best implementation to use in order for Co.A to allow Co. B to READ the data on his view...and not allowing Co.B to check out every object on the database...except his view...
Company A would want to share his data with Company B. He only wants to share a view from his database. Currently, Co. A gave a public access to Co. B.
Co.A doesn't want that Co.B to look through the logic of the stored procedures, the tables structures ...plain and simple...the system...obviously the reason why Co.A created a view in the first place.
What's the best implementation to use in order for Co.A to allow Co. B to READ the data on his view...and not allowing Co.B to check out every object on the database...except his view...