删除表的时候报错 sql> drop table u1;drop table u1*ERROR at line 1:ORA-55610: Invalid DDL statement on h
sql> drop table u1;
drop table u1
*
ERROR at line 1:
ORA-55610: Invalid DDL statement on history-tracked table
$ oerr ora 55610
55610, 00000, "Invalid DDL statement on history-tracked table"
// Cause: An attempt was made to perfORM certain DDL statement that is
// disallowed on tables that are enabled for Flashback Archive.
// Action: No action required.
原来是之前开了闪回日志归档,不能执行部分的DDL操作
select table_name,flashback_arcHive_name from dba_flashback_archive_tables;
TABLE_NAME FLASHBACK_ARCHIVE_NAME
1 U1 TEST1
SQL> alter table u1 no flashback archive;
Table altered.
SQL> drop table u1;
Table dropped.
--结束END--
本文标题: ORA-55610: Invalid DDL statement on history-tracke
本文链接: https://lsjlt.com/news/43511.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0