Oracle authorized user access to the specified view

Source: Internet
Author: User

  

--Create user test_user, and authorize connection, query view create user Test_user identified by Test_user;grant Connect to test_user;grant CREATE view to test_user;--Grant view references a table permission to a new user grant Select on Other_user.table1 to Test_user with the grant Option;grant select on Other_user.tab Le2 to Test_user with Grant Option;grant Select on Other_user.table3 to Test_user with Grant option;--create a phase with the new user Test_user Off view Create or replace view V_1 asselect a.*,b.*,c.* from  other_user.table1 ajoin other_user.table2 B on A.id=b.fidjoin Other_user.table3 C on b.fid=c.xid--Remove the new user's permissions to create a view revoke create view from Test_user;

A lot of detours, a record.

Oracle authorized user access to the specified view

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.