PL/SQL insufficient privileges within a query manually possible

后端 未结 1 1384
我在风中等你
我在风中等你 2020-12-11 14:12

I need to do this task , and update this table that has a lot of rows.

This table has 2 columns :

FOO and BAR

I ha

相关标签:
1条回答
  • 2020-12-11 14:48

    Your privileges are assigned via ROLE. This is fine with direct SQL, but don't work with PL/SQL.

    You need to acquire the privileges direct to you user.

    While testing the PL/SQL queries set in advance

     set role none;
    

    this will deactivate the priviledges acquired via ROLE and show possible problems running in PL/SQL.

    0 讨论(0)
提交回复
热议问题