PT recover from .dmp file?

Hi,
All of a sudden PT crashed and prompted me to save the dump file, do anyone know how to recover  my topology from .dmp file?
Thanks in advance.
Regards,
Chandu       

Looking at the screenshot you posted above, it suggests the .dmp is a diagnostic file which will allow someone with knowledge to find out why PT crashed. It makes no mention of the actual topology being saved into or with the .dmp file.
I would suggest that unless you saved the topology, you will have to recreate it.

Similar Messages

  • Problem in importing from dmp file

    Hi ,
    I am facing problem while importing from dmp file on unix server
    Error is as follows :
    Export file created by EXPORT:V08.01.07 via conventional path
    IMP-00013: only a DBA can import a file exported by another DBA
    IMP-00000: Import terminated unsuccessfully
    Export taken was with user xxx@yyy
    import command is : imp xxx/ppp file=abc.dmp TABLES=xxx.table1 ignore=y feedback=500
    please help me out.
    Atul Chougule

    I tried with FROM USER / TO USER , but the result is same.
    $ imp uuu/ppp file=aaa.dmp fromuser=uuu touser=uuu ignore=Y
    Import: Release 8.1.7.3.0 - Production on Thu Jun 15 06:44:49 2006
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    Connected to: Oracle8i Enterprise Edition Release 8.1.7.3.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.3.0 - Production
    Export file created by EXPORT:V08.01.07 via conventional path
    IMP-00013: only a DBA can import a file exported by another DBA
    IMP-00000: Import terminated unsuccessfully
    I am stucked up ,Dont know what to do .

  • Only to import  JAVA CLASS  and JAVA SOURCE  from .DMP file using IMPDP

    hi,
    I have a schema X, In that schema some of the *"JAVA CLASS" and "JAVA SOURCE"* objects are missing ..
    The procedures ,functions..etc objects were updated at X schema..
    I have 1 dmp file of Y schema , containing the missing "JAVA CLASS" and "JAVA SOURCE" s.. Can I import the the same to the schema X using IMPDP
    i tried using INCLUDE clause but it is not working
    eg:
    impdp john1/john1@me11g22 directory=datadump dumpfile=DEVF2WAR.DMP remap_schema=devf2war:john INCLUDE="JAVA CLASS","JAVA CLASS"but error..
    ORA-39001: invalid argument value
    ORA-39041: Filter  "INCLUDE" either identifies all object types or no object types.regards,
    jp

    Double post: IMPDP to import  JAVA CLASS  and JAVA SOURCE from .DMP file
    Already replied.
    Regards
    Gokhan

  • How to insert data from *.dmp file to  oracle 11g using Oracle SQL Develope

    hi
    i backup my database using PL/SQL developer and made *.dmp file
    how to insert data from *.dmp file to oracle 11g using Oracle SQL Developer 2.1.1.64
    and how to make *.dmp file from sql*plus ?
    thanks in advance

    Pl/Sql developer has a config window, there you choose the exec to do the import/export.
    Find it and his home version, it may be exp or expdp, the home version is the version of the client where the exp executable is.
    Then use the same version of imp or impdp to execute the import, you do not need to use Oracle SQL Developer 2.1.1.64. If you want to use it, you must have the same version in the oracle home that exp/imp of sql developer use.

  • Import Data from DMP file

    I export data and create a DMP file on daily basis
    I import data from this DMP to an other computer but some data import duplicate records.
    I want to aviod duplicate records
    what should I do

    You receive duplicate errors when some unique key in the record (probably but not necessarily the primary key) already exists with a value that duplicates a value already in the database. You have at least 3 options.
    1) Ignore the errors. You will get lots of errors and the duplicates will not be imported.
    2) Delete all records from the tables before you do the import. Old data will be lost, but you will get no errors.
    3) Use fromuser= and touser= to put the data into a different schema then use a merge to update the table data.
    By the way this is not the correct forum for this question.

  • Recover from log files

    Hi,
    My question is silly. How do you recover (load database) from existing files that were checkpointed, database itself wasn't closed. Can't find a post about that.
    I tried setting envConfig.setConfigParam("je.cleaner.expunge", "false");
    thanks

    In JE, all you need to do to recover the environment is to reinstantiate the Environment object. (i.e. yourEnv = new Environment(...)) We do talk about recovery as a specific phase in various docs, in order to try to explain some of what is happening under the covers. For the user, all you have to do is "new Environment(...)" whether the environment is brand-new or being re-opened.
    You don't really want to set je.cleaner.expunge to false, unless you're doing some debugging. When that parameter is set, JE will rename instead of remove obsolete log files, and your disk space usage will grow. It's really meant as a debugging option.

  • CSV from DMP file

    Dear Masters/Gurus/All,
    We are using oracle 10.2.04 version on HP UNIX.
    We have a specific requirement to prepare CSV file from oracle dump(DMP File).
    Please let me know the process.
    Thanks,
    KODS

    KODS wrote:
    Dear All,
    Thanks for reply and kindly accept my apologies for delayed in reply.
    let me explain little background.
    In a telecom domain for every customer there are multiple records exists with respect to calls on any particular day if you consider. On few tables the production dba will take the schema/table backup. But the end users/customer care people's application is designed in such a way that, it can read data from CSV format.
    Because of this reason I like to know the process of reading data from dump file and convert it into CSV file.
    Thanks,
    Kods
    Edited by: KODS on Apr 1, 2013 4:33 PM
    Edited by: KODS on Apr 1, 2013 4:34 PMDoesn't matter. A dmp file can ONLY be read by the import utility. If you want a csv file, you'll need to import the dump file back into a database, then create your csv file from there.
    Or create the csv file instead of the dump file in the first place.

  • IMPDP to import  JAVA CLASS  and JAVA SOURCE from .DMP file

    hi,
    I have a schema X, In that schema some of the *"JAVA CLASS" and "JAVA SOURCE"* objects are missing ..
    The procedures ,functions..etc objects were updated at X schema..
    I have 1 dmp file of Y schema , containing the missing "JAVA CLASS" and "JAVA SOURCE" s.. Can I import the the same to the schema X using IMPDP
    i tried using INCLUDE clause but it is not working
    eg:
    impdp john1/john1@me11g22 directory=datadump dumpfile=DEVF2WAR.DMP remap_schema=devf2war:john INCLUDE="JAVA CLASS","JAVA CLASS"but error..
    ORA-39001: invalid argument value
    ORA-39041: Filter  "INCLUDE" either identifies all object types or no object types.regards,
    jp

    Hello,
    You should type JAVA_CLASS and JAVA_SOURCE (use underscore instead of space).
    impdp john1/john1@me11g22 directory=datadump dumpfile=DEVF2WAR.DMP remap_schema=devf2war:john INCLUDE="JAVA_CLASS","JAVA_CLASS"Best Regards,
    Gokhan Atil
    If this question is answered, please mark appropriate posts as correct/helpful and the thread as closed. Thanks

  • How to recover from mdf file (SQL Server 2000)

    Hi,
    My database corrupted because when I was running an update query, there is a power failure. After the computer booted, I cannot open the database anymore, it just not responding. Then I stop the sql server service, and tried to rename the .mdf and .ldf. After that it worked normally, but I need the data from the corrupted mdf file, I tried to attach the database but it just hanged. I even tried to attach without the .ldf file but it didn't work either, so I concluded that the problem is with the mdf file.
    Is there any way to recover my data ??
    Thanks in advance
    Regards,
    Edwin

    Try this undocumented stuff provided by Kevin [MS].
    ==========
    1. Back up the .mdf/.ndf files at first!!!
    2. Change the database context to Master and allow updates to system tables:
    Use Master
    Go
    sp_configure 'allow updates', 1
    reconfigure with override
    Go
    3. Set the database in Emergency (bypass recovery) mode:
    select * from sysdatabases where name = '<db_name>'
    -- note the value of the status column for later use in # 6
    begin tran
    update sysdatabases set status = 32768 where name = '<db_name>'
    -- Verify one row is updated before committing
    commit tran
    4. Stop and restart SQL server.
    5. Call DBCC REBUILD_LOG command to rebuild a "blank" log file based on the
    suspected db.
    The syntax for DBCC REBUILD_LOG is as follows:
    DBCC rebuild_log('<db_name>','<log_filename>')
    where <db_name> is the name of the database and <log_filename> is
    the physical path to the new log file, not a logical file name. If you
    do not
    specify the full path, the new log is created in the Windows NT system
    root
    directory (by default, this is the Winnt\System32 directory).
    6. Set the database in single-user mode and run DBCC CHECKDB to validate
    physical consistency:
    sp_dboption '<db_name>', 'single user', 'true'
    DBCC checkdb('<db_name>')
    Go
    begin tran
    update sysdatabases set status = <prior value> where name = '<db_name>'
    -- verify one row is updated before committing
    commit tran
    Go
    7. Turn off the updates to system tables by using:
    sp_configure 'allow updates', 0
    reconfigure with override
    Go
    ============

  • How to recover from readonly file system?

    hi
    we are using EBS R12 RUP 6.is it possible to recover one of our instance from read only file system partition?
    scenario is :
    Had a conference with customer and found the below :
    Unable to start/run any "AD" scripts under $ADMIN_SCRIPTS_HOME". For example : Unable to start the concurrent manager using adcmctl.sh script. Below error can be seen :
    Permission denied: Could write in "adcmctl.txt" : read only file system.
    We have tried to change the permission but the same "read only file system was coming". To confirm the issue we tried to create a directory or file using "mkdir" and "touch" command respectively but got the same error. Customer has confirmed that it was 15 days back they found it working after that its not working.
    Explained to customer that the issue is not with EBS but with some other operating system related. Please check with your OS administrator and make sure that this read only file system error will not come.
    Action Plan
    ================
    1.) Check with your OS administrator and resolve the "Read only file system error". It is a OS permission error. Update the SR once it got resolved.rgrds

    new2appsdba wrote:
    what do you suggest certain and immediate disaster recovery option (till date work and setup + data) in EBS R12 ??
    bsically asking it for future planing ....Working, well-tested, and frequently-tested backups. :-)
    Sorry to be glib, but there's a lot we don't know about the architecture of your system, which makes it difficult to provide specific advice. You haven't indicated how much of your system is hosted on the filesystem that has been set readonly. Is it just the INST_TOP? Full applications techstack? Database? I'm guessing not the database, or you wouldn't be asking about starting apps tier components, you'd be asking about database recovery, and the problem wouldn't have gone unnoticed for 15 days. If you're just looking at the apps tier filesystem, or a portion of it (such as INST_TOP, which is sometimes separated from the rest of the apps install), you need to decide if you want to:
    1) Roll back your entire system to the point when the filesystem was set readonly, or
    2) Accept the loss of log files, etc. on the apps tier side, decide that what's in the database is more valuable, and move on from there. Assuming the fsck and subsequent filesystem repair is successful, of course. ;-)
    These posts from Steven Chan might help you to plan DR and availability for EBS:
    Maximum Availability Architecture: Oracle E-Business Suite Release 12
    Maximum Availability Architectures and the E-Business Suite
    Regards,
    John P.
    http://only4left.jpiwowar.com

  • Recover from missing files(redo log file/control file) and state of the DB

    Hello,
    i hv go through the doc. as well. But have some doubts what will happen in each on these situations.
    Pls help me to clarify these!
    Scenario is like this;
    hv 3 redo log files - multiplxed
    hv 3 control files - multiplxed
    - What will happen if 1 redo log file missing when starting the DB?
    - What will happen if 1 redo log file missing when using(performing operations) the DB?
    (will it recover automatically/db abort/even redo log lost will the DB run as usual... ?)
    -How to recover this lost redo log?
    - What will happen if 1 control file missing when starting the DB?
    - What will happen if 1 control file missing when using(performing operations) the DB?
    (will it recover automatically/db abort/even control file lost will the DB run as usual... ?)
    -How to recover this lost redo log?
    thanks

    - What will happen if 1 redo log file missing when starting the DB?IF you have multiplexed the members you can drop the lost file and will be able to open the DB
    What will happen if 1 redo log file missing when using(performing operations) the DB?Again if multiplexed it will drop a warinign in the alert log and contnue to write on othere members
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/recoscen.htm#sthref1385
    - What will happen if 1 control file missing when starting the DB?Just remove the entry from the init.ora and start the DB
    What will happen if 1 control file missing when using(performing operations) the DB?Will shutdown

  • Import Database from dmp file

    Dear,
    I have export a database in Oracle 10g release 1 then can’t import the database successfully in oracle 9i release 1 because some errors are generated. Please help me how can I import the dump file into oracle 9i database without warnings.

    Use this work around
    Invoke export (exp) from 9i oracle home to export 10g database then import it in 9i database.
    Virag

  • How to extract data from dmp file to oracle express edition database

    Hi,
    I wanted to extract a oracle dump file in oracle express edition database. Is it possible? If yes, then can anyone please guide me how to do it?
    Thanks

    Hi,
    This might help
    Backup/Export Question!
    Br,Jari

  • Import limited rows from dmp file

    I am using oracle 10g. Due to an error, I have to skip a particular row from import. I've already imported the rows before the one to be skipped. Plz suggest how to import the remaining rows.

    user8485273 wrote:
    I am using oracle 10g. Due to an error, I have to skip a particular row from import. I've already imported the rows before the one to be skipped. Plz suggest how to import the remaining rows.Hi,welcome to this forum.
    When importing which error do you get ?

  • Error occured when importing data from dmp

    Hello friends
    when i am importing data from dmp file
    the following error occured
    Please help me to solve this
    Error message :
    Export file created by EXPORT:V09.02.00 via conventional path
    import done in WE8PC850 character set and AL16UTF16 NCHAR character set
    export client uses US7ASCII character set (possible charset conversion)
    Import terminated successfully without warnings.

    This is not really an error message but a information about possible character conversion from US7ASCII to WE8PC850 which should NOT be an issue since all US7ASCII characters are in most WExxx character sets.
    Message was edited by:
    Pierre Forstmann

Maybe you are looking for

  • External hard drive will not eject

    Since upgrading to ML my small "my passport" hard drive will not eject. First it gives me the message "the disk couldnt be ejected because Safari is using it and to close Safari and try again". (not sure why safari would be using it..) When I close s

  • On the 3rd day, my battery became FIRE HOT and LOST CHARGE QUICKLY

    First, I LOVE my iPhone 4, it's amazing, but I did want to at least share what happened to me this week. My iPhone 4 battery started going from 100% charge to 40% in 90-minutes - It was only in standby mode. The phone became VERY HOT, especially arou

  • Time Stamp against Master Data

    Hi, Is there any BADI to identify when (date & time) the master data field updated individually. Example: "ABC" company is having 2 user interfaces to update the Master Data a) CRM Call Centre and b) Disconnected Mobile Client (Mobile Client will dow

  • [solved] urxvt problem

    I was playing around with my .Xdefaults today, playing around with different fonts, and now urxvt does not look right. It worked a second ago with the update .Xdefaults, but when I open one more term it looks really small. Even when I enlarge the ter

  • Can I make business fliers with Elements 12?

    I just want to know if I am able to do this or just buy photoshop cs6 from amazon?