Extracting dmp files

- I want to extract my dmp files in the windows based information, how it can be done???
- Secondly, i also want to extract my dmp file in the unix based environment. For this extraction, what should i do??
Plz anyone help.
Regards
Salman

If you are working with Oracle9i you can apply this command in order to have information about how to carry out an import:
oracle@spirit:~/dumps> imp help=y
Import: Release 8.1.7.0.0 - Production on Mon Oct 20 00:53:28 2003
(c) Copyright 2000 Oracle Corporation. All rights reserved.
You can let Import prompt you for parameters by entering the IMP
command followed by your username/password:
Example: IMP SCOTT/TIGER
Or, you can control how Import runs by entering the IMP command followed
by various arguments. To specify parameters, you use keywords:
Format: IMP KEYWORD=value or KEYWORD=(value1,value2,...,valueN)
Example: IMP SCOTT/TIGER IGNORE=Y TABLES=(EMP,DEPT) FULL=N
or TABLES=(T1:P1,T1:P2), if T1 is partitioned table
USERID must be the first parameter on the command line.
Keyword Description (Default) Keyword Description (Default)
USERID username/password FULL import entire file (N)
BUFFER size of data buffer FROMUSER list of owner usernames
FILE input files (EXPDAT.DMP) TOUSER list of usernames
SHOW just list file contents (N) TABLES list of table names
IGNORE ignore create errors (N) RECORDLENGTH length of IO record
GRANTS import grants (Y) INCTYPE incremental import type
INDEXES import indexes (Y) COMMIT commit array insert (N)
ROWS import data rows (Y) PARFILE parameter filename
LOG log file of screen output CONSTRAINTS import constraints (Y)
DESTROY overwrite tablespace data file (N)
INDEXFILE write table/index info to specified file
SKIP_UNUSABLE_INDEXES skip maintenance of unusable indexes (N)
ANALYZE execute ANALYZE statements in dump file (Y)
FEEDBACK display progress every x rows(0)
TOID_NOVALIDATE skip validation of specified type ids
FILESIZE maximum size of each dump file
RECALCULATE_STATISTICS recalculate statistics (N)
VOLSIZE number of bytes in file on each volume of a file on tape
The following keywords only apply to transportable tablespaces
TRANSPORT_TABLESPACE import transportable tablespace metadata (N)
TABLESPACES tablespaces to be transported into database
DATAFILES datafiles to be transported into database
TTS_OWNERS users that own data in the transportable tablespace set
Import terminated successfully without warnings.
oracle@spirit:~/dumps>
Joel P�rez

