Oracle PL SQL 中调度程序作业中的全局临时 table 行为

Global temporary table behaviour in Schduler jobs in Oracle PLSQL

我在数据迁移中有一个阶段 table,它有大量数据,我们将数据分成几个块,并立即将它们提交给 oracle 调度程序作业以进行并行处理,从而创建单独的 jobs/process在服务器上。我的问题是我能否将阶段 table 转换为全局临时 table 并期望每个作业在执行期间都有数据。

can i convert the stage table into a Global temporary table ...

是的,你可以。


... and expect each job to have data during execution

是的,每个进程只会看到自己的数据,而所有进程共享相同的全局临时 table 定义。