私はSql Developerで新しく、この問題が発生しました。私は接続しますが、テーブルを作成しようとするとエラーが表示されます:ORA-01031:不十分な特権。権限が不十分ですテーブルを作成します
私は答えを見つけようとしますが、私は成功しませんでした。
私はSql Developerで新しく、この問題が発生しました。私は接続しますが、テーブルを作成しようとするとエラーが表示されます:ORA-01031:不十分な特権。権限が不十分ですテーブルを作成します
私は答えを見つけようとしますが、私は成功しませんでした。
を助けてください、と問題:
SQL> grant create any table to anonymous;
OR
SQL> grant create table to anonymous;
OR
SQL> grant resource to anonymous;
テーブル特権の作成が必要です。
the difference between
create table
andcreate any table
is thatif you have create table privilege then you can create a table in your own schema.but if you have create any table system privilege then you can create table in any schema.also to create an external table the valid privilege is create any table if you use create table then it will show an error.
なぜ 'create table'ではなく' create any table'ですか? – Ben
@Benすべての方法ローマに行く:)大丈夫、貢献をありがとう、私は編集しました。 –