Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以创建保存点并在 Oracle apex 应用程序上回滚我在应用程序上尝试了几次但发生了几个错误
代码应该完整;你不能只有beginand savepoint。像这样的东西:
begin
savepoint
begin savepoint a; delete from test; rollback to a; end; /
您的代码,已修复(您必须用分号终止每个语句;):
;
begin savepoint a; UPDATE emp SET salary = 70000 WHERE ename = 'HUzaifa'; rollback to a; end; /