Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> moving a schema from prod to test (or vice versa) in 8i - no dbms_metadata
Hi
I have often needed to copy a schema to another database so I am working on a script to accomplish this. This could be an entirely new schema on the target database or may require a drop cascade and then recreate. I have checked all the usual web sites and have not found one. Does anyone have one they want to share? My effort so far has produced the following (work in progress ) pseudo script:
select 'create user TOSCHEMA identified by values '''||password||'''
default tablespace TOSCHEMA temporary tablespace TEMP;'
from sys.DBA_USERS
where username = 'FROMSCHEMA';
select 'grant '||GRANTED_ROLE||' to TOSCHEMA;'
from sys.DBA_ROLE_PRIVS
where grantee = 'FROMSCHEMA';
select 'grant '||PRIVILEGE||' to TOSCHEMA;'
from sys.DBA_SYS_PRIVS
where grantee = 'FROMSCHEMA';
select 'alter user TOSCHEMA quota
'||decode(MAX_BYTES,-1,'UNLIMITED',MAX_BYTES)
||' on '||TABLESPACE_NAME||';'
from sys.DBA_TS_QUOTAS
where username = 'FROMSCHEMA';
select 'grant '||PRIVILEGE||' on '||OWNER||'.'||TABLE_NAME||' to TOSCHEMA'
||decode(GRANTABLE,'YES',' with grant option ;',';')
from sys.dba_tab_privs
where grantor='FROMSCHEMA' or grantee = 'FROMSCHEMA';
select 'grant '||PRIVILEGE||' ('||COLUMN_NAME||')'||' on
'||OWNER||'.'||TABLE_NAME||
' to TOSCHEMA'||decode(GRANTABLE,'YES',' with grant option ;',';')
from sys.dba_col_privs
where grantor='FROMSCHEMA' or grantee = 'FROMSCHEMA';
Thanks,
Ben
![]() |
![]() |