Similar Messages

  • How to extract Exadata .dmp files into older versions of Oracle

    Hi, Our customer has provided exadata .dmp files ( HCC compressed) and I don't have access to Oracle Exadata - are there ways or utiltiies to extract these dumps to Older versions of Oracle? or even Oracle Express.
    Thanks/Prasad

    Hi,
    To Export form Exadata (DB 11g R2) and Import into Older versions of Oracle (Ex. 10g)
    You have to use exp utility which is version 10g and imp by utility 10g
    Ex.  use oracle 10 client to connect to Exadata and run exp cmd  then imp.
    BR
    Sami

  • Extract DDL from an exp dmp file

    One feature I would find handy is the ability to read an exp dmp file to extract DDL statements from it. Are there any plans to include such a tool?

    I assume you are using traditional export/import.
    So run the import with show=Y and it will write all the DDLs in the logfile.
    Amardeep Sidhu

  • Showing DMP file information in my application

    I would also like to be able to show information on the .DMP files located in C:\Windows\MiniDump or c:\windows\memory.dmp - i.e. in same sort of way as
    http://www.nirsoft.net/utils/blue_screen_view.html  and
    http://www.resplendence.com/whocrashed do it
    I have managed to do it for .WER files as per other forum post - but it is not so simple with .DMP files as you cannot simply see lines of information inside them - but it must be possible as the above tool Blue Screen View is only small/simple and somehow
    can show you information like in screenshot below - I would like to achieve something similar to that - so basically you can see list of the dmp files with date and at least information such as error (bug check string) and faulting module
    Any thoughts/ideas/guidance on how I could do this??
    Many thanks
    Darren Rose

    I have worked out how to achieve my requirements using files from the debugging tools download - still not sure how above programs do it without, but perhaps they have just integrated the files in their apps
    My code is below for anyone who is interested - probably not best code in world, but it does what I need
    It requires the following files from the standalone debugging tools (https://msdn.microsoft.com/en-US/windows/hardware/gg454513):-
    dbgeng.dll
    dbghelp.dll
    kd.exe
    symsrv.dll
    triage/triage.ini
    winext/ext.dll
    winext/kext.dll
    Imports System.IO
    Public Class Form1
    Dim ListViewDMPlog As ListViewItem = Nothing
    Dim arrayDMPlog(6) As String
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    End Sub
    Private Sub btnScanDMPFiles_Click(sender As Object, e As EventArgs) Handles btnScanDMPFiles.Click
    ' disables scan button
    btnScanDMPFiles.Enabled = False
    ' create listview for showing dmp file details
    lvwDMP.View = View.Details
    ' Clear existing items from listview
    lvwDMP.Clear()
    ' Create columns and set width
    lvwDMP.Columns.Add("Crash Time", 120)
    lvwDMP.Columns.Add("File Name", 150)
    lvwDMP.Columns.Add("Caused By", 100)
    lvwDMP.Columns.Add("Error", 220)
    lvwDMP.Columns.Add("System Uptime", 100)
    lvwDMP.Columns.Add("Full Path", 250)
    lvwDMP.FullRowSelect = True
    Try
    ' Code to collect all .dmp files in c:\windows\minidump and add them to a list - courtesy of Frank L Smith :)
    Dim DMPFileList As New List(Of String)
    Dim dirPath As String = "C:\Windows\MiniDump"
    Dim di As New IO.DirectoryInfo(dirPath)
    If Directory.Exists(dirPath) Then
    Dim qry As IOrderedEnumerable(Of String) = From fi As IO.FileInfo In di.EnumerateFiles("*.dmp") Select fi.FullName Order By FullName
    If qry IsNot Nothing AndAlso qry.Count > 0 Then
    DMPFileList = qry.ToList
    End If
    End If
    ' checks for memory.dmp in c:\windows and if exists then adds it to list
    If File.Exists("C:\windows\memory.dmp") Then
    DMPFileList.Add("C:\windows\memory.dmp")
    End If
    For Each Path As String In DMPFileList
    ' working cmd when run from cmd prompt to analyze dmp files (or can use cdb)
    ' kd -z C:\Windows\MiniDump\042414-24632-01.dmp -c "!analyze -v;q"
    ' alternative version which downloads symbols (not used as very slow, not reliable and often gives no more information anyway)
    ' kd -z C:\Windows\MiniDump\042414-24632-01.dmp -y "srv*Symbols*http://msdl.microsoft.com/download/symbols" -c "!symfix!analyze -v;q"
    ' N.B. for some reason -v was being interpreted as ûv - so replaced - with Chr(45)
    Dim myprocess As New Process()
    myprocess.StartInfo.FileName = My.Application.Info.DirectoryPath & "\DMP\kd"
    myprocess.StartInfo.Arguments = "-z " & Path & " -c ""!analyze " & Chr(45) & "v;q"""
    ' below version includes symbol download
    ' myprocess.StartInfo.Arguments = "-z " & Path & " -y ""srv*Symbols*http://msdl.microsoft.com/download/symbols"" -c ""!symfix!analyze " & Chr(45) & "v;q"""
    myprocess.StartInfo.UseShellExecute = False
    myprocess.StartInfo.RedirectStandardOutput = True
    myprocess.StartInfo.CreateNoWindow = True
    myprocess.Start()
    Dim output As String = myprocess.StandardOutput.ReadToEnd()
    Dim causedby As String = ""
    Dim bucketID As String = ""
    Dim bugcheckstr As String = ""
    Dim uptime As String = ""
    ' get date of .dmp file
    Dim filedate As String = System.IO.File.GetLastWriteTime(Path)
    arrayDMPlog(0) = filedate
    ' gets filename of .dmp file by extracting it from dump file path
    Dim filePath As String = Path
    Dim slashPosition As Integer = filePath.LastIndexOf("\")
    Dim filenameOnly As String = filePath.Substring(slashPosition + 1)
    arrayDMPlog(1) = filenameOnly
    ' get name of file which caused crash
    ' changed from Probably caused by to IMAGE_NAME as more accurate??!
    ' causedby = GetStringFromDMPFile(output, "Probably caused by")
    causedby = GetStringFromDMPFile(output, "IMAGE_NAME")
    arrayDMPlog(2) = causedby.Trim
    ' get default bucket ID or bugcheck string - if bugcheck contains a 0x value rather than a string then show bucket ID instead
    bucketID = GetStringFromDMPFile(output, "DEFAULT_BUCKET_ID")
    bugcheckstr = GetStringFromDMPFile(output, "BUGCHECK_STR")
    If bugcheckstr.Contains("0x") Then
    arrayDMPlog(3) = bucketID.Trim
    Else
    arrayDMPlog(3) = bugcheckstr.Trim
    End If
    ' get system uptime
    uptime = GetStringFromDMPFile(output, "System Uptime")
    arrayDMPlog(4) = uptime.Trim & " hours"
    ' adds full path of dump file
    arrayDMPlog(5) = Path
    'add items to listview
    ListViewDMPlog = New ListViewItem(arrayDMPlog)
    lvwDMP.Items.Add(ListViewDMPlog)
    Next
    ' enables scan button
    btnScanDMPFiles.Enabled = True
    Catch ex As Exception
    MsgBox(ex.Message)
    End Try
    End Sub
    ' Function to retrieve selected string (information) from chosen log file
    Private Function GetStringFromDMPFile(DMPFile As String, Text As String) As String
    Dim lines As String() = DMPFile.Split(New String() {vbLf}, StringSplitOptions.RemoveEmptyEntries)
    Dim value = ""
    For Each line As String In lines
    If line.StartsWith(Text) Then
    Dim infos As String() = line.Split(":")
    value = infos(1)
    End If
    Next
    Return value
    End Function
    Private Sub lvwDMP_ItemSelectionChanged(sender As Object, e As ListViewItemSelectionChangedEventArgs) Handles lvwDMP.ItemSelectionChanged
    tbDMPDetails.Clear()
    ' N.B. using more switches here so can show more detailed report i.e. ;r;kv;lmnt
    If Me.lvwDMP.SelectedItems.Count > 0 Then
    Dim myprocess As New Process()
    myprocess.StartInfo.FileName = My.Application.Info.DirectoryPath & "\DMP\kd"
    myprocess.StartInfo.Arguments = "-z " & Me.lvwDMP.SelectedItems(0).SubItems(5).Text & " -c ""!analyze " & Chr(45) & "v;r;kv;lmnt;q"""
    myprocess.StartInfo.UseShellExecute = False
    myprocess.StartInfo.RedirectStandardOutput = True
    myprocess.StartInfo.CreateNoWindow = True
    myprocess.Start()
    Dim lines As String() = myprocess.StandardOutput.ReadToEnd().Split(New String() {vbLf}, StringSplitOptions.RemoveEmptyEntries)
    Dim value = ""
    For Each line As String In lines
    tbDMPDetails.AppendText(line & vbCrLf)
    Next
    End If
    ' scrolls back to top of text box
    tbDMPDetails.SelectionStart = 0
    tbDMPDetails.ScrollToCaret()
    End Sub
    End Class
    Darren Rose

  • Extracting .xls file from an FTP site

    Hi there,
    I'm trying to run a DI solution that is extracting a file from a FTP site. DI can see the file but it gives me an error saying that:
    FTP could not transfer file <FTP site/myfile.xls> from host <IP Address>: <>. Please ensure that the FTP relative path for the SAP R/3 working directory is set correctly such that the data file is accessible to the FTP
    Can someone please help with this.
    Thank you.
    Gsecure

    Hi,
    thats SP1 for DS XI 3.2
    I think there is no delta from XI 3.2 to XO 3.2 SP1 what means you have to do a fresh install and upgrade repo.
    But you better doublecheck before but i think there is no delta.
    Regards
    -Seb.

  • SAP Business One  8.8Client throughs a .Dmp file

    Hi Experts,
    When we click Set Authorize Button  in Report & Layout Manager  ,SAP Business One  8.8Client throughs a .Dmp file Error and Closes Itself Immediately.
    Then Also When we try To Open Reports Some times It Throughs The .Dmp File Error And Closes Immediately.
    Please Help me to resolve this Problem As Soon.
    Regards,
    M.Senthilnathan .

    Hi Mr.Gordon,
    Our Patch Level is :12
    SAP Business One 8.8 ,SP:000,
    SAP Client Throughs the .dmp error in All our Client Systems.
    And in server System too this error is coming and Closes itself Automatically.
    We have Tried Cleaning Temp File Folders.
    And We Have deleted the .Dmp files generated in Local Settingss\Application Data\SAP folder.
    After Reports are opening normally .Again After Some times this .Dmp is created and Client Closes itself.
    And We couldn't use Set Authorize In Report & Layout for Each Users.
    Client always closes when we click Set Authorise in Report & layout Manager, by generating .dmp file  in Local Settingss\Application Data\SAP folder.
    Regards,
    M.Senthilnathan

  • How can i import a dmp file.

    Hi
    i am uzma. i m using oracle 8i. i m facing a big
    problem in import/ export utitlity.
    Description of my problem
    i created 4 users and grant them dba role.
    now i want to export only one user named DBC that user is very
    important and contains 7 tables and 25,000 records.
    when i start exporting user dbc it export all the user eg
    system, sysdba, scott, dbc, uzma, other....
    and i received this message that export terminated successfully.
    but when i import abc.dmp file in another computer i recevied
    such type of messages.
    * unrecongnized Export file or these obecject are already exsist.
    sholud i drop all users except system, scott, dbc
    what should i do plz help me in this regard and tell me the
    right way to export and import.
    with lots of regards
    a helpless user

    if you run export as a user with DBA privs, you can export only specific users that you need:
    Export file: EXPDAT.DMP >
    (1)E(ntire database), (2)U(sers), or (3)T(ables): (2)U > U
    Export grants (yes/no): yes >
    Export table data (yes/no): yes >
    Compress extents (yes/no): yes >
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    server uses AL32UTF8 character set (possible charset conversion)
    About to export specified users ...
    User to be exported: (RETURN to quit) > scott
    User to be exported: (RETURN to quit) >
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user SCOTT
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user SCOTT
    About to export SCOTT's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    . about to export SCOTT's tables via Conventional Path ...
    . . exporting table                          BONUS          0 rows exported
    EXP-00091: Exporting questionable statistics.
    . . exporting table                           DEPT          4 rows exported
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table                            EMP         14 rows exported
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table                       SALGRADE          5 rows exported
    EXP-00091: Exporting questionable statistics.
    . exporting synonyms
    . exporting views
    . exporting stored procedures
    . exporting operators
    . exporting referential integrity constraints
    . exporting triggers
    . exporting indextypes
    . exporting bitmap, functional and extensible indexes
    . exporting posttables actions
    . exporting materialized views
    . exporting snapshot logs
    . exporting job queues
    . exporting refresh groups and children
    . exporting dimensions
    . exporting post-schema procedural objects and actions
    . exporting statistics
    Export terminated successfully with warnings.
    F:\>When you want to import to other database, have that user created already with correct privs, and then do the import:
    Import file: EXPDAT.DMP >
    Enter insert buffer size (minimum is 8192) 30720>
    Export file created by EXPORT:V10.02.01 via conventional path
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    import server uses AL32UTF8 character set (possible charset conversion)
    List contents of import file only (yes/no): no >
    Ignore create error due to object existence (yes/no): no >
    Import grants (yes/no): yes >
    Import table data (yes/no): yes >
    Import entire export file (yes/no): no >
    Username: scott
    Enter table(T) or partition(T:P) names. Null list means all tables for user
    Enter table(T) or partition(T:P) name or . if done:
    . importing SYS's objects into SYS
    . importing SCOTT's objects into SCOTT
    . . importing table                        "BONUS"          0 rows imported
    . . importing table                         "DEPT"          4 rows imported
    . . importing table                          "EMP"         14 rows imported
    . . importing table                     "SALGRADE"          5 rows imported
    About to enable constraints...
    Import terminated successfully without warnings.
    F:\>Message was edited by:
    Kamal Kishore

  • Error in loading dmp file

    while loading a.dmp file into oracle in centos using impdp command following errors seen Can any body help me.....?
    Export: Release 10.2.0.1.0 - Production on Wednesday, 01 November, 2006 1:51:55
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    ORA-39002: invalid operation
    ORA-39070: Unable to open the log file.
    ORA-29283: invalid file operation
    ORA-06512: at "SYS.UTL_FILE", line 475
    ORA-29283: invalid file operation

    Hi;
    while loading a.dmp file into oracle in centos using impdp command following errors seen Can any body help me.....?Centos is not certified platform
    Export: Release 10.2.0.1.0 - Production on Wednesday, 01 November, 2006 1:51:55
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    ORA-39002: invalid operation
    ORA-39070: Unable to open the log file.
    ORA-29283: invalid file operation
    ORA-06512: at "SYS.UTL_FILE", line 475
    ORA-29283: invalid file operationSee:
    Export/Import DataPump Parameter DIRECTORY - How to Specify a Directory [ID 266875.1]
    ORA-39002,ORA-39070,ORA-29283 When Modifying The Group That Has Access To DataPump directory [ID 552783.1]
    Regard
    Helios

  • Error while trying to import .dmp file in oracle

    Hi,
    I am trying to import a .dmp file using impdp command. Whenever I try that I get following error logs:
    Import: Release 10.2.0.1.0 - Production on Wednesday, 27 July, 2011 19:22:18
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_FULL_01": system/******** DUMPFILE=HIST_IR_APR_2011.dmp
    Processing object type TABLE_EXPORT/TABLE/TABLE
    ORA-39083: Object type TABLE failed to create with error:
    ORA-00439: feature not enabled: Partitioning
    Failing sql is:
    CREATE TABLE "DBO"."HIST_IR" ("IR_ID" NUMBER(9,0), "ELS_ID1" NUMBER(9,0), "ELS_ID2" NUMBER(9,0), "ZONE_ID" NUMBER(2,0) NOT NULL ENABLE, "TYPE" NUMBER(2,0) NOT NULL ENABLE, "START_TIME" DATE NOT NULL ENABLE, "END_TIME" DATE NOT NULL ENABLE, "ROAD_NAME" VARCHAR2(50) NOT NULL ENABLE, "UP_POINT" NUMBER(4,2), "DN_POINT" NUMBER(4,2), "UP_LINK_ID" NUMBER(9,0) NOT NULL ENABLE, "DN_LINK_ID" NUMBER
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    ORA-39112: Dependent object type OBJECT_GRANT:"DBO" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    ORA-39112: Dependent object type OBJECT_GRANT:"DBO" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    ORA-39112: Dependent object type OBJECT_GRANT:"DBO" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
    ORA-39112: Dependent object type INDEX:"DBO"."INDX_HIST_IR_LOC_TYPE" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    ORA-39112: Dependent object type INDEX:"DBO"."INDX_HIST_IR_ROAD_NAME" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    ORA-39112: Dependent object type INDEX:"DBO"."INDX_HIST_IR_ELS_ID1" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    ORA-39112: Dependent object type INDEX:"DBO"."PK_HIST_IR" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    ORA-39112: Dependent object type INDEX:"DBO"."INDX_HIST_IR_START_TIME" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    ORA-39112: Dependent object type CONSTRAINT:"DBO"."PK_HIST_IR" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    Job "SYSTEM"."SYS_IMPORT_FULL_01" completed with 10 error(s) at 19:22:21
    Any idea how to get rid of the errors ?
    BR///
    Tayyab

    I also tried to open the .dmp file using Oracle 11g Enterprise Edition but kept getting following errors:
    Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_FULL_01": system/******** dumpfile=HIST_IR_APR_2011.dmp
    Processing object type TABLE_EXPORT/TABLE/TABLE
    ORA-39083: Object type TABLE failed to create with error:
    ORA-01918: user 'DBO' does not exist

  • Error while extracting XML file from the application server

    Hi ,
    I am writing a XML file into the application server, after which when i try to extract the file to the local server using the report - RFASLDPC ,
    the file is extracted, but with a '#' symbol at the first position.
    Because of which the XML File does not open. But after i open the file in notepad and manually delete the '#' symbol and then reopen the file, it works fine.
    Is there any way to remove the '#' symbol while extracting itself ??
    Thanks in advance,
    Vikas.

    Select the option "No Character Set Conversion" in stead of Code page 1100.
    However, I still have troubles -> the downloaded xml file misses a space on several places. This causes errors too.

  • Error while extracting zip file

    I am using the following code to extract zip files from jar file
    source = "zip/test.zip"
    destination = "c:\\"
    public void unzip(String source,String destination){
              try{
                   ZipInputStream in = new ZipInputStream( this.getClass().getResourceAsStream(source));
                   FileOutputStream fos = null;
                   ZipEntry ze = null;
                   File ff = null;
                   while ( (ze=in.getNextEntry() ) != null ){
                        System.out.println( "name=" + ze.getName() );
                        ff = new File( destination + ze.getName() );
                        if ( ze.isDirectory() ){
                             System.out.println("making "+ze.getName()+" dir ("+ ff.mkdirs() +")");
                        else{
                             fos = new FileOutputStream( ff );
                             byte[] buf = new byte[1024];
                             int len;
                             while ((len = in.read(buf)) > 0){
                                  fos.write(buf, 0, len);
                             fos.close();
                             System.out.println("wrote file "+ff.getPath()+" success=" + ff.exists() );
                   in.close();
              }catch(Exception e){
                   e.printStackTrace();
         }     But i found error in extracting zip file
    java.io.FileNotFoundException: C:\eclipse\.eclipseproduct (The system cannot find the path specified)
    I need some quick response on it.

    Nothing to do with the resource path....thats fine. Use the code below.....most likely this will fix it.......
    Added a check for directories that start with a ".".  The File utility probably thinks its a file, also added a try....check it does make the "." directories.........dont forget the dukes.
        ZipInputStream zis = null;
        FileOutputStream fos = null;
        try
          zis = new ZipInputStream( new FileInputStream( "C:\\your_path\\your_zipfile_or_jar.zip" ) );
          ZipEntry ze = null;
          File ff = null;
          while ( ( ze = zis.getNextEntry() ) != null )
            System.out.println( "name=" + ze.getName() );
            ff = new File( "C:\\your_path\\" + ze.getName() );
            if ( ze.isDirectory()  || ze.getName().startsWith("."))
              try{ System.out.println( "making " + ze.getName() + " dir (" + ff.mkdirs() + ")" ); }catch(Exception e2){}
            else
              fos = new FileOutputStream( ff );
              byte[] buf = new byte[1024];
              int len;
              while ( ( len = zis.read( buf ) ) > 0 )
                fos.write( buf, 0, len );
              fos.close();
              System.out.println( "wrote file " + ff.getPath() + " success=" + ff.exists() );
          zis.close();
        catch( Exception ex )
          ex.printStackTrace();
        finally
          try { zis.close(); }catch(Exception ex){}
          try { fos.close(); }catch(Exception ex){}
        }

  • Dmp file and blue screen error Windows 7

    Hi,
    Just wondering if someone can tell me how to read the dmp file created after the blue screen appears ?
    I have just recently upgraded my Toshiba P300 from Vista 64 bit to Windows 7 Home Prem 64 bit. 
    I dont know why Windows 7 keeps crashing and so far I have no idea of how to open the .dmp
    file (I have zipped the dmp file and attahced below).
    http://cid-7a99d6152c55359c.skydrive.live.com/self.aspx/.Public/minidump/022710-26223-01.zip
    The message that I been given so far says :
    Problem signature:
      Problem Event Name:                        BlueScreen
      OS Version:                                          6.1.7600.2.0.0.768.3
      Locale ID:                                             3081
      Additional information about the problem:
      BCCode:                                               a
      BCP1:                                                    FFFFF6FC40052000
      BCP2:                                                    0000000000000002
      BCP3:                                                    0000000000000000
      BCP4:                                                    FFFFF80002E62322
      OS Version:                                          6_1_7600
      Service Pack:                                       0_0
      Product:                                               768_1
      Files that help describe the problem:
      C:\Windows\Minidump\022710-26223-01.dmp
      C:\Users\Caroline\AppData\Local\Temp\WER-125393-0.sysdata.xml

    I have try step 1 and didnt boot up the window normaly...same thing happened
    Window 7 is loading...then boom the screen failed and blue screen appear...
    there is the latet crash report
    Version=1
    EventType=BlueScreen
    EventTime=129810543666556864
    ReportType=4
    Consent=1
    ReportIdentifier=9fb6a978-99f3-11e1-9b67-fa9a72be4846
    IntegratorReportIdentifier=050912-14508-01
    Response.type=4
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.256.1
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=3084
    UI[2]=C:\Windows\system32\wer.dll
    UI[3]=Windows has recovered from an unexpected shutdown
    UI[4]=Windows can check online for a solution to the problem.
    UI[5]=&Check for solution
    UI[6]=&Check later
    UI[7]=Cancel
    UI[8]=Windows has recovered from an unexpected shutdown
    UI[9]=A problem caused Windows to stop working correctly.  Windows will notify you if a solution is available.
    UI[10]=Close
    Sec[0].Key=BCCode
    Sec[0].Value=a
    Sec[1].Key=BCP1
    Sec[1].Value=0000000000000000
    Sec[2].Key=BCP2
    Sec[2].Value=0000000000000002
    Sec[3].Key=BCP3
    Sec[3].Value=0000000000000001
    Sec[4].Key=BCP4
    Sec[4].Value=FFFFF8000308BB7E
    Sec[5].Key=OS Version
    Sec[5].Value=6_1_7601
    Sec[6].Key=Service Pack
    Sec[6].Value=1_0
    Sec[7].Key=Product
    Sec[7].Value=256_1
    File[0].CabName=050912-14508-01.dmp
    File[0].Path=050912-14508-01.dmp
    File[0].Flags=589826
    File[0].Type=2
    File[0].Original.Path=C:\Windows\Minidump\050912-14508-01.dmp
    File[1].CabName=sysdata.xml
    File[1].Path=WER-27253-0.sysdata.xml
    File[1].Flags=589826
    File[1].Type=5
    File[1].Original.Path=C:\Users\Moz\AppData\Local\Temp\WER-27253-0.sysdata.xml
    File[2].CabName=Report.cab
    File[2].Path=Report.cab
    File[2].Flags=196608
    File[2].Type=7
    File[2].Original.Path=Report.cab
    FriendlyEventName=Shut down unexpectedly
    ConsentKey=BlueScreen
    AppName=Windows
    AppPath=C:\Windows\System32\WerFault.exe
    ive also have got a AI SUITE II crash...
    Version=1
    EventType=APPCRASH
    EventTime=129809041249476693
    ReportType=2
    Consent=1
    UploadTime=129809041250516752
    ReportIdentifier=ddea075d-9895-11e1-9a9f-eb38eba38a41
    IntegratorReportIdentifier=ddea075c-9895-11e1-9a9f-eb38eba38a41
    WOW64=1
    Response.BucketId=2555721005
    Response.BucketTable=1
    Response.type=4
    Sig[0].Name=Application Name
    Sig[0].Value=AI Suite II.exe
    Sig[1].Name=Application Version
    Sig[1].Value=1.0.0.40
    Sig[2].Name=Application Timestamp
    Sig[2].Value=00000000
    Sig[3].Name=Fault Module Name
    Sig[3].Value=KERNELBASE.dll
    Sig[4].Name=Fault Module Version
    Sig[4].Value=6.1.7601.17651
    Sig[5].Name=Fault Module Timestamp
    Sig[5].Value=4e211319
    Sig[6].Name=Exception Code
    Sig[6].Value=0eedfade
    Sig[7].Name=Exception Offset
    Sig[7].Value=0000b9bc
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.256.1
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=3084
    DynamicSig[22].Name=Additional Information 1
    DynamicSig[22].Value=0a9e
    DynamicSig[23].Name=Additional Information 2
    DynamicSig[23].Value=0a9e372d3b4ad19135b953a78882e789
    DynamicSig[24].Name=Additional Information 3
    DynamicSig[24].Value=0a9e
    DynamicSig[25].Name=Additional Information 4
    DynamicSig[25].Value=0a9e372d3b4ad19135b953a78882e789
    UI[2]=C:\Program Files (x86)\ASUS\AI Suite II\AI Suite II.exe
    UI[3]=AI Suite II has stopped working
    UI[4]=Windows can check online for a solution to the problem.
    UI[5]=Check online for a solution and close the program
    UI[6]=Check online for a solution later and close the program
    UI[7]=Close the program
    LoadedModule[0]=C:\Program Files (x86)\ASUS\AI Suite II\AI Suite II.exe
    LoadedModule[1]=C:\Windows\SysWOW64\ntdll.dll
    LoadedModule[2]=C:\Windows\syswow64\kernel32.dll
    LoadedModule[3]=C:\Windows\syswow64\KERNELBASE.dll
    LoadedModule[4]=C:\Windows\syswow64\WINTRUST.DLL
    LoadedModule[5]=C:\Windows\syswow64\msvcrt.dll
    LoadedModule[6]=C:\Windows\syswow64\CRYPT32.dll
    LoadedModule[7]=C:\Windows\syswow64\MSASN1.dll
    LoadedModule[8]=C:\Windows\syswow64\RPCRT4.dll
    LoadedModule[9]=C:\Windows\syswow64\SspiCli.dll
    LoadedModule[10]=C:\Windows\syswow64\CRYPTBASE.dll
    LoadedModule[11]=C:\Windows\SysWOW64\sechost.dll
    LoadedModule[12]=C:\Windows\syswow64\ADVAPI32.DLL
    LoadedModule[13]=C:\Windows\system32\VERSION.DLL
    LoadedModule[14]=C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.17514_none_ec83dffa859149af\COMCTL32.DLL
    LoadedModule[15]=C:\Windows\syswow64\GDI32.dll
    LoadedModule[16]=C:\Windows\syswow64\USER32.dll
    LoadedModule[17]=C:\Windows\syswow64\LPK.dll
    LoadedModule[18]=C:\Windows\syswow64\USP10.dll
    LoadedModule[19]=C:\Windows\system32\MSIMG32.DLL
    LoadedModule[20]=C:\Windows\syswow64\SHELL32.DLL
    LoadedModule[21]=C:\Windows\syswow64\SHLWAPI.dll
    LoadedModule[22]=C:\Windows\syswow64\OLE32.DLL
    LoadedModule[23]=C:\Windows\syswow64\OLEAUT32.DLL
    LoadedModule[24]=C:\Windows\system32\IMM32.DLL
    LoadedModule[25]=C:\Windows\syswow64\MSCTF.dll
    LoadedModule[26]=C:\Windows\system32\CRYPTSP.dll
    LoadedModule[27]=C:\Windows\system32\rsaenh.dll
    LoadedModule[28]=C:\Windows\syswow64\imagehlp.dll
    LoadedModule[29]=C:\Windows\system32\ncrypt.dll
    LoadedModule[30]=C:\Windows\system32\bcrypt.dll
    LoadedModule[31]=C:\Windows\SysWOW64\bcryptprimitives.dll
    LoadedModule[32]=C:\Program Files (x86)\ASUS\AI Suite II\AsMultiLang.dll
    LoadedModule[33]=C:\Windows\system32\WINSPOOL.DRV
    LoadedModule[34]=C:\Program Files (x86)\ASUS\AI Suite II\ImageHelper.dll
    LoadedModule[35]=C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_72d18a4386696c80\gdiplus.dll
    LoadedModule[36]=C:\Windows\system32\USERENV.dll
    LoadedModule[37]=C:\Windows\system32\profapi.dll
    LoadedModule[38]=C:\Windows\system32\GPAPI.dll
    LoadedModule[39]=C:\Windows\system32\cryptnet.dll
    LoadedModule[40]=C:\Windows\syswow64\WLDAP32.dll
    LoadedModule[41]=C:\Windows\system32\SensApi.dll
    LoadedModule[42]=C:\Windows\system32\Cabinet.dll
    LoadedModule[43]=C:\Windows\system32\DEVRTL.dll
    LoadedModule[44]=C:\Windows\system32\WindowsCodecs.dll
    LoadedModule[45]=C:\Windows\system32\WINHTTP.dll
    LoadedModule[46]=C:\Windows\system32\webio.dll
    LoadedModule[47]=C:\Windows\syswow64\WS2_32.dll
    LoadedModule[48]=C:\Windows\syswow64\NSI.dll
    LoadedModule[49]=C:\Windows\system32\credssp.dll
    LoadedModule[50]=C:\Windows\syswow64\mswsock.dll
    LoadedModule[51]=\\.\globalroot\systemroot\syswow64\mswsock.dll
    LoadedModule[52]=C:\Windows\syswow64\WININET.dll
    LoadedModule[53]=C:\Windows\syswow64\Normaliz.dll
    LoadedModule[54]=C:\Windows\syswow64\iertutil.dll
    LoadedModule[55]=C:\Windows\syswow64\urlmon.dll
    LoadedModule[56]=C:\Windows\system32\Secur32.dll
    LoadedModule[57]=C:\Windows\System32\wshtcpip.dll
    LoadedModule[58]=C:\Windows\System32\wship6.dll
    LoadedModule[59]=C:\Windows\system32\IPHLPAPI.DLL
    LoadedModule[60]=C:\Windows\system32\WINNSI.DLL
    LoadedModule[61]=C:\Windows\system32\dhcpcsvc6.DLL
    LoadedModule[62]=C:\Windows\system32\dhcpcsvc.DLL
    LoadedModule[63]=C:\Windows\syswow64\CFGMGR32.dll
    LoadedModule[64]=C:\Windows\system32\uxtheme.dll
    LoadedModule[65]=C:\Windows\system32\DNSAPI.dll
    LoadedModule[66]=C:\Program Files (x86)\Bonjour\mdnsNSP.dll
    LoadedModule[67]=C:\Windows\system32\rasadhlp.dll
    LoadedModule[68]=C:\Windows\System32\fwpuclnt.dll
    LoadedModule[69]=C:\Program Files (x86)\ASUS\AI Suite II\AssistFunc.dll
    LoadedModule[70]=C:\Windows\system32\PROPSYS.dll
    LoadedModule[71]=C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll
    LoadedModule[72]=C:\Windows\system32\apphelp.dll
    LoadedModule[73]=C:\Windows\syswow64\CLBCatQ.DLL
    LoadedModule[74]=C:\Windows\system32\wpdshext.dll
    LoadedModule[75]=C:\Windows\system32\WINMM.dll
    LoadedModule[76]=C:\Windows\System32\shdocvw.dll
    LoadedModule[77]=C:\Windows\SysWOW64\ieframe.dll
    LoadedModule[78]=C:\Windows\syswow64\PSAPI.DLL
    LoadedModule[79]=C:\Windows\SysWOW64\OLEACC.dll
    LoadedModule[80]=C:\Windows\syswow64\SETUPAPI.dll
    LoadedModule[81]=C:\Windows\syswow64\DEVOBJ.dll
    LoadedModule[82]=C:\Windows\system32\ntmarta.dll
    LoadedModule[83]=C:\Program Files (x86)\ASUS\AI Suite II\pngio.dll
    LoadedModule[84]=C:\Program Files (x86)\ASUS\AI Suite II\AsAcpi.dll
    LoadedModule[85]=C:\Program Files (x86)\ASUS\AI Suite II\asacpiEx.dll
    LoadedModule[86]=C:\Windows\system32\RpcRtRemote.dll
    State[0].Key=Transport.DoneStage1
    State[0].Value=1
    State[1].Key=DataRequest
    State[1].Value=Bucket=-1739246291/nBucketTable=1/nResponse=1/n
    FriendlyEventName=Stopped working
    ConsentKey=APPCRASH
    AppName=AI Suite II
    AppPath=C:\Program Files (x86)\ASUS\AI Suite II\AI Suite II.exe

  • My daughter's ipod nano shows up in "devices" when I plug it in...but it disappears.  Right away it says it needs to update, but then after extracting the files it comes back and says that it can't be updated because it can't be unmounted.  help?!

    My daughter's ipod nano shows up in "devices" when I plug it in...but it disappears.  Right away it says it needs to update, but then after extracting the files it comes back and says that it can't be updated because it can't be unmounted.  help?!

    When in DFU mode and connected to the computer iTunes does not say anything but iTunes will see the iPod and you can restore the iPod via iTunes. When in recovery mode and you connect, iTunes will say it found an iPod in recovery mode.

  • Its Very Urgent Creation of .dmp file in SAP 2007B - Indian Localization

    Hello All
    Can anyone provide help with this error. The SAP B1 does not allow to use AR Delivery or Sales. But it allows to use AP & Production Document for transactions.
    It gives an error at which time when ok is pressed the just logs out of SAP B1.
    ERROR IS AS FOLLOWS
    C:\Program Files\SAP\SAP Business One\Log\SAP Business One_20080703120518.dmp
    Application has a Problem.
    Diagnostic file C:\Program Files\SAP\SAP Business One\Log\SAP Business one_20080703120518.dmp was created.
    Please Contact support and attach diagnostic file.
    The system does not allow to proceed with Sales AR Module. & logs one out.
    Many .dmp files are created in Program Files>  SAPSAP Business one-->log
    Please help
    Nilesh

    Dear ,
    We have a procedure in place whereby a message must be logged in the
    Partner Portal before Business One Support Consultants can process it.
    We would appreciate it if you could log the message accordingly to the
    guidelines which you can find in the software maintenance agreement.
    This process will take time initially but in the long run it will be
    advantageous for you to update and track the progress of your messages,
    allowing you to refer to previously reported issues and speed up SBO
    Support Consultants response time.
    Process to log a message:
    To assist you, please use the following steps:
    To create messages, go to www.service.sap.com/smb/sbo/support
    Log in using your s-user and password
    Click "SAP Business One Messages" (from the main page)
    Click on the 'Create message' button
    Fill in the required fields as accurately as possible
    Guidelines on how to formulate a message:
    To help us to deal with your message as quickly as possible, please use
    the following guidelines:
    Handle only one problem per message
    Specify the customer and system in which the error occurs
    Specify if it is a Test, Development or Production System
    Specify the installed SAP Business One Release (if necessary also the version of installed add-ons or SDK)
    Specify a contact person and telephone number
    Specify the component as closely as possible (SBO-*)
    Use a meaningful short text
    Describe the problem in detail:
            Frequency and time of occurrence
            Procedure for reproducing the problem, including necessary data
            Particular conditions (for example, upgrade)
            Error messages
            Screen shots
    Document your own error analysis and Notes search and procedure that
    you tried to solve the problem.
    Examples:
    Poor message description: "It takes an awfully long time to enter
    something in SAP Business One"
    Good message description: "The performance of SAP Business One is not
    good. The execution of all operations takes a very long time. The
    problem only occurs in one client."
    Poor message description: "You cannot download anything to Excel."
    Good message description: "Excel does not start when I click Export to
    Excel."
    Further Links:
    To create additional S-users, change authorizations and passwords;
    www.service.sap.com/user-admin
    To request license keys; www.service.sap.com/licensekey
    To download patches and upgrades; www.service.sap.com/sbo-swcenter
    To update your product knowledge and access recorded Live expert session
    Webexes; www.service.sap.com/rkt-smb
    Download Webex Player to view Live Expert Sessions;
    https://sap.webex.com/client/v_sap/atplay.exe
    To find documentation about SAP Business One;
    www.service.sap.com/knowledgebase
    To search SAP Notes for solutions to known problems;
    www.service.sap.com/notes
    Thank you in advance for your cooperation in adhering to this procedure.
    Wish this is useful for you.
    Regards
    Apple

  • How do you import data base dmp file in oracle 10g

    How do you run data base dmp file in oracle 10g

    Examples..
    Table Exports/Imports
    The TABLES parameter is used to specify the tables that are to be exported. The following is an example of the table export and import syntax:
    expdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=expdpEMP_DEPT.log
    impdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=impdpEMP_DEPT.log
    For example output files see expdpEMP_DEPT.log and impdpEMP_DEPT.log.
    The TABLE_EXISTS_ACTION=APPEND parameter allows data to be imported into existing tables.
    Schema Exports/Imports
    The OWNER parameter of exp has been replaced by the SCHEMAS parameter which is used to specify the schemas to be exported. The following is an example of the schema export and import syntax:
    expdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=expdpSCOTT.log
    impdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=impdpSCOTT.log
    For example output files see expdpSCOTT.log and impdpSCOTT.log.
    Database Exports/Imports
    The FULL parameter indicates that a complete database export is required. The following is an example of the full database export and import syntax:
    expdp system/password@db10g full=Y directory=TEST_DIR dumpfile=DB10G.dmp logfile=expdpDB10G.log
    impdp system/password@db10g full=Y directory=TEST_DIR dumpfile=DB10G.dmp logfile=impdpDB10G.log

Maybe you are looking for

  • DAP LUA match ipad device unique id to cert

    Hi, I am trying to configure a DAP policy using LUA to perform a check that a cert has not been moved. I cert has been configured to store the ipads device unique id in the subject cn field, which i have verified on the device. I have configured the

  • Continuous play of playlist

    I have loaded playlists from iTunes, but the iTouch would not play the music in the playlist in a continuous mode, but will play only the selected song in the playlist. ANyway to make iTouch play songs in a continuous mode in a a playlist?

  • Can I use Photoshop Elements 8 to create menus for Encore Project?

    Is there a way to create menu buttons in PS Elements 8 for an Encore project or do I need to upgrade to PS CS5? Thanks!

  • Change MetalLookAndFeel JLabel Color?

    I am wanting to use the MetalLookAndFeel in my application, but want the color for all my JLabels to be Black instead of the purpleish color I understand how to create your own custom color themes but cannot find out how to change the JLabel color do

  • MS SQL Server Connection

    I am trying to connect to SQL Server 2008 R2. I can connect when the instance name is the default. When I try to connect to a server which has a different instance name. I cannot connect. In MS products this would look like Server Name : host\instanc