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.
我在作业开始时清除的表上运行 mload 脚本。当脚本失败时,错误和日志表会阻止该作业再次运行。失败后如何干净地重置 mload?
您需要删除工作/错误/日志表
DROP TABLE UV_mytable;
DROP TABLE ET_mytable;
DROP TABLE WT_mytable;
DROP TABLE LT_mytable;
然后释放负载锁:
RELEASE MLOAD mytable;
如果这失败了
RELEASE MLOAD mytable IN APPLY;
但为什么这项工作会失败呢?