docker, oracle创建空间表,创建数据库。
进入容器
docker ps ## 查看容器的id号,复制一下 docker exec -it xxxxxxxx /bin/bash ## xxxxxxx就是上一部查看的id号
查看oracle状态,修改system用户密码:
source ~/.bash_profile ## 加载一下用户环境变量,进入容器后,自动是oracle用户 sqlplus /nolog ## 使用sqlplus 工具,进去命令行 SQL> connect /as sysdba ## 使用sysdba 连接oracle,最大权限,os认证,只能在本机上登陆使用。 SQL> select status from v$instance; ## 查看oracle现在的状态 ,状态为 OPEN 则正常,表示已开启状态。 SQL> alter user system identified by oracle; ## 修改用户 system 的密码为 oracle ,可以自定义
然后就是创建表空间,创建用户,并授权:
SQL> select name from v$tempfile; ## 查询临时表空间的路径 ## 下面这句,创建表空间,名:tets ,数据文件路径复制临时表空间数据文件路径然后改一下文件名就行了,大小:1G, 自动增长:50M 。 参数根据自己的需求自行修改 SQL> create tablespace test datafile ‘/home/oracle/app/oracle/oradata/helowin/tets02.dbf‘ size 1G reuse autoextend on next 50M maxsize unlimited default storage(initial 128k next 128k minextents 2 maxextents unlimited); SQL> select tablespace_name from dba_tablespaces ## 查看所有表空间,看看是否有刚才创建的 SQL> create user test01 identified by testpasswd default tablespace TEST temporary tablespace TEMP; ## 创建用户,test01,密码:testpass,设置默认表空间为刚才创建的 test, 临时表空间设为默认的 TEMP。 SQL> select username from dba_users ## 查看用户名,可以看到是否有刚才我们创建的用户名 SQL> grant connect,dba,exp_full_database,imp_full_database to test01 with admin option; ## 授权用户 test01,拥有连接,管理员,导入,导出权限,并可以传递权限。(根据需求自己定义权限)
如果用pl/sql develop ,请用system登录
select name from v$tempfile; ## 查询临时表空间的路径
#创建表空间 create tablespace lygj datafile ‘/home/oracle/app/oracle/oradata/helowin/temp02.dbf‘ size 100m autoextend on next 10m; #创建用户,并选择表空间 create user lygj identified by 123456 default tablespace lygj; #授权登录 grant dba to lygj;
相关推荐
bfcady 2020-08-16
Hody 2020-08-16
FightFourEggs 2020-08-16
流云追风 2020-07-04
dataminer 2020-06-25
FightFourEggs 2020-05-28
流云追风 2020-05-14
oraclemch 2020-04-19
Streamoutput 2020-02-09
Carlos 2020-02-03
Streamoutput 2020-01-21
haiross 2020-01-13
pfpfpfpfpf 2014-06-03
lidongliang 2020-08-16
warden00 2020-06-11
FightFourEggs 2020-06-02
elitechen 2020-05-21
zhangchaoming 2020-05-17
bianxq 2020-04-27
流云追风 2020-04-22
oraclemch 2020-04-10
oraclemch 2020-02-21
FightFourEggs 2020-02-12
talkingDB 2020-02-03
LuoXinLoves 2020-02-02
Streamoutput 2020-01-10
zhangchaoming 2020-01-04