Link to home
Start Free TrialLog in
Avatar of Pablo Allietti
Pablo AlliettiFlag 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
Avatar of slightwv (䄆 Netminder)
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.
Avatar of Pablo Allietti

ASKER

the database is 156Mb and i need 1 user only this user system
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
mmm. this only export the user i need to export the database called CM
>>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.
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
i do this. and i have in the new server. Invalid username and passwords when i try to enter my software.
SOLUTION
Avatar of slightwv (䄆 Netminder)
slightwv (䄆 Netminder)

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
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
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.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial