Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Change owner of a table

happy10319May 6 2016 — edited May 6 2016

Hi,

on 11.2.03 on AIX

I have :

SQL> SELECT owner,tablespace_name

FROM dba_tables

WHERE table_name='AUD$';

OWNER                          TABLESPACE_NAME

------------------------------ ------------------------------

SYSTEM                            SYSAUX

How can I change owner and tablespace to have :

SQL> SELECT owner,tablespace_name

FROM dba_tables

WHERE table_name='AUD$';

OWNER                          TABLESPACE_NAME

------------------------------ ------------------------------

SYS                            SYSTEM

For tablespace :

alter table ... move tablespace

but for owner , what should be done ?

Thank you.

This post has been answered by John Thorton on May 6 2016
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 3 2016
Added on May 6 2016
7 comments
829 views