文档解释
ORA-01350: must specify a tablespace name
Cause: Invocation failed to specify a valid tablespace
Action: Reformat invocation of DBMS_LOGMNR_D.SET_TABLESPACE to include the name of a valid tablespace.
ORA-01350: must specify a tablespace name 表示必须指定一个表空间名称。
官方解释
ORA-01350:must specify a tablespace name
Cause: An operation was attempted that required a tablespace name, but one was not provided.
常见案例
当用户尝试创建新表时,没有为该表指定表空间名称时,将会抛出ORA-01350: must specify a tablespace name错误。
正常处理方法及步骤
第一步:检查是否未指定表空间,以下是创建表语法示例:
CREATE TABLE orders
(
id NUMBER(16) NOT NULL,
order_num VARCHAR2(30) NOT NULL,
customer VARCHAR2(30) NOT NULL
)
TABLESPACE example_ts;
第二步:如果确认没有指定表空间,请给表添加合适的表空间,如上面示例中的example_ts。