select * from dba_data_files;
create temporary tablespace test_temp
tempfile 'D:ORACLEHOMEORADATAORCLDATAFILEtemp.DBF' size 2148M;
create tablespace test_data
datafile 'D:ORACLEHOMEORADATAORCLDATAFILEtest_data.DBF' size 8192M;
create user C##test identified by test
default tablespace test_data
temporary tablespace test_temp;
grant connect,resource,dba to C##test;
--确认当前cdb
oracle 12c 创建用户
SQL> select name,cdb from v$database;
NAME CDB
------------------ ------
ORCL YES
--查询当前pdb基本信息
col pdb_name for a30
select pdb_id,pdb_name,dbid,status,creation_scn from dba_pdbs;
select con_id,dbid,NAME,OPEN_MODE from v$pdbs;
创建使用者
SQL> create user c##test identified by test;
SQL> alter session set container=pdb1;
SQL> show con_name;
SQL> show con_name;
CON_NAME
PDBORCL
创建真正的用户
SQL> create user test identified by test default tablespace users temporary tablespace temp;
授权
grant create user,drop user,alter user,create any view,connect,resource,dba,create session,create any sequence to test
D:OracleHomeproduct12.1.0dbhome_1BIN>lsnrctl status
LSNRCTL for 64-bit Windows: Version 12.1.0.2.0 - Production on 01-12月-2016 23:01:23
Copyright (c) 1991, 2014, Oracle. All rights reserved.
正在连接到 (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
LISTENER 的 STATUS
别名 LISTENER
版本 TNSLSNR for 64-bit Windows: Version 12.1.0.2.0 - Production
启动日期 01-12月-2016 22:54:53
正常运行时间 0 天 0 小时 6 分 30 秒
跟踪级别 off
安全性 ON: Local OS Authentication
SNMP OFF
监听程序日志文件 D:OracleHomediagtnslsnrcwjlisteneralertlog.xml
监听端点概要...
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=cwj)(PORT=1521)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=cwj)(PORT=5500))(Security=(my_wallet_directory=D:ORACLEHOMEadminorclxdb_wallet))(Presentation=HTTP)(Session=RAW))
服务摘要..
服务 "orcl" 包含 1 个实例。
实例 "orcl", 状态 READY, 包含此服务的 1 个处理程序...
服务 "orclXDB" 包含 1 个实例。
实例 "orcl", 状态 READY, 包含此服务的 1 个处理程序...
服务 "product" 包含 1 个实例。
实例 "orcl", 状态 READY, 包含此服务的 1 个处理程序...
服务 "tea" 包含 1 个实例。
实例 "orcl", 状态 READY, 包含此服务的 1 个处理程序...
命令执行成功