Wednesday, July 25, 2012

Create table with Parallel command

The following statement will allow one to create a table using oracle parallelization.

create table big_emp parallel (degree 4)
  as select * from emp;

No comments:

Post a Comment