ORA-16306: specified table does not have a primary key
Cause: A call was made to DBMS_LOGSTDBY.EDS_ADD_TABLE for a table that did not have a primary key.
Action: Add a primary key and retry the operation.
ORA-16306表示指定的表没有主键。
ORA-16306:规范表没有主键
参数1:schema_name
参数2:table_name
参数3:operator
参考错误:
ORA-16306:表“sample_schema.sample_table”没有主键
原因:错误的表结构
此错误表明操作中要求的指定表没有主键。
ORA-16306被引发当在表上执行alter语句,create index,create proc等操作时。
1.确认表缺少主键
2.使用ALTER TABLE语句添加主键
3.确保主键包含足够的列,使其符合索引索引添加要求
4.重新执行创建或者修改操作