Open zip file with the OPEN DATASET statement.

How?
The zip file is a text file compressed.
Thanks for answers.

in application server no ZIP files exist...as such flat files exist which can be read using DATASET concept.

Similar Messages

  • How to open a file with the extension x3f (sigma)

    how to open a file with the extension x3f (sigma)?

    RAW data from the following Sigma cameras is currently supported:
    DP1
    DP1s
    DP2
    SD9
    SD10
    SD14
    If your camera is among these, then simply import the photo as usual. https://helpx.adobe.com/lightroom/help/importing-photos-lightroom-basic-workflow.html

  • How to open a file with the same name?

    Hi, now I practicing making web pages where I put sample codes in one directory and I copy them to edit.
    The probrem is, I couldn't open one file while I'm opening another file with the same name.
    Is it possible to open  a file with the same name in Dreamweaver?

    That could be a very error prone practice.
    May I suggest you take advantage of DW "Snippets" feature instead.
    Simply save any blocks of code you will reuse regularly as snippets,
    and give each one a descriptive name you like.
    Then you can simply place your cursor in code view where you wish the code,
    and click insert on the selected item from the snippet panel.

  • What application can you use to open a file with the .acc extension?

    What application can you use to open a file with the .acc extension?

    http://www.fileinfo.com/extension/acc

  • Externally opening a file with the program its associated with

    Basically I'm looking to simulate what would happen if you double clicked on something in a windows explorer window. I want to have the operating system open a file with the application that as associated with it.
    how do I do it?

    Have you considered the portability issue?
    Win - Associate by editable user preferences
    Mac - Associate to creation program
    Unix/Dos - Explicitly associate program at command
    Rather than just using exec, you could look into something encapsulated to set which program to use so you could use on other system.

  • I cannot open downloaded files. The "Open" & "Open Containing Folder" options are grayed out, as well as the "Open" option. I have removed Kaspersky to sure.

    I cannot open downloaded files. The "Open" & "Open Containing Folder" options are grayed out. Cannot right-click on the files to open. File does not appear in the targeted folder. If "opened," the files provide an error message. Issue is primarily with MS Word.

    If "Open" and "Open Containing Folder" in the right-click context menu in the Download Manager window are grayed then that means that the file is no longer in the original download location.<br />
    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.<br />
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.<br />
    See "Disable virus scanning in Firefox preferences - Windows"
    * http://kb.mozillazine.org/Unable_to_save_or_download_files

  • What is the max size of a zip file with the JDK1.5 ?

    Hello everybody,
    I'm a french student and for a project, I need to create a zip file, but I don't know in advance the number and the size of files to include in my zip.
    I wish to know if someone have the answer to my question : what is the max size of a zip file with the JDK1.5 ? I believe that with the JDK1.3, the limit size of a zip was about 2Go, wasn't ?
    Thank you for all answer !
    Good day !
    PS : sorry for my very poor english ;-)

    Here is all I have found for the moment :
    ...Okay, what about my suggestion of creating your own 10GB file?
    Try this:import java.io.File;
    import java.io.RandomAccessFile;
    import java.nio.ByteBuffer;
    import java.nio.channels.FileChannel;
    import java.util.Random;
    class Main {
        public static void main(String[] args) {
            long start = System.currentTimeMillis();
            int mbs = 1024;
            writeFile("E:/Temp/data/1GB.dat", mbs);
            long end = System.currentTimeMillis();
            System.out.println("Done writing "+mbs+" MB's to disk in "+
                    ((end-start)/1000)+" seconds.");
        private static void writeFile(String fileName, int numMegaBytes) {
            try {
                int numBytes = numMegaBytes*1024*1024;
                File file = new File(fileName);
                FileChannel rwChannel =
                        new RandomAccessFile(file, "rw").getChannel();
                ByteBuffer buffer = rwChannel.map(
                        FileChannel.MapMode.READ_WRITE, 0, numBytes);
                Random rand = new Random();
                for(int i = 1; i <= numMegaBytes; i++) {
                    for(int j = 1; j <= 1024; j++) {
                        byte[] bytes = new byte[1024];
                        rand.nextBytes(bytes);
                        buffer.put(bytes);
                rwChannel.close();
            } catch(Exception e) {
                e.printStackTrace();
    }On my machine it took me 43 seconds to create a 1GB file, so it shouldn't take too long to create your own 10GB. Then try zipping that file.
    Good luck.

  • Can't open PDF-Files with the 64Bit Photoshop-Version but with 32Bit Version

    Hello,
    our company use Photoshop in combination with PDF-Files. Normally we can open every of our PDFs with Photoshop.
    But now we have some PDFs that we can't open with the 64Bit version. If we try it the application crashes.
    But we are able to open the same files with the 32Bit version of Photoshop. We assume a bug in the 64Bit Version.
    Please contact me to get the a PDF-Sample-File because i am not allowed to append the file to a public space.
    Regards
    Carsten Evers
    PS: email: [email protected]

    Hi Carsten,
    I'll move this to the PS forums on your behalf for further assistance. 
    Cheers!
    -Sidney

  • How to open a file with the assosiate program on suse????

    i came to know that we can open a file with assosiated program on windows using "cmd /c start filename".
    and i want the same functionality on suse linux.
    in forums i found that "kfm filename" will do fine on linux.
    i tried it on suse but no use at all.
    i would appretiate the quick response and i would be very thankful
    for the same.
    Thanks alot in advance.

    take a look at java.awt.Desktop in the JDK SE 6 http://java.sun.com/javase/6/docs/api/java/awt/Desktop.html.
    See these two methods:
    - void edit(File file)
    - void open(File file)

  • Open pdf file with the client's Reader, not in a browser, HOW ?

    Hi All,
    I have a web application written in VB in wich  an user can request to open a pdf file stored on the server.
    I'm looking for a script that will force the requested pdf to be opened in client's Reader and not in a browser's Reader plugin,
    Thanks, Yan

    This is not a problem that can be addressed with LiveCycle Designer script. Designer or Acrobat script has context once the PDF is open, which does not help you. Perhaps a solution can be found in Windows Script Host. I have not touched WSH in a long time but I recall that is possible to do something like...
    ' Get a Reader instance by ProgID
    Set obj = GetObject(,"AcroExch.Document")
    ' Check if an instance of Reader is not already running. If an instance is running, create a new instance.
    If TypeName(obj) <> "Document" Then
        Set obj = CreateObject("AcroExch.Document")
    End If
    or
    ' Start the application (Reader) associated with the file type
    Set obj = GetObject("c:\foobar.pdf")
    Steve

  • Unable to open zip files with Archive Utility or StuffIt

    Hello,
    I am running Mac OS X 10.7.3.  I have been attempting to download and install the Eclipse Java IDE from both www.eclipse.org and from a Stanford course website.  In the first case the file is offered as a tar.gz and in the second case it is a .zip.  When I attempt to open either file using Archive Utility or StuffIt Expander I get a never ending pinwheel.  I am forced to restart to get Finder working porperly again and quiet the fan down.  My wife's computer, also running Mac OS X 10.7.3, can extract the files without a problem.

    Jsanders is basiclly a BlackBerry Superhero, stick around for awhile, Don't be a stranger AntMcl, you can learn a lot around here I promise.
    If someone helped you give them kudos. Research all info!

  • Openeing external files with defualt open settings

    hi can NE one tell me hwo to open an external file with it's defualt viewer
    e.g. open a .mdb file in access or a .txt file in notepad
    thnx
    help would be much apreciated

    hi,
    this is what i use on a win2000 platform:
    try {
    Runtime rt = Runtime.getRuntime();
    Process p = rt.exec("cmd /c start yourFile.ext");
    } catch(Exception e) {
    System.out.println(e);
    it is possible that a full path of the file is required.
    good luck

  • How to open PDF file with the view I wish without many clicks

    I am getting many many scanned files daily and I'd like to able to skim thru each file as fast as possible.
    Since the way each file scanned is consistent, when I open it, I am clicking a button to rotate it counterclock, then click zoom-in a few times to be able to read the top portion to see if the file is of my interest.
    Can we customize the way the files are opened?  I wish that once I open it, it will be rotated (so that I don't have to tilt head to read it), and zoom in big enough for me to read it.
    I did try (I am new to this) "accessabitly settup assistant", but couldn't achieve my desired effect.
    Any suggestions?
    thanks.
    JQ

    Thank you for the suggestions. Appreciated it.
    Actually when I asked whether they could scan it differently, I was told "no" for that type of scanner they have, and they have been reading it the same way as I just start to do, for years.
    Maybe someone knows about what scanners have the feature to do these tricks?
    I tried the preference setting. It's still less manageable. However, I manage to be able to click 3 buttons to get to the top portion to be readable.
    First, I rotate it counterclock (which mess up the view zoom in setting preference).
    Then I click to "show one page" button;
    Then I clcik to make the document to fill the width. (at this point, the zoom in is about 79%).

  • How to open zip files ? what application do i use ?

    i am trying to open zip files with my g5 i
    PLEASE HELP

    mistermook,
    Download and install the free download of Stuffit Expander.

  • Can't open Zip file

    I've been emailed a zip file with the extension .docx. I can't open this. When I click on it to unzip it, it turns into another zip file with the extension .cpgz. I've Stuffit Deluxe 8.0 on my Powermac G5.

    Hi.
    There's also an XML File Format Converter from Microsoft (still Beta). It's available for download from Microsoft mactopia.
    Good Luck.

Maybe you are looking for

  • Can't print to Acrobat PDF (v9.4) using Quark 8 + Snow Leopard

    I don't know what's happened but I have always been able to print (in Quark 8) to either my physical printer or to Adobe PDF (save as a .ps file to then make a high res PDF in Distiller).  (I have Acrobat Pro 9.4)  Since I upgraded to Snow Leopard I

  • FDM Check PDF Validation Report

    Hi all I'm currently using validation rules in FDM but when I get de PDF report it comes out all messy, I supposed it's becuase of the text size been shown but this "lenght" seems to change between Validation Groups. For example my first validation g

  • Web Dynpro for ABAP

    can any one can help me??? when will SAP is going to launch web Dynpro for ABAP????...........plz no guess...........no ideas......if u have anything concrete then reply only.......as its not their with Netweaver'04 edition.... thank you kamaljeet

  • Connected Servers Not Showing in sidebar

    Just taken delivery of a new 27" iMac - very very nice indeed. However a couple of irritations and one for this community. At our office we connect to an Xserve running 10.75 server (the iMac is Mountain Lion). We used to be able to drag our connecte

  • How to use ios8 in iphone 4 32GB

    Dear Sir/ Madam, i have use the iphoen 4 32Gb but how to update IOS 8 in my Iphone 4 32 GB Thanks & Best Regards Pawan Kumar