oracle import error -
while importing dump file oracle 11gr2 getting error please suggest way resolve this
*warning: objects exported d7idmp, not import done in we8mswin1252 character set , al16utf16 nchar character set export client uses we8iso8859p1 character set (possible charset conversion) . importing d7idmp's objects migrate . . importing table "txalltxts" 245628 rows imported . . importing table "txauth" 377 rows imported . . importing table "txbaimert" 244 rows imported . . importing table "txbaresc" 178 rows imported . . importing table "txboiler" 458940 rows imported . . importing table "txclasses" 980 rows imported . . importing table "txclosedperiods" 1 rows imported . . importing table "txcompanies" 1 rows imported . . importing table "txconclauses" 187 rows imported imp-00017: following statement failed oracle error 959: "create table "txconfigsettings" ("cfs_code" varchar2(20), "cfs_rcode" varchar2(2" "0)) pctfree 10 pctused 40 initrans 1 maxtrans 255 storage(initial 16384 fr" "eelists 1 freelist groups 1 buffer_pool default) tablespace "mp5text" loggi" "ng nocompress lob ("cfs_xmlconfig") store (tablespace "mp5text" enable " "storage in row chunk 8192 pctversion 10 nocache storage(initial 65536 free" "lists 1 freelist groups 1 buffer_pool default))" imp-00003: oracle error 959 encountered ora-00959: tablespace 'mp5text' not exist* as per alex comments tried other attributes of imp resulted someother error
the command run
imp fromuser=d7idmp touser=&&from_user file=test.dmp log= test.log ignore=y transport_tablespace = y tablespaces = mp5text the error is
import done in we8mswin1252 character set , al16utf16 nchar character set export client uses we8iso8859p1 character set (possible charset conversion) imp-00053: import mode incompatible export dump file imp-00000: import terminated unsuccessfully
if able use datapump instead of old imp/exp tools, can remap tablespaces (and other things) on fly.
if not, usual way deal manually create table in new tablespace, , run imp ignore=y doesn't complain object exists.
you can ddl table - old tablespace - running imp indexfile=<file>. give text file ddl tables , indexes, table commands commented out rem. can extract bits need , edit them required new database.
if haven't already, @ import parameters in documentation.
Comments
Post a Comment