标签: oracle indexing plsql database-performance
当我从前端应用程序刷新数据时,刷新数据需要花费太多时间(大约7秒)。在相关存储过程的后端,我使用并行索引来获得更好的性能/* index (n) parallel(col, 12) */。那么什么是最好的并行索引方法或我们必须使用的最佳并行度以获得更好的性能,因为我们希望刷新的数据在 2-3秒内。
/* index (n) parallel(col, 12) */