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 10g 中经常运行的程序(每 5 分钟约 1000 次)。基本思想是根据PK刷新表中的数据。
就数据库的 IO/CPU 负载而言,哪个性能更好? DELETEPK then INSERTor a MERGEon PK?
DELETE
INSERT
MERGE
MERGE 几乎总是比带有 BULK INSERT 的特制 DELETE 慢。它只是在某些情况下使用起来更方便。
另一方面,如果您不使用任何技巧来加速您的查询性能将几乎相同。