- Mastering Oracle Scheduler in Oracle 11g Databases
- Ronald Rood
- 202字
- 2021-04-01 14:12:52
Creating a user
When working with simple jobs, our basic need is to create a user. In DB Console, there is a default user sysman
. We can use this or the user system
. However, it is better to create a dedicated user for different tasks. This prevents us from giving too many privileges to jobs and maintains auditability. So, let's first create a normal user who does the work for us:
create user marvin identified by panic; grant create session, create job to marvin; grant select any dictionary to marvin; create user stats identified by nopanic; alter user stats quota unlimited on users; create table stats.session_log as select * from v$session where 1 = 2; create table stats.session_stat_log as select * from v$mystat where 1 = 2; grant select,insert,update,delete on stats.session_log to marvin; grant select,insert,update,delete on stats.session_stat_log to marvin; create public synonym session_log for stats.session_log; create public synonym session_stat_log for stats.session_stat_log;
The select any dictionary
privilege is mainly because we want to use DB Console. For this, it must view a lot from the dictionary. Now start a web browser and connect to the freshly created user marvin
. The Oracle Scheduler support is provided in the Server tab of the DB Console.
推薦閱讀
- PS是這樣玩的:輕松掌握 Photoshop 通關秘籍
- IBM Lotus Notes 8.5 User Guide
- vtiger CRM Beginner's Guide
- Premiere Pro 2022短視頻剪輯、調色與特效制作實戰(全彩微課版)
- 3ds Max/VRay室內設計材質、燈光與建模速查超級手冊
- 中文版CorelDRAW X6基礎培訓教程
- 3ds Max/MaxScript印象 腳本動畫制作基礎與應用
- Lighttpd
- Adobe創意大學Photoshop CS5 產品專家認證標準教材
- SPSS統計分析
- Midjourney商業設計完全教程
- 虛擬現實:沉浸于VR夢境
- Photoshop CC 2018基礎教程(第3版)
- Building Websites with XOOPS : A step/by/step tutorial
- Getting Started with Oracle BPM Suite 11gR1 – A Hands/On Tutorial