In my windowsNT box there was one database, now due to disk crash the database is not there. I have installed windowsNT and Oracle. Now i want to restore whole DB with export backup(latest one), but i don't know the structure of earlier DB (datafiles path and all) so How do i proceed with import ??
Hi,
datafiles paths are not important here.
You have to create all tablespaces that were in the old database.
In order to find out their names you may directly look in the dumpfile with an editor or use
Code:
imp user/pwd full=y indexfile=schema.sql
In the schema.sql you'll see the create statements for all objects with tablespace names.
HTH
Ales The whole difference between a little boy and an adult man is the price of toys
In the schema.sql you'll see the create statements for all objects with tablespace names
*************************************************
where to give this command, I think it will start importing data. How can i know the tablespace names and size from export.dmp file ??
Upeshp
-----------------------------------------
where to give this command, I think it will start importing data. How can i know the tablespace names and size from export.dmp file ??
-----------------------------------------
You can not find the tablespace related info from the export dump. Simply write IMP command on the C:\ .
Sandy
"Greatest Rewards come only with Greatest Commitments!"
Bookmarks