如何在可插入数据库(Oracle 12C)中创建表空间



当我尝试连接到pluggable来创建表空间时,我尝试作为具有足够权限的本地用户直接连接到PDB,但是我有这个问题为什么?

SQL> $ sqlplus sys/password@localhost:1521/orcl as sysdba
SQL> $ sqlplus sys/password@localhost:1521/pdborcl as sysdba
SQL> ALTER SESSION SET CONTAINER = pdborcl;
SQL> CONN pdb_admin@pdborcl;
Introduzca la contrase±a:
ERROR:
ORA-01017: invalid username/password; logon denied
Advertencia: íYa no estß conectado a ORACLE!
SQL> CONN pdb_admin@pdborcl;
Introduzca la contrase±a:
ERROR:
ORA-01017: invalid username/password; logon denied

用户名密码输入错误。使用pdb_admin用户直接登录到可插入数据库,而不是分多个步骤进行。由于您是本地连接,您可以这样做:

sqlplus pdb_admin/password@pdborcl

或者,在出现提示时提供密码。

如果您提供正确的用户名/密码,您正在做的方法应该是成功的。

例如,

C:>sqlplus sys@pdborcl as sysdba
SQL*Plus: Release 12.1.0.1.0 Production on Fri Oct 23 13:31:18 2015
Copyright (c) 1982, 2013, Oracle.  All rights reserved.
Enter password:
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing opt
ions
SQL> conn scott@pdborcl;
Enter password:
Connected.

相关内容

  • 没有找到相关文章

最新更新