D51wkdmp::::Trying to run on corrupt file, ""workbook.Item dependency

Hi ALL
I am trying to run that following dump utility on my corrupt DIS File, I am not successful , but if run that following command on my correct file (Working File) it gives me the result.
d51wkdmp "C:\XX DISCOVERER REPORT.DIS" c:\PA_EXP_DUMP.TXT FS "user:responsibility/passwordn@dev1" Eul_US –f
My Workbook has error, Cannot join tables used in the workbook.Item dependency “” not found in the EUL
Thanks
ASIM

Try downloading the stand alone installer here:
http://support.apple.com/kb/DL1399
In Safari Preferences, General tab, set "Save downloaded files to: select destop, if it is not in thed rop down select other, then selcet Desktop from the left sidebar. After the download completes click on the installer package on your desktop and follow the prompts.
Also if possible use an ethernet conection as it is less prone to interference, thus less prone to corruption, and usually faster.
Hope this helps

Similar Messages

  • I'm trying to run a .mov file across 2 monitors (making it one giant monitor) but it won't go to full screen. Help, I'm trying to run a .mov file across 2 monitors (making it one giant monitor) but it won't go to full screen. Help

    Hi -
    I'm trying to run a .mov file on a mac mini using 2 monitors - the monitors are set up to make it one large screen.  When I try this it doesn't go to fullscreen, are there any workarounds?
    Thanks!

    I tried the drop and drag but it won't cover the entire screen. It leaves a border around it and is really annoying.  I'm told the next OS will fix this, I'm just trying to find a workaround for this if possible.

  • Trying to run a batch file in ODI and the file is on a windows network drive.

    Hi,
    I'm trying to run a batch file that is located on a windows shared drive for the ODI server. When I try to run the file through OS command by giving the file path in the "command line". I get the error "
    ODI-1226: Step fails after 1 attempt(s).
    ODI-1242: Operating system command execution fails."
    Please let me know if this can be done.

    Hi,
    First try to execute your batch file, if it is executing as expected.
    Then use OdiOSCommand tool and give full path of script and also give a path to create error file & out file.
    Execute the batch now via OdiOSCommand, if it fails then you will receive error message in Error file.
    Also check if you have rights to script being executed via ODI.
    Thanks,
    DK

  • WrongName error when trying to run a package file

    Hi, I am trying to run a file in a package. The package name is called com.davidflanagan.examples.net and the file name is ProxyServer.class. I've set the class path to point to the directory the package is in using the CLASSPATH environment variable. I've tried using "java ProxyServer" and "java com.davidflanagan.examples.net.ProxyServer", but I get a cryptic Wrong name error in both Windows and Linux. Any help would be greatly appreciated.

    First, ProxyServer's source code must start with the line...
    package com.davidflanagan.examples.net;
    Next, you must have a directory structure that matches the package name - a directory named com which contains a directory named davidflanagan which contains a directory named examples which contains a directory named net and ProxyServer.class must be in the net directory,.
    Next, the directory that contains com must be in your Classpath when you execute ProxyServer.
    To execute ProxyServer, use "java com.davidflanagan.examples.net.ProxyServer"
    http://java.sun.com/docs/books/tutorial/java/interpack/packages.html

  • Trying to run a .jar file but CAN'T!!!!

    I have a .jar file. If I click on it, a Java Virtual Machine Launcher error box comes up that says "Could not find the main class. Program will exit."
    I've tried to run it from the DOS prompt two ways.
    If I type "java -jar Plist" (Plist is the .jar file name, the .java file name, and the class name), It says...
    Exception in thread "main" java.util.zip.ZipException: The system cannot find
    e file specified
    at java.util.zip.ZipFile.open(Native Method)
    at java.util.zip.ZipFile.<init>(Unknown Source)
    at java.util.jar.JarFile.<init>(Unknown Source)
    at java.util.jar.JarFile.<init>(Unknown Source)
    If I type "java -jar Plist.jar", It says...
    Exception in thread "main" java.lang.NoClassDefFoundError: Plist
    Two questions...
    1. What am I doing wrong??
    2. Once I get this .jar deal to work, will I be able to run it on other computers? It seems to be tied in with some of the Java utilities and files on my computer. Is it independent like a .exe file or not?

    1. What am I doing wrong??
    You need a manifest. Open notepad and write these two lines:
    Main-Class: main
    [A blank line, just hit enter]
    For main specify the name of the class that has the Main(String[] args) method without the .class extension. If your using a package, then put the package name in there too like this:
    Main-Class: myPackage/main
    But since you not using a package, and you said the only class is Plist.class then use:
    Main-Class: Plist
    (remember a blank line here)
    Now save this file (call it manifest.txt if you like).
    Next, update your jar file with this command:
    jar umf [name of manifest file] [name of jar file]
    jar umf manifest.txt Plist.jarNow run with this command or double-click from Windoze:
    java -jar Plist.jar2. Once I get this .jar deal to work, will I be able to run it on other computers?
    The other computers must have at least the jre installed, available free from Sun as you know :)
    -Ron

  • Trying to run an archive, file or anything else

    Hello, I'm trying to run an archive (An image, a text archive, etc) using the File object...
    I was using this code:
            try{ 
                file = new File("D:/gnd_1024_2.jpg");
                r = Runtime.getRuntime();
                r.exec(file.getName());
            }catch (Exception e) {
                e.printStackTrace();
        and an Exception Ocurrer, how Should I do it?
    Thnx

    You can not "run" an image, you need to run an application to use on the image.
    I believe the application "start" will work out which application you have set as the defualt app for a document, and run that. Search the forum for more info on it.

  • Trying to run a bat file from oracle

    I have followed these steps, see bottom for results, everything is valid but the bat file does not run???? PLease need your help. Doug
    CREATE OR REPLACE AND COMPILE JAVA SOURCE NAMED "getbatx" AS
    class getbatx //class pdfopen
    public static void execmd(String c) //main function
    try
    System.out.println("Executing:" + c);
    Runtime.getRuntime().exec("C:\\WINDOWS\\system32
    cmd.exe /c "+c);
    System.out.println("Executing:" + c + " ...done");
    } catch (Exception e) //catch any exceptions here
    System.out.println("Error" + e ); //print the error
    CREATE OR REPLACE PROCEDURE host_command2 (p_command IN VARCHAR2)
    AS LANGUAGE JAVA
    NAME 'getbatx.execmd (java.lang.String)';
    /Then as sysdba I put in in the following.
    exec dbms_java.grant_permission( 'CAPRS', 'SYS:java.io.FilePermission', '<<ALL FILES>>', 'execute' );
    EXEC Dbms_Java.Grant_Permission('CAPRS', 'SYS:java.lang.RuntimePermission', 'writeFileDescriptor', '');
    EXEC Dbms_Java.Grant_Permission('CAPRS', 'SYS:java.lang.RuntimePermission', 'readFileDescriptor', '');Then I make the call.
    SET SERVEROUTPUT ON SIZE 1000000
    CALL DBMS_JAVA.SET_OUTPUT(1000000);
    BEGIN
    host_command2 (p_command => 'c:\mybook.bat');
    END;
    /***** I run this, it completes but does not run the bat file and there is no error message
    SQL> BEGIN
    2 host_command2 (p_command => 'mybook.bat');
    3 END;
    4 /
    Executing:mybook.bat
    Executing:mybook.bat ...done
    PL/SQL procedure successfully completed.

    Yes it should open a dos box, but you forgot to add the .bat file witch you like to run: String[] command = {"cmd", "/c", "start", "c:/Batch files/Cardiobackup/cardiobackup_v1.4"}

  • Trying to run HTML 5 file on IE8

    Is there a way I can run HTML5 published file on IE8? I know the browser does not support HTML 5, but my client is not willing to upgrade to IE9 at this time, so wanted to know what the best possible way to run the HTML5 on IE8.

    The best possible way to run HTML5 on a non-HTML5-compliant web browser is not at all.
    If your client wants to stick with IE8 then they need to be using HTM/SWF output, not HTML5. 
    Why would they be demanding HTML5 output if their default company browser won't support it?

  • Trying to run java class files from my jsp

    I am having difficulty running java files from my jsp. I have compiled my two java classes and inserted them onto my server in the webapps/WEB-INF/classes/scripting directory and have imported scripting.* into my jsp page. The files both compiled ok before the class files were loaded onto the server but when I rty to run the jsp from the server, I keep getting a compiler error. Thanks in advance
    Iob

    Here are the few question
    1) Does your java classes which u created is declared under package scripting. *.class files are to be places under the WEB-INF/classes directory only. Not under scripting. But if you java classes say are under a package called a.b. Then you need to put under classes\a\b\.

  • Trying to run a batch file on a UNC path

    I'm running a pretty simple script that loops through names on machines, and runs batch files.  Here's my code:
    Dim RetVal1 As String
    Dim RetVal2 As String
    RetVal1 = Shell("\\" & Cell & "\c$\Java\bin\service\StopServerService.bat", 1)
    RetVal2 = Shell("\\" & Cell & "\c$\Java\bin\service\StartServerService.bat", 1)
    Each 'Cell' contains a machine name.
    I keep getting a message about UNC paths not being supported.  I could swear this that was working last week!!
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

    I keep getting a message about UNC paths not being supported.  I could swear this that was working last week!!
    I would simplify matters by running this command from a Console (cmd.exe):
    \\ComputerName\c$\Java\bin\service\StopServerService.bat
    Does it work?
    What does StopServerService.bat contain?
    What operating system do the two machines run?
    Is UAC active on the remote machine?
    After solving the problem at the console level you should get further advice from a VBA forum.

  • I have downloaded a new version of Firefox, but can't figure out how to install it. I see the folder with Firefox application in it -- & have tried to run the executable files, but none of them start the installation.

    I have a 3.6.23 Version of Firefox & am trying to upgrade to the latest version

    Hi,
    There's information on that here: [[Installing Firefox on Linux|Installing Firefox on Linux]]
    Jack

  • InDesign CS3 program will not open - Win XP - after trying to open corrupt file.

    Help! the program Adobe InDesign will not open up anymore.
    Here is the story and what I have tried. One week on the 16th my server crashed two of the three hard drives failed (RAID) I had the two replaced. Since then all seamed to be ok but few of files were missing and some that I tried to open would crash InDesign I assume that the files got corrupt from the HD's going bad. Server kept telling me to run CHKDSK utility. I ran it and and some of the files reappeared. Today, thinking that the Chkdsk utility had fixed the bad files I tried to open one of the files that caused InDesign to crash and it crashed again.
    Now I cannot open InDesign at all when I try to launch InDesign within 3-4 seconds Adobe will crash!  Reboot and try again same thing.
    I tried to delete the files in the Recovery folder thinking it was trying to open the corrupted file that it last tried to open. Same thing.
    I moved the preference folder to the desk top thinking that it might have been causing the problem - no change.
    I reinstalled InDesign over top of the existing program (did not uninstall first) rebooted and tried to launch - no change.
    I tried system restore, None of my restore points that I have tried (auto restore points) will restore my system for what ever reason.
    Please Help with any suggestions I need this fixed soon.

    Installing CS3 was a pain, and the installer is very sensitive to conflict with just about everything under the sun, so you need to run it in a bare-bones boot (but not safe mode). I turn off ALL non essential programs and services using MSConfig when doing a CS3 install.
    That said, yes, running the CS3 clean script will probably remove all things Adobe from the system. The Microsoft utility is much more benign than the description makes it sound -- it removes registry information for previous installations so there is no trace of them to confuse the OS. I'm not aware that it has removed anything other than what it was told to remove, but I've only had to use it once, I think.
    You can try a simple uninstall/reinstall first (and you should be able to remove and reinstall just ID from the suite if you use the original disks). That will certainly be faster and less painful than the clean script, but may not work. Seems odd that a serrver crash should have corrupted a local installation, though, so you might want to take a close look at the machine for other problems, perhaps some sort of malware invasion.
    Peter

  • Possibility of Corrupt Files

    I'm trying to sync my iPod, and recently a lot of my files got corrupted. Why? I have no idea. But I lost all my videos in one folder, a bunch of photos from a recent trip to Canada, and a few hundred songs.
    I don't know why the corruption happened, but as I found out while I'm trying to synch my iPod, I get random freezes, then errors as it can't sync a certain file. So I'm trying to delete the corrupt files. ...only I'm having a really hard time because it doesn't tell me which actual files are corrupt, I just know there are some out there.
    Are there any ways to finding them and deleting them/fixing them? I've trashed a fair few files (didn't need them anyway) but it would be so great just to be able to find out which ones were causing this trouble so I could get rid of them somehow, it's... really depressing. This laptop has been in the shop countless times and I really don't want to have to go through that again.
    For the record, I've run disk repair, restarted, and done some small things like that, to no effect.
    Thanks very much~!
    Message was edited by: DanielAzarc

    Curses. It's been this long and I still can't think of a witty way to bump my thread. I would mention the alien outside my bathroom window, but my bathroom doesn't have a window. I suppose that's a good thing. Though ventilation would be nice at times.
    Anyway, still the same things going on, and Google is apparently not my friend because I can't find anything on this yet, so I'm sort of stuck.

  • Error while running sawserver.exe file

    Hi All ,
    I installed OBIEE 11.1.5 in my machine and Database is in different machine (For RCU) .OBIEE reports are working fine but, I tried to run sawserver.exe file to register new instanceconfig file to implement multiple rpds and Catalogs in OBIEE 11G by referring the below link.
    http://rnm1978.wordpress.com/2009/08/25/multiple-rpds-on-one-server-part-2-presentation-services/
    Command that I used is : sawserver.exe -c D:\Middleware\instances\instance1\config\OracleBIPresentationServicesComponent\coreapplication_obips1\instanceconfigdemo.xml
    Am getting the Error : the procedure entry point long jmp count not be located in the dynamic link library orauts.dll
    Thanks in Advance .

    Hi,
    How can i do it in OBIEE 11G? Any help will be grateful
    Regards,
    Joni

  • Running a jar file from java code

    Hi!
    Im trying to run a jar file from my code.
    I've tried Classloader, but that doesnt work because it doesnt find the images (also embedded in the 2nd jar file).
    WHat I would like to do is actually RUN the 2nd jar file from the first jar file. There must be a way to do this right?
    any ideas?

    ok, I found some wonderful code (see below) that will try to start the jar. But it doesn't. What it does is produce the following error when my application runs...
    So it's not finding the images in the jar file that I am trying to run? Strange. I checked the URL that sending, but it seems ok....
    I think I will check the url again to make sure......
    any ideas?
    Uncaught error fetching image:
    java.lang.NullPointerException
         at sun.awt.image.URLImageSource.getConnection(Unknown Source)
         at sun.awt.image.URLImageSource.getDecoder(Unknown Source)
         at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
         at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
         at sun.awt.image.ImageFetcher.run(Unknown Source)
    the code....
    /* From http://java.sun.com/docs/books/tutorial/index.html */
    import java.io.IOException;
    import java.lang.reflect.InvocationTargetException;
    import java.lang.reflect.Method;
    import java.lang.reflect.Modifier;
    import java.net.JarURLConnection;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.net.URLClassLoader;
    import java.util.jar.Attributes;
    * Runs a jar application from any url. Usage is 'java JarRunner url [args..]'
    * where url is the url of the jar file and args is optional arguments to be
    * passed to the application's main method.
    public class JarRunner {
      public static void main(String[] args) {
        URL url = null;
        try {
          url = new URL(args[0]);//"VideoTagger.jar");
        } catch (MalformedURLException e) {
          System.out.println("Invalid URL: ");
        // Create the class loader for the application jar file
        JarClassLoader cl = new JarClassLoader(url);
        // Get the application's main class name
        String name = null;
        try {
          name = cl.getMainClassName();
        } catch (IOException e) {
          System.err.println("I/O error while loading JAR file:");
          e.printStackTrace();
          System.exit(1);
        if (name == null) {
          fatal("Specified jar file does not contain a 'Main-Class'"
              + " manifest attribute");
        // Get arguments for the application
        String[] newArgs = new String[args.length - 1];
        System.arraycopy(args, 1, newArgs, 0, newArgs.length);
        // Invoke application's main class
        try {
          cl.invokeClass(name, newArgs);
        } catch (ClassNotFoundException e) {
          fatal("Class not found: " + name);
        } catch (NoSuchMethodException e) {
          fatal("Class does not define a 'main' method: " + name);
        } catch (InvocationTargetException e) {
          e.getTargetException().printStackTrace();
          System.exit(1);
      private static void fatal(String s) {
        System.err.println(s);
        System.exit(1);
    * A class loader for loading jar files, both local and remote.
    class JarClassLoader extends URLClassLoader {
      private URL url;
       * Creates a new JarClassLoader for the specified url.
       * @param url
       *            the url of the jar file
      public JarClassLoader(URL url) {
        super(new URL[] { url });
        this.url = url;
       * Returns the name of the jar file main class, or null if no "Main-Class"
       * manifest attributes was defined.
      public String getMainClassName() throws IOException {
        URL u = new URL("jar", "", url + "!/");
        JarURLConnection uc = (JarURLConnection) u.openConnection();
        Attributes attr = uc.getMainAttributes();
        return attr != null ? attr.getValue(Attributes.Name.MAIN_CLASS) : null;
       * Invokes the application in this jar file given the name of the main class
       * and an array of arguments. The class must define a static method "main"
       * which takes an array of String arguemtns and is of return type "void".
       * @param name
       *            the name of the main class
       * @param args
       *            the arguments for the application
       * @exception ClassNotFoundException
       *                if the specified class could not be found
       * @exception NoSuchMethodException
       *                if the specified class does not contain a "main" method
       * @exception InvocationTargetException
       *                if the application raised an exception
      public void invokeClass(String name, String[] args)
          throws ClassNotFoundException, NoSuchMethodException,
          InvocationTargetException {
        Class c = loadClass(name);
        Method m = c.getMethod("main", new Class[] { args.getClass() });
        m.setAccessible(true);
        int mods = m.getModifiers();
        if (m.getReturnType() != void.class || !Modifier.isStatic(mods)
            || !Modifier.isPublic(mods)) {
          throw new NoSuchMethodException("main");
        try {
          m.invoke(null, new Object[] { args });
        } catch (IllegalAccessException e) {
          // This should not happen, as we have disabled access checks
    }

Maybe you are looking for

  • Bug in view link creation

    Here's an interesting bug in JDev 9.0.3.1, Win2k: I'm working with a view link using the Edit View Link dialog. It links two view objects, ViewA and ViewB, in a 1:* relationship. Entities EntityA and EntityB are the respective underliers of ViewA and

  • As a result of qty correlation, dlv.grp 002 from sls.ord.*** will be delete

    I create a sales order with sales BOM which one component is short of stock that reserve no qty. And then I create outbound delivery, but error log happens as below and the delivery order has nothing in the item lines: As a result of qty correlation,

  • AirPort Disk Access Existing files when changing Secure Shared Disks with Accounts

    Hey, community; I have a 1TB Disk which I was using on my Mac, then upon aquisition of an AirPort Extreme Base Station, plugged it into there. File sharing was fine when set to "AirPort Password" for Security settings, but when I changed to "Accounts

  • Transparent Artboard Possible in Flash 8?

    I am working on a site at the moment and I need the artboard to be transparent as the site itself it's completely rectangle (i have one corner which is curved off). The reason i need the artboard to be transparent is because the html background is go

  • Help needed with doubles and integers

    I just want to start telling all you that you have been a big help to me the last couple of months. Now, for my issue. I'm having a problem doing some work with doubles and integers. Below is the code I've tried. But, I keep getting mismatch types. I