我有一个全新的 Oracle Express 11g 实例。我正在尝试在默认数据库(xe)中创建一个带有表和视图的新模式。
我的脚本是:
create user XAuthority identified by mysecret;
alter session set current_schema = XAuthority;
create schema authorization XAuthority
create table CUSTOMER ( ID int, CUSTOMER text)
create view CUSTOMER_VIEW as select * from CUSTOMER
grant select on CUSTOMER_VIEW to xareadonly;
但我收到一个错误:
SQL 错误:ORA-02421:架构授权标识符 02421 缺失或无效。00000 - “架构授权标识符缺失或无效”
*原因:创建模式语句的授权子句中模式名称丢失或不正确。
*操作:如果名称存在,它必须与当前架构相同。
我熟悉 Postgres 和 MySql,但 Oracle 似乎完全不同。谁能告诉我这里有什么问题?