oracle 安装

2020-01-07  本文已影响0人  Plenari
win+R
sqlplus /nolog # 不登录任何数据库
conn / as sysdba;
create user c##test identified by test;# 公共用户

grant resource,connect,dba to c##test container=all;

create user c##xxx identified by xxx;
#启动
startup
  - nomount ,
  - mount
# 关闭,把数据库实例关闭
shutdown  immediate

换行后用[#] 可以注释,然后还能继续写。
spool a.txt #打开一个写入句柄
*******
spool off# 结束添加,写入
show 
edi
save # 保存文件
get # 获取保存的文件
start # 执行sql脚本 


alter session set container=ORCLPDB;
startup#启动容器

alter user scott account unlock identified by tiger;

上一篇下一篇

猜你喜欢

热点阅读