BETA TEST - Oracle softwares running on Linux S/390

I have Infrastructure to start Test Oracle running on Linux
S/390 I'd kile to know how we can receive Beta Test to perform
test with my customer application. I have short time to do this.

I have Infrastructure to start Test Oracle running on Linux
S/390 I'd kile to know how we can receive Beta Test to perform
test with Linux environment under S/390.

Similar Messages

  • When will the DIrectory Server run on Linux?

    Does anyone know when the DS software (and more specifically the admin server) will actually run on recent versions of Linux?
    The version of RHE it runs on is ancient...
    Is this typical Sun talking out of both sides of their mouth when it comes to Linux?
    Our enterprise will likely be forced to move to a different DS (eDirectory?) if Sun is going to continue to drag it's feet around making their software run on Linux.

    I can answer your questions but not in this forum - this is not the appropriate place to discuss products other than Sun's. You should be able to get my email address by clicking on the link to richm31415 next to Author:. If not, post here again.

  • Beta Testing Begins for New "Oracle Linux 5 and 6 System Administrator" (OCA) Certification Exam (1Z1-100)

    Oracle Certification begins beta testing this week for the new upcoming certification - Oracle Certified Associate, Oracle Linux 5 and 6 System Administrator. READ MORE

    We do have things in the works but cannot be announced prematurely. We'll put the word out on the [Oracle Certification Blog|http://blogs.oracle.com/certification/] as soon as possible.
    Cheers,
    - Harold

  • Installing oracle on Linux using the SAP version of oracle software

    Hello All,
    I am trying to install 32bit oracle software on Linux 32 bit os using the SAP version of Oracle Install Software downloaded from marketplace. I have downloaded the required exe and rar files and unpacked them on my PC. The unpacked folder is uploaded in bin mode to the respective server under a common mountpoint. In the folder i have 4 .SAR files with other label files etc.  I want to unarchive these .SAR files to get the runInstaller but running in to issues.
    Here are the steps I tried:
    1. I copied the SAPCAR exe from exe directory and tried to unpack the 4 .SAR files but got permission error. All these 4 .SAR files are owned by ora<sid> user id. I tried to do all these under root user still it fails.
    ora<sid>@xxxyysapdbXX:/sapdata//Oracle32/51031674> SAPCAR -xvf OR110232.SAR
    -bash: ./SAPCAR: cannot execute binary file
    what am i missing?
    Any help is greatly appreciated.

    If you have a 32bit OS then you need to use the 32bit binaries of SAPCAR - yes.
    And:
    Usually those SAR files are unpacked by the installation program sapinst, why do you unpack them manually?
    Markus

  • Error running java program (testing oracle-character-set-31 against ab?c )

    Hi
    When i run my java program from eclipse , i get these errors : how to correct these errors and run the program
    testing oracle-character-set-31 against <ab?c>
    PASSED LOSSY
    testing oracle-character-set-31 against <XYZ>
    PASSED LOSSY
    testing oracle-character-set-31 against <longlonglonglong...>
    PASSED LOSSY
    testing oracle-character-set-870 against <abc>
    PASSED
    testing oracle-character-set-870 against <ab?c>
    PASSED
    testing oracle-character-set-870 against <XYZ>
    PASSED
    testing oracle-character-set-870 against <longlonglonglong...>
    PASSED
    testing oracle-character-set-871 against <abc>
    PASSED
    testing oracle-character-set-871 against <ab?c>
    PASSED
    testing oracle-character-set-871 against <XYZ>
    PASSED
    testing oracle-character-set-871 against <longlonglonglong...>
    PASSED

    rxg wrote:
    Hi
    When i run my java program from eclipse , i get these errors : how to correct these errors and run the program
    ...Sun's not Oracle (yet). You will have better luck on a forum relating to whatever is producing that "oracle-character-set..." output.
    Edit:
    Although a Google search for "testing oracle-character-set" yields only this thread. Are you sure that output isn't part of your program?
    Edited by: endasil on 7-Oct-2009 3:40 PM

  • Unable to connect to Oracle database running on Windows machine from linux.

    Hi,
    I'm not able to connect to oracle database running on Windows machine from Linux machine. I'm geting the below mentioned error. I have given below the code I used to connect to database and database propertes.Do I need to use any specific driver?
    Please help me.
    Thanks,
    Sunjyoti
    Code :
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Connection;
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    class try2{
    public static void main(String args[]) {
    try {
              System.out.println("hi");
    // Load the properties file to get the connection information
    Properties prop = new Properties();
    prop.load(new FileInputStream("/home/sreejith/EDIReader/Connection.properties"));
    // Create a OracleDataSource instance
    OracleDataSource ods = new OracleDataSource();
    System.out.println("prop is "+prop);
    configureDataSource(ods, prop);
    Connection conn=null;
    // Create a connection object
    conn = ods.getConnection();
         System.out.println("Connection is"+conn);
    // Sets the auto-commit property for the connection to be false.
    conn.setAutoCommit(false);
    } catch (SQLException sqlEx){ // Handle SQL Errors
    System.out.println("In exception "+sqlEx);
    } catch(Exception excep) { // Handle other errors
    System.out.println(" Exception "+ excep.toString());
    private static void configureDataSource(OracleDataSource ods, Properties prop) {
    // Database Host Name
    ods.setServerName(prop.getProperty("HostName"));
    // Set the database SID
    ods.setDatabaseName(prop.getProperty("SID"));
    // Set database port
    ods.setPortNumber( new Integer( prop.getProperty("Port") ).intValue());
    // Set the driver type
    ods.setDriverType ("thin");
    // Sets the user name
    ods.setUser(prop.getProperty("UserName"));
    // Sets the password
    ods.setPassword(prop.getProperty("Password"));
    Connection properties :
    # Your Database Connection details
    HostName = 10.20.3.19
    SID = EDIREAD
    Port = 1521
    UserName = dbuser
    Password = dbuser
    Error I'm getting is
    error while trying to connect with odbc datasource
    [root@iflexpau2217 EDIReader]# java try2
    hi
    prop is {HostName=10.20.3.19, Password=dbuser, UserName=dbuser, SID=EDIREAD, Port=1521}
    In exception java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Also I tried to connect with weblogic JDBC driver
    Code is here:
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    //import com.entrust.toolkit.util.ByteArray;
    public class trial{
         public static void main(String args[]) throws IOException{
              System.out.println("hi");
              Connection p_conn = null;
              PreparedStatement xml_insert = null;
              try {
         // Load the JDBC driver
                   System.out.println("hi2");
         // String driverName = "oracle.jdbc.driver.OracleDriver";
    String driverName = "weblogic.jdbc.oracle.OracleDriver";
         System.out.println("hi2");
         Class.forName(driverName);
         // Create a connection to the database
         String serverName = "10.20.3.19";
         String portNumber = "1521";
         String sid = "EDIREAD";
         //String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String url = "jdbc:bea:oracle://10.20.3.19:1521";
         String username = "dbuser";
         String password = "dbuser";
    System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
         p_conn = DriverManager.getConnection(url, username, password);
         System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
              xml_insert=p_conn.prepareStatement("insert into PRTB_SUBUNIT (SUBUNT_ID,SUBUNT_SUB_UNIT,SUBUNT_PHYUNT_ID) values (?,?,?)");
              //InputStream in=null;
              File l_file=new File("/home/sreejith/EDIReader/propertyfiles/inputfile/BUG_10802_ES_CSB19_68.txt");
              BufferedReader input =null;
              input=new BufferedReader(new FileReader(l_file));
              String line = null;
              StringBuffer trial=new StringBuffer();
              while (( line = input.readLine()) != null){
                   trial.append(line);
                   trial.append(System.getProperty("line.separator"));
              //InputStream is = new BufferedInputStream(new FileInputStream(l_file));
              System.out.println(trial.toString());
              //Blob b ;
              //byte[] bytes=trial.toString().getBytes();
              //System.out.println("Size-->"+bytes.length);
              xml_insert.setString(1,new String("SpecailChar"));
              //xml_insert.setBinaryStream(2,new ByteArrayInputStream(bytes),15920);
              xml_insert.setString(3,"SpecailChar");
              xml_insert.executeUpdate();
              p_conn.commit();
              } catch (ClassNotFoundException e) {
                   System.out.println("ClassNotFoundException:"+e.getMessage());
              // Could not find the database driver
              } catch (SQLException e) {
                   System.out.println("SQEXCEPTIN:"+e.getMessage());
              // Could not connect to the database
              }catch (FileNotFoundException e) {
                   System.out.println("filenot found:"+e.getMessage());
              // Could not connect to the database
    Error I'm getting is
    error while trying with jdbc:
    SQEXCEPTIN:[BEA][Oracle JDBC Driver]Error establishing socket to host and port: 10.20.3.19:1521. Reason: Connection refused

    Is the Windows firewall active? Have you enabled the port on the firewall, if it is?

  • Can I run 32 bit version of Oracle 10g grid  on Linux x86-64?

    Since Oracle did not release 64 bit version of Oracle 10g grid for Linux X86-64. Can I run 32 bit version of Oracle 10g grid on Linux x86-64? If so did anyone tried this? and also any known issues?

    All I had to do was use the 32bit version of "/usr/bin/gcc" and "/usr/bin/g++" to run the installation
    That is:
    bin]# cp -p /usr/bin/gcc /usr/bin/gcc_old
    bin]# mv /usr/bin/gcc /usr/bin/gcc323
    mv: overwrite `/usr/bin/gcc323'? y
    bin]# ln -s /usr/bin/gcc296 /usr/bin/gcc
    bin]# cp -p /usr/bin/g++ /usr/bin/g++_old
    bin]# mv /usr/bin/g++ /usr/bin/g++323
    mv: overwrite `/usr/bin/g++323'? y
    bin]# ln -s /usr/bin/g++296 /usr/bin/g++
    AFTER INSTALLATION REMEMBER TO
    move back the 64bit files to their former state.
    bin]#rm /usr/bin/g++
    bin]#rm /usr/bin/gcc
    bin]#mv /usr/bin/gcc_old /usr/bin/gcc
    bin]#mv /usr/bin/g++_old /usr/bin/g++                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Onsite Beta Testing Next Oracle Database release

    We are having an onsite Beta testing of the great new Java DB and JDBC features of the upcoming major release of the database. If yourself or your company are interested, please fill the prospect form (at the link below). Upon selection, the Beta program office will send you a formal invitation
    http://otnbeta.oracle.com/bpo/prospects/index.htm
    Kuassi - blog http://db360.blogspot.com/
    ------ book http://www.amazon.com/gp/product/1555583296/

    I haven't heard anything about what actual functionality will be included in 11g.This is what amaze me most. When I look on a particular release specially 9i when they put all the cool feature like dynamic SGA, UNDO, STATSPACK (i know its there in 8.1.7) I was thinking they made it so simple now what else they can put or enhance in it? Then 10g came and once again with super cool feature like ASM, AWR, SQL Tuning which make the job more simpler and something which one couldn't think of. Now once again with 10g I am unable to think what else they can put into it and I am ready for an another excitement ride to explore whats there in 11G and it will keep going on.
    Daljit Singh

  • Run application developed with Oracle dev tools in Linux client

    Hi,
    In my organization we're using Oracle forms and reports as development tools and 10g database.
    We have developed an app that runs on Windows XP, and I would like to know what are the possibilities for it to run in a Linux client, such as Fedora, Ubuntu, etc.
    Is it possible? What would I need to do that?
    Thanks

    For Forms and Reports to run in Linux it (Linux) will need a Java plug-in.
    The last time I did this I used this:
    The file jre-6u12-linux-i586-rpm.bin was download from:
    http://www.java.com/en/download
    There should be instructions there on how to install and configure.
    I will include my short enable notes below: (Keep in mind these are about two years old)
    Enable and Configure
    1. Go to the plugins sub-directory under the Firefox installation directory
    This directory was:
    /usr/lib/firefox-3.0.1/plugins (On Red Hat AS 4)
    2. Enter the following command to create a symbolic link to the Java Plug-in for the Mozilla browser.
    ln -s /usr/java/jre1.6.0_12/plugin/i386/ns7/libjavaplugin_oji.so
    Note: Use ns7-gcc29 if Firefox was compiled with gcc2.9. (It was not)

  • Who will install ORACLE software on linux production environment?

    Hi Friends,
    there is a doubt for me on ORACLE software installation. i.e. who will install ORACLE software on linux production environment. either system admin or else ORACLE DBA.
    If DBA means, whether system admin will share the oracle root password.,
    If SYS admin means how DBA parameters during installation.
    Regards
    Sakthivel G

    NEW2DBA wrote:
    Hi Friends,
    there is a doubt for me on ORACLE software installation. i.e. who will install ORACLE software on linux production environment. either system admin or else ORACLE DBA.
    If DBA means, whether system admin will share the oracle root password.,
    If SYS admin means how DBA parameters during installation.I have a doubt - about needing any parameters during a software-only install.
    Since every version of Oracle available now (except 11.2) needs patches, a new installation should not create the database right away. Therefore, a software-only install is the most reasonable thing to do. And if no DB configuration parameters are required at s/w-only time, then it makes somewhat sense for the SysAdmin to do the install.
    Therefore, it makes sense to me that the two groups (DBA and SA) might want to work ... together. (ROFLMAO)

  • Oracle on Alpha running SuSe Linux

    Will Oracle run on an Alpha processor running SuSe Linux 7.0

    Hello....
    Anyone out there???
    Or am I to interpret the lack of an answer as a lack of a release date? :)

  • Oracle 11gr2 Software Installation on Linux Using Shell Script

    Hi,
    I have requirement to install Oracle Software on Linux Using shell script, with out any manual entries.
    Thanks,
    loganathan

    Srini_Chavali wrote:
    Pl identify exact version of database and OS.
    Ed - not sure where you looked :-) but response files can certainly be used for an automated installation (which is what I think OP is referring to)
    http://docs.oracle.com/cd/E11882_01/install.112/e24321/app_nonint.htm#BABFEECI
    HTH
    Srini
    You are right.  I must be losing it.  My failure rate lately has been abnormally high.  I don't remember exactly how I searched before .. I thought I opened the Installation Guide an searched for 'silent' in "this document only" -- but all I came up with was references to dbca and emca ... nothing for OUI itself.  Now that I go back and do the same search, there it is.

  • Oracle Software Packager is not Running!!! Help me....

    Hello,
    I have Installed Oracle Software PAckager on Windows 2000 but it is not running... No Error message just the WIndow disappear without Any Error...
    I Have JDK 1.3.1 installed on my machine.. Please Help me... Out at your earliest........
    Thanks In Advance..
    Shan

    Environment variables:
    CLASSPATH = <drive:>\jdk1.1.8\lib\classes.zip
    PATH = <drive:>\jdk1.1.8\bin;......
    Best to have jdk first in path.
    HTH,
    Ed.

  • Run Oracle Business Intelligence on Linux

    Hi,
    I installed Oracle Business Intelligence on Linux. Work fine!
    I have one question: How to start service from Linux shell?

    In 10.1.2
    $OH/opmn/bin/opmnctl stratproc ias-component=Discoverer
    cu
    Andreas

  • Oracle 9i Database for Linux

    Hello,
    I need to be able to test some software changes against an Oracle 9i database running under Linux as this is an environment used by one of my customers.
    I have tried downloading the zip files found at http://www.oracle.com/technology/software/products/oracle9i/htdocs/linuxsoft.html but if I try to open or download any of these files I receive an Error 404 Page Cannot Be Loaded.
    This happens when using IE6 or when using GetRight.
    Are the links to these files still valid? If not, where can I download Oracle 9i Database for Linux?

    I don't find any problems with these files and they are still available.

Maybe you are looking for

  • Printing to shared windows printer - used to work, doesn't now

    Once upon a time I was able to print from my powerbook to the HP LaserJet 1300 connected to my father's windows computer. I was wireless and the windows pc is wired to the network. I could see all the computers on the network and i could print and fi

  • Linee motion on tv monitor and computer monitor!!!!

    I red a lot of discussion about this Problem, but i m not convince with the answers. Even i wach my video on my tv after burning a DVD, I have still those horible lines when I have got motion in my movie. If I use the antifliker filter it desapear bu

  • NAT ASA destination address

    Hi I am using a ASA 5540 running version 7.2(3) and would like to pass all http and https requests coming from the inside of the ASA to an external proxy server on the internet (All request need to pass to port 8080). I've tried using static commands

  • Proforma (Export Invoice) invoice not transferring to GTS system from ECC

    Hi All, below mentioned was the error  that displayed  while transferring the Proforma invoice( export invoice) from  ECC to GTS system  in SM58  t code . Can any please through some light  on this  error Item category missing for item 1. I checked t

  • Can I use SSIS to do this?

    I am new to SSIS and wondering if this is possible and if so can anyone explain to me the data flow that would be necessary. We are currently upgrading our databases. During this process we need to change values of medical lookup values from the firs