Oracle Table with degree 1
Hi,
I'm trying to alter the table with no parallel , however i'm seeing the table degree as 1, is there anything else i need to change so that degree changes to null.
SQL> alter table admin.XYZ noparallel;
Table altered.
SQL> select degree from dba_tables where table_name='XYZ';
DEGREE
------------------------------
1
Thanks!