Oracle assigns a table truncate permissions

Source: Internet
Author: User

I. Create a stored procedure under INS user

Second, Mobapp user empowerment: Execute the permissions of the stored procedure

Third, the Odso_insert user executes the stored procedure, can truncate the table

View Odso_insert user-owned permissions

I. Create a stored procedure under INS user

1234567 createor replace procedure p_trun_link_odso is       sqlstr varchar2(2000);begin  sqlstr := ‘truncate table ins.tb_cablecheck_link_odso‘;  executeimmediate sqlstr;  commit;end;

Second, Mobapp user empowerment: Execute the permissions of the stored procedure

Grant execute on INS.P_TRUN_LINK_ODSO to Odso_insert;

Third, the Odso_insert user executes the stored procedure, can truncate the table

1234 begin  -- Call the procedure  ins.p_trun_link_odso;end;

View Odso_insert user-owned permissions



Oracle assigns a table truncate permissions

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.