Transfer oracle sql profiles between two databases
Transfer oracle
sql profiles between two databases
Summary
Here is a simple guide to transfer sql profiles from one database to another. For better understanding assume that you want to transfer one sql profile from the 'source' database to the 'destination' database.
1. Connect to the source database as sysdba and grant the required privileges to the user which will own the staging table.
Here is a simple guide to transfer sql profiles from one database to another. For better understanding assume that you want to transfer one sql profile from the 'source' database to the 'destination' database.
1. Connect to the source database as sysdba and grant the required privileges to the user which will own the staging table.
$ sqlplus "/ as sysdba"
2. Create the staging
table.
BEGIN
DBMS_SQLTUNE.CREATE_STGTAB_SQLPROF (table_name =>
'SQL_PROFILES_STGTAB');
END;
/
3. Check the existing
sql profiles at the source db and copy the desired to the staging table
SELECT * FROM dba_sql_profiles ORDER BY created DESC;
BEGIN
DBMS_SQLTUNE.PACK_STGTAB_SQLPROF (profile_name => 'SYS_SQLPROF_014c5ae7b1c80001',
staging_table_name => 'SQL_PROFILES_STGTAB');
END;
/
SELECT * FROM SQL_PROFILES_STGTAB;
4. Copy the staging
table SQL_PROFILES_STGTAB from the source db to the destination db. ( export and import)
5. Grant again at the destination db the required privilege.
5. Grant again at the destination db the required privilege.
6. Add the sql
profiles from the staging table to the destination db.
BEGIN
DBMS_SQLTUNE.UNPACK_STGTAB_SQLPROF(REPLACE => TRUE,
staging_table_name => 'SQL_PROFILES_STGTAB');
END;
/
Comments
Post a Comment