更新时间:2020-09-30 14:35
本文主要介绍ORACLE 数据库类型,在进行系统录入时的一些注意事项,帮助用户能更快捷高效的完成录入,进行后续的统一管理之用。
ECS自建库
时需要准确填写ECS自建库
时需要准确填写关于授权,在录入数据库实例时,对应的数据库用户名
需要具备采集元数据字典信息相关的权限。参考授权语句如下:
create user [user_name] identified by [your_user_password];
grant connect to [user_name];
grant select any table to [user_name];
grant select_catalog_role to [user_name];
grant execute on dbms_metadata to [user_name];
grant create any table to [user_name];
grant create any sequence to [user_name];
grant alter any table to [user_name];
grant alter any sequence to [user_name];
grant alter any index to [user_name];
grant create any index to [user_name];
grant drop any index to [user_name];
grant select any dictionary to [user_name];
grant select any sequence to [user_name];
grant update any table to [user_name];
grant insert any table to [user_name];
grant delete any table to [user_name];
grant execute any procedure to [user_name];
关于实例数
对于ORACLE类型,同一个IP地址上可以有多个不同的SID进行多次录入,此时在实例规格上同一个IP地址只会算1个名额。
在文档使用中是否遇到以下问题
更多建议
匿名提交