Can any one please complete the LOG PORTION OF EXPORT (i.e. where I have log=/u02/ .................)
and explain that to me?
Then show me an example of how you will import the above exported file to another database assuming it has already being FTPed to that database
you can use commit=n either i) if you're importing into a table which already has data ii) You have Rollback segments big enough to cope with the load.
then just run:
imp parfile=parfilename
One other thing - If you're importing in direct more (because that is the way you're export was done), you must be sure that you have all you're character sets set correctly.
Are the two database's the same NLS_ ?
Make sure the environment variable NLS_LANG is the same as your database setup too, or you'll get an error when trying to import.
Dorothy,
In your export parfile, you have 'ignore=y'
Ignore is an import parameter not export.
To get a list of export parameters do
exp help=y
for import parameters
imp help=y
Bookmarks