Avatar of pablouruguay
pablouruguay
Flag for Uruguay asked on

Migrating oracle database.

hi people i have a databse in a server oracle 10g. i dont know oracle and i need to move this database or something to another server 11

i can connect to the data with sqlplus system/pass@cm and all work great.
how can i move to other server this data? step by step please im a newbie on oracle
Storage HardwareOracle Database

Avatar of undefined
Last Comment
slightwv (䄆 Netminder)

8/22/2022 - Mon
slightwv (䄆 Netminder)

How large is the database?
Do you need just one user or does the application have several users?

I'm thinking a simple export/import but will need the information above before I provide the syntax.
pablouruguay

ASKER
the database is 156Mb and i need 1 user only this user system
slightwv (䄆 Netminder)

Have you already created the database on the 11g server?

If not, go ahead and to it.  To make like easier, pre-create the same tablespaces that you are using in the 10g database.

Then pre-create the user you are wanting to move over.


Log into the 10g database server and from a command prompt:
exp system/password file=myMigrate.dmp owner=userToMigrate consistent=Y compress=Y

Copy it over to the 11g server (binary copy).

Then from a command prompt:
imp system/password file=myMigrate.dmp full=y
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
William Peck
pablouruguay

ASKER
mmm. this only export the user i need to export the database called CM
slightwv (䄆 Netminder)

>>mmm. this only export the user i need to export the database called CM

I do not understand what you are trying to tell me with this post.
Praveen Kumar Chandrashekatr

Yes you can export whole database and import it to new server, but since the system and sys schema related most of the data will already present in the new server i.e 11g so you may encounter error while importing which you can ignore.

But you think you have only one schema in your CM database which has all the related data you can go for export/ import the schema or user only as Slightwv mention in is post.

here are the detail steps to do so

check how may users present in 10g database i.e

SQL> select username from dba_users where username not in ('SYS','SYSTEM','APPQOSSYS','DBSNMP','ORACLE_OCM','OUTLN');

Also check the tablespace created in 10g dtabase i.e

SQL>select * from dba_tablespaces;

SQL> select * from dba_directories;

Now export the database using expdp to the directory present above.
export ORACLE_SID=<SID>
expdp system/**** schemas=<list of users which you want to export> directory=DATA_PUMP_DIR dumpfile=exp_CM.dmp logfile=exp_CM.log

The below one is for full database export
expdp system/**** full=Y directory=DATA_PUMP_DIR dumpfile=exp_CM.dmp logfile=exp_CM.log

Copy the exp_CM.dmp file to 11g server in the directory present, then create the tablespaces in 11g database which are not present.

example:
CREATE TABLESPACE <Tablespace_name> DATAFILE '<path>' SIZE 10M AUTOEXTEND   ON ;

now import it
export ORACLE_SID=<SID>
impdp system/**** schemas==<list of users which you want to export> directory=DATA_PUMP_DIR dumpfile=exp_CM.dmp logfile=imp_CM.log

check this doc for reference
http://blog.oraclecontractors.com/?p=626

http://www.oracle-base.com/articles/10g/oracle-data-pump-10g.php

http://www.oracle.com/technetwork/issue-archive/2009/09-jul/datapump11g2009-quickstart-128718.pdf
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
pablouruguay

ASKER
i do this. and i have in the new server. Invalid username and passwords when i try to enter my software.
SOLUTION
slightwv (䄆 Netminder)

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
ASKER CERTIFIED SOLUTION
Praveen Kumar Chandrashekatr

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
pablouruguay

ASKER
In the new server 11g have this users.

SQL> select username from dba_us
SSYS','DBSNMP','ORACLE_OCM','OUT

USERNAME
------------------------------
MGMT_VIEW
SYSMAN
SHERATONC
FLOWS_FILES
MDSYS
ORDSYS
EXFSYS
WMSYS
APEX_030200
OWBSYS_AUDIT
WKSYS

USERNAME
------------------------------
WK_TEST
ORDDATA
CTXSYS
ANONYMOUS
XDB
WKPROXY
ORDPLUGINS
OWBSYS
SI_INFORMTN_SCHEMA
OLAPSYS
SCOTT

USERNAME
------------------------------
XS$NULL
BI
PM
MDDATA
IX
SH
DIP
OE
APEX_PUBLIC_USER
HR
SPATIAL_CSW_ADMIN_USR

USERNAME
------------------------------
SPATIAL_WFS_ADMIN_USR

34 rows selected.

SQL>


and in the old server

SQL>  select username from dba
OSSYS','DBSNMP','ORACLE_OCM','

USERNAME
------------------------------
MGMT_VIEW
SYSMAN
OLAPSYS
SI_INFORMTN_SCHEMA
ORDPLUGINS
WKPROXY
XDB
ANONYMOUS
CTXSYS
WK_TEST
WKSYS

USERNAME
------------------------------
WMSYS
DMSYS
EXFSYS
ORDSYS
MDSYS
HR
OE
DIP
SH
IX
MDDATA

USERNAME
------------------------------
PM
BI
SCOTT
SHERATONC

26 rows selected.




and the line to export i use this

expdp system/**** full=Y directory=DATA_PUMP_DIR dumpfile=exp_CM.dmp logfile=exp_CM.log
Praveen Kumar Chandrashekatr

then how did you import in new server full or schema level?

did you check all the users present in old server are also present in new server?

also if possible can you share the import log.
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes
SOLUTION
slightwv (䄆 Netminder)

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.