当前位置:网站首页>Oracle create user + Role
Oracle create user + Role
2022-07-01 05:51:00 【WHY-small】
Orcle Create user + role
Local :orcle
account number :system【 Set by yourself during installation 】
password :root【 Set by yourself during installation 】
cmd Input
sqlplus / as sysdba
– Create a temporary table space
create temporary tablespace WUKQ_temp
tempfile 'D:\orcleData\DB\Oracle\dbFile\WUKQ_temp.dbf'
size 50m
autoextend on
next 50m maxsize 2048m
extent management local;
– Create tablespace
create tablespace WUKQ
logging
datafile 'D:\orcleData\DB\Oracle\dbFile\WUKQ.dbf'
size 50m
autoextend on
next 50m maxsize 2048m
extent management local;
– Create user
边栏推荐
- Crossing sect · paipan + Siyuan notes = private notebook
- Idea start view project port
- Advanced cross platform application development (III): online resource upgrade / hot update with uni app
- excel動態圖錶
- 关于一道01背包问题的·拓展题的思考
- excel初级应用案例——杜邦分析仪
- rust猜数字游戏
- It's not that you have a bad mind, but that you haven't found the right tool
- Continuous breakthrough and steady progress -- Review and Prospect of cross platform development technology of mobile terminal
- College community management system based on boot+jsp (with source code download link)
猜你喜欢
随机推荐
HCM 初学 ( 四 ) - 时间
Code shoe set - mt3114 · interesting balance - explain it with examples
win10、win11中Elan触摸板滚动方向反转、启动“双指点击打开右键菜单“、“双指滚动“
为了保护自己的数据,他奋斗了一天一夜
boot+jsp的高校社團管理系統(附源碼下載鏈接)
libpng12.so.0: cannot open shared object file: No such file or directory 亲测有效
Codeforces Round #803 (Div. 2)vp
A little assistant for teenagers' physiological health knowledge based on wechat applet (free source code + project introduction + operation introduction + operation screenshot + Thesis)
Advanced cross platform application development (III): online resource upgrade / hot update with uni app
Basic electrician knowledge 100 questions
OpenGL es: (1) origin of OpenGL es (transfer)
Geoffrey Hinton:我的五十年深度学习生涯与研究心法
OpenGL ES: (2) OpenGL ES 与 EGL、GLSL的关系
这才是大学生必备软件 | 知识管理
Educational administration management system of SSM (free source code)
Brief description of activation function
C语言初阶——牛客网精选好题
Ssm+mysql second-hand trading website (thesis + source code access link)
Advanced drawing skills of Excel lecture 100 (1) - use Gantt chart to show the progress of the project
Oracle 序列+触发器







