How to use linux_11gR2_database_1of2.zip

I downloaded the 32 bit 11g files disk1 and disk2 but unzip says that linux_11gR2_database_1of2.zip is not a proper zip file. The FTP to the server was done as binary and I redownloaded disk1 to ensure that it was not corrupted in the download.
How do you unzip these files properly? File 2 is recognized a zip and does unzip but I am sure the resulting database directory is short of all the necessary files.
Is there a special set of install instructions I missed?
Mark D Powell

No there should be no special set of instructions.
Do you have a problem with both files?
you said you ftp'd them..... Did you check that they could be unziped before they were ftp'd
What version of Linux are you using? (OEL 5.x, RH 5.x, etc)
Some suggestions:
Check the zip files prior to being ftp'd to see if they are ok
Check the sizes against the sizes shown on OTN I hace experienced issues where I did nto really get the file properly.
check the unzip utility being utilized.
which unzip
unzip -- Look at the the header area for the version, etc.
Do you have another .zip file you know is ok that you can check the unzip utility with.
Redownload the .zip files directly to the server where they will be unzipped to see if there is a potential transfer issue.
Edited by: mrmessin on Feb 25, 2010 11:12 AM

Similar Messages

  • Using of zip option

    hello everybody
    i am trying to compress a few files to a *.zip package, but my code does not write anything into the file. the file is created and has the size of the files to compress but the file itself is emty.
    here you see my code, please focus on the try/catch block:
    public static void writeZipPackage(Collection v_packages, ZipOutputStream v_outPutStream, String v_langTwo) throws Exception     {
              Iterator iter = v_packages.iterator();
    byte[] readBuffer = new byte[2156];
    int bytesIn = 0;
    //XML File erstellen
    writeXmlLz(v_packages, v_langTwo);
              while(iter.hasNext())     {
                   TranslationPackage aktPackage = (TranslationPackage)iter.next();     // aktuelles Paket
                   File aktPackagePath = getDirForPackage(aktPackage.getPackageName());     // hollt die Verzeichnisstruktur f�r das aktuelle Paket
                   String aktPath = aktPackagePath.toString();
                   aktPath = aktPath.substring(0, (aktPath.length()-8));     // aktueller Pfad
                   String aktFilename = "messages_" + v_langTwo + ".properties";     // aktueller messages File
                   v_outPutStream.setMethod(ZipOutputStream.DEFLATED);     // Archivierungsmodus
                   try {
                        File file = new File(aktPath, aktFilename);
                        FileInputStream fileIn = new FileInputStream(file);
                        v_outPutStream.putNextEntry(new ZipEntry(aktPath));
                        // now write the content of the file to the ZipOutputStream
         while((bytesIn = fileIn.read(readBuffer)) != -1) {
              v_outPutStream.write(readBuffer, 0, bytesIn);
         }     // end of while
         v_outPutStream.flush();
         v_outPutStream.closeEntry();
         // close the Stream                     
         fileIn.close();
                   } catch (Exception e) {
                        throw new Exception(e.getMessage(), e);
                   }     // end of try/catch
              }     // end of while
         }     // end of writeZipPackage
    i have already looked up a few tutorials how to use the zip option in java, but it did not help. So please help me. Thank you in advance.
    Greetings, Wolfgang

    till now i have made it to add files that are in the
    same directory, but if i add a folder structure is
    not in the zip file.Wild guess: change the following:
    File file = new File(aktPath, aktFilename);
    FileInputStream fileIn = new FileInputStream(file);
    v_outPutStream.putNextEntry(new ZipEntry(aktPath));to
    File file = new File(aktPath, aktFilename);
    FileInputStream fileIn = new FileInputStream(file);
    v_outPutStream.putNextEntry(new ZipEntry(file.getAbsolutePath()));Probably won't change anything, but it's a bit hard a guess.

  • How to check & unzip zip file using java

    Dear friends
    How to check & unzip zip file using java, I have some files which are pkzip or some other zip I want to find out the type of ZIp & then I want to unzip these files, pls guide me
    thanks

    How to check & unzip zip file using java, I have
    ve some files which are pkzip or some other zip I
    want to find out the type of ZIp & then I want to
    unzip these files, pls guide meWhat do you mean "other zip"? Either they're zip archives or not, there are no different types.

  • How to use thin drivers and classes111.zip?

    I'm using jdk1.2 and making connection with Oracle8 database using an applet. I resolved the issue
    of security by using the policytool. But now I want to know how can I use the Thin Driver to connect with the database?
    the code which I had written is :-
    import java.sql.*;
    try{
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:cbcpeter","scott","tiger");
    st=con.createStatement();     
    }catch(Exception e){System.out.println(e);}
    and it gives the following error "Class oracle.jdbc.driver.OracleDriver not found"
    So please tell me where to place the classes111.zip or classes12.zip and how to use them?
    I had tried with the jdbcodbc driver, but it gives me the error "Cannot load Resource File sqresus.dll"
    thanx in advance!

    well, i had the same problem some months ago, the READ ME OF HOW TO INSTALL IN THE ORACLE SITE IT IS INCORRECT!!! i cant remember it right, but the directory pertaining to the read me file is WRONG! im 100% sure because when i changed the directory to its correct path it WORKED!!! so u have to use common sense...
    also, if u r using tomcat 4.0.x try adding the location og the classes111.zip in the catalina.bat, coz when u run tomcat, it overrides the classpaths, etc that has been set in the autoexec.bat...
    also, dont unzip the file...
    i hope this helps... i had my code in another computer so i can post it here...

  • Help:how to use java.util.jar to zip or unzip a binary file.

    how to use java.util.jar to zip or unzip a binary file or a file contain native code.

    It may help you to know how I add JARs
    1. I open my Project (myProject)
    2. I Mount the JAR to the FileSystem (like mypackages.jar = which includes com.mus.de.myClass.java)
    3. I Mount the File to the FileSystem (like c:\..myfiles..\myProject)
    3.1 I add the File to my Project
    4. I select File | New -> Classes | Main
    4.1 I typed "import com.mus.de.myClass.java" to refer to this package.
    4.2 I called some of the public methods
    thats it
    Andreas

  • How to use oracle.sql.* package?(in nls_charset12.zip)

    is there anyone could tell me how to use the method in this package? for i want to convert a character set from the database (solaris)default character set to the client(win2000) while storing data into ResultSet.
    or anyway that could chnage it would be appricate.
    thanks in advice,

    Hello Gaurav,
    First off, not sure why you are calling
    call.addNamedArgument("JOB_ID", "JOB_ID_I");
    call.addNamedArgumentValue("JOB_ID", jobId);
    You should call the first statement to indicate you will be adding in a "JOB_ID_I" argument to the query, or the second statement to add the value directly to the call, but not both. Calling both indicates your procedure is expecting two parameters called "JOB_ID" and you will get an exception if you do not define the "JOB_ID_I" argument on the query and pass in a parameter for it.
    TopLink does not currently create Oracle objects such as Structs and VARRAYs for you from java objects - atleast not for stored procedures arguments, as it does not know how or what to convert them to. You will need to create the Oracle object type yourself, and pass it into the query. I have not tested it, but it would look something like:
    UnitOfWork unitOfWork = getUnitOfWork();
    StoredProcedureCall call = new StoredProcedureCall();
    call.setProcedureName("DSM_JOB_PKG.INSERT_JOB_RUN_LOG");
    String jobId = jobIdItr.next().toString();
    call.addNamedArgumentValue("JOB_ID_I", jobId);
    Timestamp sysdate = BeanConvertUtil.getCurrentTimestamp();
    call.addNamedArgumentValue("ORDER_DATE_I", sysdate);
    call.addNamedArgumentValue("USER_ID_I", userId);
    Connection con = getSession().getAccessor().getConnection();
    oracle.sql.ArrayDescriptor anArrayDescriptor = new oracle.sql.ArrayDescriptor("GENERIC_STRING_TYPE",con);
    oracle.sql.ARRAY anARRAYin = new ARRAY(anArrayDescriptor, con, paramTypeIds );
    call.addNamedArgumentValue("JOB_PARAM_TYPE_IDS_I", anARRAYin );
    oracle.sql.ARRAY anARRAYin2 = new ARRAY(anArrayDescriptor, con, paramValues);
    call.addNamedArgumentValue("JOB_PARAM_VALUES_I", anARRAYin2 );
    session.executeSelectingCall(call);

  • How to incorporate Win-zip Courier into Firefox when using Gmail?

    I use Gmail. When I use Firefox to open my Gmail, I could not use Win-zip Courier to encrypt my attachment.
    However, I can do so if I use Google Chrome to do the email attachment.
    Is there any step I missed when installing the programs?

    See this:
    https://support.mozilla.com/en-US/kb/Page+Zoom

  • How to Use Transient View Objects to Store Session-level Global Variables

    hi
    Please consider section "40.8.5 How to Use Transient View Objects to Store Session-level Global Variables"
    at http://download.oracle.com/docs/cd/E14571_01/web.1111/b31974/bcstatemgmt.htm#ADFFD19610
    Based on this documentation I created the example application
    at http://www.consideringred.com/files/oracle/2010/ProgrammaticalViewObjectAndRollbackApp-v0.01.zip
    It behaves as show in the screencast at http://screencast.com/t/qDvSQCgpvYdd
    Its Application Module has a Transient View Object instance "MyEmployeesContextVOVI", as master for the child View Object instance "EmpInCtxJobVI".
    On rollback the Transient View Object instance keeps its row and attribute values.
    Also when passivation and activation is forced (using jbo.ampool.doampooling=false ) the Transient View Object instance seems to keep its row and attribute values.
    questions:
    - (q1) Why does the expression #{bindings.MyEmployeesContextVOVIIterator.dataControl.transactionDirty} evaluate as true when a Transient View Object instance attribute value is changed (as shown in screencast at http://screencast.com/t/qDvSQCgpvYdd )?
    - (q2) What would be a robust approach to make a Transient View Object instance more self-contained, and manage itself to have only one single row (per instance) at all times (and as such removing the dependency on the Application Module prepareSession() as documented in "5. Create an empty row in the view object when a new user begins using the application module.")?
    many thanks
    Jan Vervecken

    Thanks for your reply Frank.
    q1) Does sample 90 help ? http://blogs.oracle.com/smuenchadf/examples/
    Yes, the sample from Steve Muench does help, "90. Avoiding Dirtying the ADF Model Transaction When Transient Attributes are Set [10.1.3] "
    at http://blogs.oracle.com/smuenchadf/examples/#90
    It does point out a difference in marking transactions dirty by different layers of the framework, "... When any attribute's value is changed through an ADFM binding, the ADFM-layer transaction is marked as dirty. ...".
    This can be illustrate with a small change in the example application
    at http://www.consideringred.com/files/oracle/2010/ProgrammaticalViewObjectAndRollbackApp-v0.02.zip
    It now shows the result of both these expressions on the page ...
    #{bindings.MyEmployeesContextVOVIIterator.dataControl.transactionDirty}
    #{bindings.MyEmployeesContextVOVIIterator.dataControl.dataProvider.transaction.dirty}... where one can be true and the other false respectively.
    See also the screencast at http://screencast.com/t/k8vgNqdKgD
    Similar to the sample from Steve Muench, another modification to the example application introduces MyCustomADFBCDataControl
    at http://www.consideringred.com/files/oracle/2010/ProgrammaticalViewObjectAndRollbackApp-v0.03.zip
    public class MyCustomADFBCDataControl
      extends JUApplication
      @Override
      public void setTransactionModified()
        ApplicationModule vApplicationModule = (ApplicationModule)getDataProvider();
        Transaction vTransaction = vApplicationModule.getTransaction();
        if (vTransaction.isDirty())
          super.setTransactionModified();
    }Resulting in what seems to be more consistent/expected transaction (dirty) information,
    see also the screencast at http://screencast.com/t/756yCs1L1
    Any feedback on why the ADF Model layer is so eager to mark a transaction dirty is always welcome.
    Currently, question (q2) remains.
    regards
    Jan

  • Plz suggest me How to use Third party jar files in ODI

    Hi all,
    I need to know how to use the third party jar files or our own customised jar file in ODI.
    regards
    palash

    Hi all,
    I am unable to implement..................
    I have one question, if I add any type 4 coneection supported jar file in my ODI_CLASSPATH can I use them in writing procedure to connect Databases
    I am trying to connect Oracle database by putting Ojdbc14.jar in the class path of ODI_CLASSPATH so that in my procedure I can use it .............but failed I dont know how to solve this problem.
    another thing Open Tools are delivered as a Java package (.zip or .jar) containing several files:
    A compiled Java .class file
    Other resources, such as icon files is it so ..............Then I can use full java apllication by preparing required bunch of classes and by set them appropriately in open tool
    need ur suggestion....
    regards
    palash

  • How do I disable zip folders in Windows 7?

    I like to use a third-party archive application, so I really don't like how by default Windows makes zip files expand automatically in Windows Explorer and show up in the folder view.
    So... How do I disable zip folders in Windows 7?
    In XP and Vista, I was able to find solutions to remove this "feature" 
    In XP, I simply did...
    regsvr32 /u zipfldr.dll
    In Vista, I had to remove a couple registry entries:
    Windows Registry Editor Version 5.00
    ; Disable ZIP support in Windows Vista
    ; restart Windows after applying this patch
    [-HKEY_CLASSES_ROOT\CLSID\{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}]
    [-HKEY_CLASSES_ROOT\CLSID\{0CD7A5C0-9F37-11CE-AE65-08002B2E1262}]
    I don't want to guess and delete the wrong registry entries if someone else knows which ones I need to remove.

    EDIT - I HAVE FOUND A SOLUTION
    After considerable browsing (thank you, Google), I have a solution that works. It is based on fixes for Vista, but works 100% for my Windows 7 64-bit install. 
    You will need to edit your registry (delete 2 different keys), so I highly recommend you back up your registry or better yet, make an image of your OS drive (probably C:\). I use Norton Ghost 2003 (only from a NG 2003 boot floppy) and have never had a single problem. Norton Ghost does not have to be installed on your system for this to work (in fact, it will stall due to compatibility issues). 
    First a note regarding the various reg tweaks that are available for download (e.g., "vistaunzip.reg"). These will NOT work - undoubtedly due to ownership/permissions issues. 
    The following two (2) keys need to be deleted fromthe registry:
    For zip files delete the regkey
    HKEY_CLASSES_ROOT\CLSID\{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}
    For cab files delete
    HKEY_CLASSES_ROOT\CLSID\{0CD7A5C0-9F37-11CE-AE65-08002B2E1262}
    When you try to delete them, you will almost certainly get an "access denied" or "failed" type of message. Before you can delete them, you need to change the permissions/ownership of these two keys. Here is how to do it:
    01 - open regedit from the RUN console
    02 - navigate to the first key that needs to be deleted (HKEY_CLASSES_ROOT\CLSID\{E88DCCE0- B7B3-11d1-A9F0-00AA0060FA31})
    03 - right click on the key and select "Permissions"
    04 - click on "Advanced"
    05 - click on the "Ownership" tab
    06 - in the "change owner to" section, highlight your username
    07 - check the box for "replace owner on subcontainers and objects"
    08 - click on "Apply"
    09 - Click "OK"
    10 - Under "Security" tab, highlight your username and check the box for "Allow Full Control" (located mid-menu in the "Permissions For Administrators" section)
    11 - click "Apply" and "OK"
    12 - you can now delete the registry key. MAKE SURE YOU ARE ON THE CORRECT KEY!
    13 - repeat the process for the 2nd key.
    14 - reboot (changes will NOT take effect until you reboot
    15 - VOILA! NO MORE ZIP FOLDERS! woohoo!
    16 - thanks to the original solvers of this problem, whomever they may be.
    I would like the same help that deedvd is seeking. How do I DISABLE the
    zip folder function? I do NOT want my zip files to appear as "folders".
    Why anyone in Redmond thought this was a brilliant idea is beyond me.
    It adds to clutter and makes file browsing a lot less enjoyable. I
    simply want my zip files to appear as files - with the ".zip"
    extension. Just like every other file. The responses to deepdvd were
    probably as frustrating to him as they are to me. Changing the default
    program for zip files is IRRELEVANT. It only changes whether Windows or
    some third party app (7Zip, Izarc, etc) OPENS the files. They continue
    to show up as folders.  I tried the unregister script (earlier thread)
    "Running regsvr32 /u %windir%\system32\zipfldr.dll should be enough to disable zip functionality. Then just run your 3rd party archite application and let it re-register archive files." and it did not work. I got the same error that deeddvd got "The module "C:\Windows\system32\zipfldr.dll" was loaded but the entry-point DllUnregisterServer was not found.
    Make sure that "C:\Windows\system32\zipfldr.dll" is a valid DLL or OCX file and then try again."
    I would love to find a resolution to this problem. If anyone out there knows how to DISABLE the zipfolder function, please post the solution. I am thanking you in advance.

  • How to use KAWT with "Sun Java Wireless Toolkit 2.3 Beta"?

    Hi!
    Im new to developing java for mobile devices so all of this is pretty confusing for me. I started with installing suns:s "Wireless Toolkit 2.3 Beta" and it works fine but now I want to use awt classes so I started to look it up and that�s how I found out about kawt. I followed the tutorial at http://www.kawt.de/ and i was able to use it for Java Wireless Toolkit 1.0.4_02 so that it compiled fine and was run able.
    Then I tried the same thing in v 2.3 but I got a error that looked like this "Uncaught exception java/lang/NoClassDefFoundError: awtDemo: /awt/event/ActionListener: Cannot create class in system package." when i tried to run it. It compiled fine when I pressed the build button witch wouldn�t have happened if i hadn�t installed it correctly. So I�m wondering if someone knows were to find a tutorial for installing kawt for "Sun Java Wireless Toolkit 2.3 Beta" or if anyone knows what might be wrong?
    I'd welcome any help
    Thanks!

    If using the zip install of DSEE, you need to use your own java container to host DSEE. Try downloading the latest Tomcat (http://tomcat.apache.org) and deploying your dscc in it.

  • How to use ActiveX Microsoft Office Excel Chart?

    Does anyone know how to use "ActiveX Microsoft Office Excel Chart" from CVI 7.0? I tried with following code but it did not draw anything.
    HRESULT MakeChartInExcelActivexCtrl(void)
    HRESULT error = 0;
    char szErrMsg[256];
    // Create a new chart with its own worksheet
    // ExcelRpt_ChartNew(workbookHandle,-1,&chartsheetHandle);
    SetWaitCursor (1);
    // Open new Range for Worksheet
    error = CA_VariantSetCString (&MyCellRangeV, EXCEL_ARRAY_OF_CELLS);
    error = Excel_WorksheetRange (ExcelWorksheetHandle, NULL, MyCellRangeV, CA_DEFAULT_VAL, &ExcelRangeHandle);
    CA_VariantClear(&MyCellRangeV);
    if (error<0)
    CA_GetAutomationErrorString(error, szErrMsg, sizeof(szErrMsg) );
    goto Error;
    error = Excel_GetProperty (excelChart, NULL, Excel_WindowActiveChart, CAVT_OBJHANDLE, &ExcelChartHandle);
    if (error<0)
    CA_GetAutomationErrorString(error, szErrMsg, sizeof(szErrMsg) );
    goto Error;
    // Create a XY scatter chart using the data we wrote to the worksheet as its data source.
    error = ExcelRpt_ChartWizard(ExcelChartHandle, ExcelWorksheetHandle, EXCEL_ARRAY_OF_CELLS,
    ExRConst_GalleryXYScatter, ExRConst_Columns, 0, 0, 0, 0, "Filtered Data Chart", "",
    "Weather Data", NULL);
    if (error<0)
    CA_GetAutomationErrorString(error, szErrMsg, sizeof(szErrMsg) );
    goto Error;
    // Change the plot lines to not display markers and smooth out
    // the plot lines. This is one of the plot styles available in Excel.
    error = ExcelRpt_SetChartAttribute (ExcelChartHandle, ER_CH_ATTR_CHART_TYPE, ExRConst_XYScatterSmoothNoMarkers);
    if (error<0)
    CA_GetAutomationErrorString(status, szErrMsg, sizeof(szErrMsg) );
    goto Error;
    Error:
    SetWaitCursor (0);
    CA_VariantClear(&MyCellRangeV);
    CA_VariantClear(&MyVariant);
    ClearObjHandle (&ExcelRangeHandle);
    ClearObjHandle (&ExcelChartHandle);
    ClearObjHandle (&ExcelChartObjHandle);
    ClearObjHandle (&ExcelChartsHandle);
    if (error < 0)
    ReportAppAutomationError (error);
    return 0;
    Attachments:
    excelActivexCtrl.zip ‏4692 KB

    I use C:\Program Files\National Instruments\CVI90\toolslib\activex\excel\excelreport.fp to  build/modify excel report.there is very detail configuration in this function moudule , hope it can help you 
    Sonic
    Diffrent Strokes for Different Folks

  • How to transfer iMac zipped file to PC

    How to download file , zipped or unzipped, transfer to flash drive to open on Xperia win PC

    You don't need to go through a PC.  http://www.sonymobile.com/us/tools/bridge-for-mac/ offers a connection to Macs to Xperia Smart phones.  I have not used it myself, but the software claims it does what you need.

  • How to use shift register in this structure?

    Dear All,
    In order to use less variety of graph, I want to use shift register to manage and send data to graph.
    But there is not only event structure in my vi, for some reason(because I want to use only one button to control running and stop, and this must do through variety of button, I can't put this loop into the event structure) I must use other while loops, I don't know how to use shift register in this structure.
    Please tell me anything helpful.
    Thank you!
    Attachments:
    shift register.vi ‏26 KB

    hi there
    there are a lot of solutions. my favorite one is the usage of a so called "FGV" (functional global variable). this allows you to strore, manipulate and transport data through your app with a minimum of wires. see attachment.. (other users may have other favorite solutions...)
    Best regards
    chris
    CL(A)Dly bending G-Force with LabVIEW
    famous last words: "oh my god, it is full of stars!"
    Attachments:
    Shift Register 7.1.zip ‏20 KB

  • Need an example how to use SCAN_Start with a callback function

    I would appreciate if someone helps me with a working example of how to use SCAN_Start with a callback function. I need just a basic functionality: to specify a channel list (with gains probably), to start a data acquisition task and to receive data buffers utilizing a callback function. t this time whatever I was trying to do caused computer hangups, though it is supposed to be one of the most regular tasks to perform.
    Thank you in advance,
    Mike

    Hello Mike,
    Thank you for contacting National Instruments.
    Attached is an example project which uses a callback function to begin analog acquisition (AI) by calling SCAN_Start. This project acquires from the first 2 channels on your DAQ device. Make sure to modify the device number in the code to match the number of your card.
    Let me know if you have any further questions...
    Sincerely,
    Sean C.
    Applcications Engineer
    National Instruments
    Attachments:
    Acquire_multichannel_61xx.zip ‏11 KB

Maybe you are looking for

  • Problem with installation on Fedora core 5 [OCRUTL]

    Hi We have problem with instalation XE on Fedora C5 64bit (RAID 10). In css.log we have errors: Oracle Database 10g CRS Release 10.2.0.1.0 Production Copyright 1996, 2005 Oracle. All rights reserved. [  OCRUTL][4143179440]u_set_comp_error: Parameter

  • Data is not updating from DSO to CUBE

    Hi Friends, Can any one please Guide me. Data is updating upto ODS but not from this lower level ODS to top of the  cube from last  week and displaying error as " Exception condition "DATE_INVALID" raised" . How i can proceed to find which date field

  • How is ResultSet.getString() SUPPOSED to return BINARY types?

    Hello All: I got a legacy code to support. The code uses ResultSet.getString() to retrieve BINARY data. ORACLE JDBC driver converts binary data to their hexadecimal representation. It also behaves "correctly" in this sense when I use setString() on p

  • Trying to get a reset info for account but no emails are sent

    Apple is really let me down this week, i used the option to reset my personal qeustions through the emailing link and it has failed FIVE TIMES! This could not have happen at the worst time as well so today i changed my email account after my own webs

  • Enhancements requested !!

    iPad Garageband, requested enhancements: Variable time signature per measure. Set a piece's key. Allow transposition of parts after being entered so that we can play it in a comfortable key, then adjust it for a singer's range.  I don't like playing