Granting “Create Directory” Privileges in Oracle

前端 未结 2 1149
余生分开走
余生分开走 2021-02-20 06:48

I want to run a CREATE DIRECTORY query in Oracle 10, but it\'s giving me an insufficient privileges error.

Can anybody tell me how to grant this privilege t

2条回答
  •  时光取名叫无心
    2021-02-20 07:20

    From Oracle docs:

    "You must have CREATE ANY DIRECTORY system privilege to create directories."

    So,

    grant create any directory to userOfInterest;

提交回复
热议问题