Link to home
Start Free TrialLog in
Avatar of xoxomos
xoxomos

asked on

Import "Skipping"

I exported from a 32 bit RH 2.1 server with 9.2.0.5.0 to a 64 bit machine with RH 3 with 9.2.0.4.0.
The tables don't appear after the import.  The logfiles say 'skipping'.  Any idea why its skipping?


Connected to: Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production

Export file created by EXPORT:V09.02.00 via conventional path
import done in US7ASCII character set and AL16UTF16 NCHAR character set
import server uses WE8ISO8859P1 character set (possible charset conversion)
 "CREATE TABLE "CHANGELOG" ("ELEMENTID" NUMBER(9, 0), "ACTION" NUMBER(1, 0)) "
 " PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(INITIAL 65536 FREELI"
 "STS 1 FREELIST GROUPS 1) TABLESPACE "OWB_REPOSITORY" NOLOGGING NOCOMPRESS"

. . skipping table "CHANGELOG"

 "GRANT DELETE ON "CHANGELOG" TO "OWB_OWB9I2""
 "GRANT INSERT ON "CHANGELOG" TO "OWB_OWB9I2""
 "GRANT SELECT ON "CHANGELOG" TO "OWB_OWB9I2""
 "GRANT UPDATE ON "CHANGELOG" TO "OWB_OWB9I2""
 "CREATE UNIQUE INDEX "CHANGELOG_PK" ON "CHANGELOG" ("ELEMENTID" )  PCTFREE 1"
 "0 INITRANS 2 MAXTRANS 255 STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS"
 " 1) TABLESPACE "INDX" NOLOGGING"
 "ALTER TABLE "CHANGELOG" ADD  CONSTRAINT "CHANGELOG_PK" PRIMARY KEY ("ELEMEN"
 "TID") USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 STORAGE(INITIAL 65536 "
 "FREELISTS 1 FREELIST GROUPS 1) TABLESPACE "INDX" NOLOGGING ENABLE "
 "CREATE TABLE "CLASSIFICATION_STORE" ("CLASSNAME" VARCHAR2(60) NOT NULL ENAB"
                                                              1,0-1         Top
 "38, 0) NOT NULL ENABLE, "ROLE_NAME" VARCHAR2(64) NOT NULL ENABLE, "TYPE_NAM"
 "E" VARCHAR2(64) NOT NULL ENABLE, "OBJECT_ID" NUMBER(38, 0), "DESCRIPTION" V"
 "ARCHAR2(4000))  PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(INITI"
 "AL 65536 FREELISTS 1 FREELIST GROUPS 1) TABLESPACE "OWB_REPOSITORY" LOGGING"
 " NOCOMPRESS"
. . skipping table "WMP_NAVIGATION_FAVORITES"

 "ALTER TABLE "WMP_NAVIGATION_FAVORITES" ADD  PRIMARY KEY ("FAVORITE_ID") USI"
 "NG INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 STORAGE(INITIAL 65536 FREELISTS"
 " 1 FREELIST GROUPS 1) TABLESPACE "OWB_REPOSITORY" LOGGING ENABLE"
 "ALTER TABLE "WMP_NAVIGATION_FAVORITES" ADD  UNIQUE ("USER_ID", "REPOSITORY_"
 "ID", "ROLE_NAME", "TYPE_NAME", "OBJECT_ID") USING INDEX PCTFREE 10 INITRANS"
 " 2 MAXTRANS 255 STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1) TABLES"
 "PACE "OWB_REPOSITORY" LOGGING ENABLE"
 "CREATE TABLE "WMP_NLS" ("NAME" VARCHAR2(128))  PCTFREE 10 PCTUSED 40 INITRA"
 "NS 1 MAXTRANS 255 STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1) TABL"
 "ESPACE "OWB_REPOSITORY" LOGGING NOCOMPRESS"
. . skipping table "WMP_NLS"

 "CREATE TABLE "WMP_PREFERENCES" ("PATH" VARCHAR2(256) NOT NULL ENABLE, "LEVE"
 "L_TYPE" VARCHAR2(4) NOT NULL ENABLE, "LEVEL_ID" NUMBER(38, 0) NOT NULL ENAB"
 "LE, "NAME" VARCHAR2(256) NOT NULL ENABLE, "VALUE" VARCHAR2(256))  PCTFREE 1"
 "0 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(INITIAL 65536 FREELISTS 1 FREE"
 "LIST GROUPS 1) TABLESPACE "OWB_REPOSITORY" LOGGING NOCOMPRESS"
. . skipping table "WMP_PREFERENCES"
Avatar of TheGoToGuy
TheGoToGuy

You could ensure that the target user that you are importing into exists already and has a default tablespace other than SYSTEM or TEMP.  Also, check your parameter file to see if "SHOW=Y" is set.  You didn't say what command line syntax you used. What were the userids involved? Who was the "FROMUSER" and "TOUSER"?  Did you do the export/import via the OEM GUI or the command line? Your posting did not show any error messages when the GRANT was done on the CHANGELOG table. If the table did not exist then there would be an error message stating that the object does not exist. Since there are no such error messages in your posting, the objects should exist. Try checking the catalog for the objects by doing a simple query.

SELECT object_name, object_type, owner from dba_objects where object_name = 'CHANGELOG';
 
Avatar of xoxomos

ASKER

To export:


FILE=owb9i2.dmp
OWNER=owb9i2
GRANTS=Y
ROWS=Y
LOG=owb9i2.xport.log

From the command line
exp owb9i2/xxxxx parfile=owb-parfile.dat

Exported with some warnings about questionable statistics.
Avatar of xoxomos

ASKER

On the import

FILE=owb9i2.dmp
SHOW=Y
GRANTS=Y
TOUSER=owb9i2
TABLES=(*)
ROWS=y
LOG=owb9i2-import.log
~
From the command line imp owb9i2/xxxxx parfile=import-parfile.dat
Avatar of xoxomos

ASKER

~
[oracle@dwrep export-import]$ sqlplus

SQL*Plus: Release 9.2.0.4.0 - Production on Thu Sep 30 15:14:53 2004

Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.

Enter user-name: sys /as sysdba
Enter password:

Connected to:
Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production

SQL> select object_name, object_type, owner from dba_objects where object_name =
 'CHANGELOG';

no rows selected
ASKER CERTIFIED SOLUTION
Avatar of TheGoToGuy
TheGoToGuy

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
Avatar of xoxomos

ASKER

Mil gracias!