FreeBSD linux emulation and 8.0.5

Firstly does the license permit this and 2nd does Oracle 8.0.5
work under FreeBSD with Linux emulation.
null

Sorry to say (as you expecrienced) - the 8i JDBC driver does not
support 8.0.5 object features and thus SQLJ won't be able to,
either.
-- Ekkehard
Joe Bowbeer (guest) wrote:
: I'm using the 8i thin JDBC driver to connect to a 8.0.5.1
: database. As advertised, I was able to run all the standard 8i
: SQLJ demos in this configuration. Then I decided to run the
: Objects demo to test the state of the object extensions in
: 8.0.5.
: I was able to load the ObjectDemo.sql in the 8.0.5 database,
: which showed that basic user types and object references and
: other nice things are supported in the database, and I
: discovered that most of the ObjectDemo ran in this
: configuration.
: The part that didn't run was the updateObject part, which tries
: to pass an Address object as an Address object in an update
: statement. To work properly, the toDatum implementation of
: Address needs to work. But the struct-to-object conversion
: bombed with an internal error.
: Is this to be expected? I was hoping that if the object
: extensions were supported in the 8.0.5 database, and if the 8i
: JDBC driver is backward compatible, that the updateObject part
: would also work...
null

Similar Messages

  • Ccms agent on server with : FreeBSD, Linux ?

    Hi.
    i want to know if it's possible to manage a server with OS :
    - FreeBSD
    - SuSe
    - RedHat
    with SAP ccms agent.
    For example : it's possible to install a ccmsping on a server that have a FreeBSD like OS ?
    i know that it's possible with ubuntu.
    Thanks in advance.
    Regards.

    > For example : it's possible to install a ccmsping on a server that have a FreeBSD like OS ?
    With the FreeBSD Linux emulation layer it can be possible but the agent may read data hard coded from /proc filesystem and expecting a Linux output. FreeBSD is (how the name says) a BSD based system whereas Linux is more SVR4 based and has thus other structures.
    Try it!
    Markus

  • How do you locate a bug WITHOUT the emulator and the console?

    Hi.
    I'm new here and my English is not perfect but I'll try my best to explain my problem.
    I'm trying to port J2ME games to various mobile phone devices. I've no problem fixing bugs on Nokia, Sony Ericsson, or any models that offer an emulator and a console window.
    *** The problem is: In some case, The same build runs fine on Nokia/Sony emulator, but crash/freeze on LG phones.
    (this is just an example, it's not only LG phones that have this problem though)
    I believe it is possible to locate the bug by:
    - use the 'try/catch' block and print the error message using something like
    g.drawString(e.toString(),0,0,0);
    where 'g' and 'e' is a Graphics and Exception objects.
    But I wonder if there's a way to print 'everything that should be printed on the console', on the phones's display. So we don't need to manually put try/catch block.
    ok, to sum up the question.
    Question:
    1. Is there a way to print 'everything that will normally appear on the console', on the phones's screen?
    2. If no, then I'll need to try/catch the problem.
    But how can you use try/catch and "drawString" everywhere in the code?, while the actual drawing will be done only in the "paint()" method?
    I'm thinking of using 'getGraphics().drawString' when using try/catch outside the paint() method. but what's the point if the actual drawing will be done only in paint() method anyway...
    Sorry if it's a stupid question. I just started learning Java programming 3 months ago, let alone J2ME. >_<
    Thank you. =)
    /bow

    Hi Kakyoin,
    What I found was helpfull is creating a method in the MIDlet where you can display messages. For instance:
        public void createFormScreen(Alert alert) {
            // Set up the initial screen for the MIDlet
            Form formScreen = new Form("Your MIDlet name");
            firstScreen.append("Welcome to your MIDlet");
            myChoice = new ChoiceGroup(null, ChoiceGroup.EXCLUSIVE);
            myChoice.append("Your first choice", null);
            myChoice.append("Your second choice", null);
            formScreen .append(myChoice);
            formScreen .addCommand(OKCOMMAND);
            formScreen .addCommand(EXITCOMMAND);
            formScreen .setCommandListener(this);
            theListener = this;
            if (alert == null) {
                 theDisplay.setCurrent(formScreen Screen);
            } else {
                theDisplay.setCurrent(alert, formScreen);
        }So, from your constructor call the createFormScreen method, and your initial screen will be displayed.
    When an allert situation occurs in an object, call createFormScreen in a method like:
         protected void displayMessage(String title, String msg) {
              // Display the error message
              Alert error = new Alert(title, msg, null,
                        AlertType.ERROR);
              error.setTimeout(Alert.FOREVER);
              myMIDlet.createStartScreen(error);
         }Now the error message will be displayed on the screen indefenitaly. Off course your object where the error occurred should have a reference to the MIDlet object. I hope this helps you.
    Maik

  • Broken linux installation and not working start windows 7

    Ok so lets try it again. I have my Win 7 Home premium - given with new computer. So, how can i change bootmanager or bootpartition? Some guy here told me it will help. Can someone tell me it step by step- my windows doesnt start. What happened? I installed
    kali linux and stopped installation. It was ok. But I tried to install again and maybe linux locked some partition for itself. Now it stuck on black loading screen with windows logo. I tried factory settings, recovery but nothing helps. So i need help with
    changing bootpartition in windows. Or if u think problem isnt in partition, please help. Thank you.

    Hi, the fact you have a widnows logo is a good thing. It seems the bootloader is fine, but Windows might be confused because of changed partitions.
    boot the Windows cd and use Startup repair
    http://support.microsoft.com/kb/927392
    http://windows.microsoft.com/en-us/windows/startup-repair-faq#1TC=windows-7
    If that does not solve the issue, you can attempt to recover set the boot sectors using bootrec.
    Note that Windows setup does not recognize linux partitions and might in some cases destroy data on them or disbale booting them.
    If possible, could you post some more info on your failed Kali instalaltion? Did you reserve a partition or disk for it? Why did it fail?
    MCP/MCSA/MCTS/MCITP

  • Display of Custom Item in Emulator and Nokia Phone are different

    I'm creating a Custom Item which will either display text or image depending on the parameter. I tried with both displaying of text and image on the emulator and it looks reasonably well. However, when i install in my Nokia 6210, the display is not the same. The longer text (more than 30 characters including space) appears to be truncated as the Nokia 6210's screen width seems to be smaller. Then, i increased the minimum height in my code and break the texts to 2 lines to be displayed. Again, it's displayed well in the emulator but on the phone, the 2 lines of texts are overlapping.
    For image, i can position the image by changing the anchor of the image and x & y in g.drawImage. Again, it's displayed correctly on the emulator but it's not well aligned on the phone and the image looks to be smaller with the background rectangle of the Custom Item.
    What i want to achieve is to display the texts or image well aligned horizontally and vertically in various J2ME devices. Can anyone give me some clues like what parameters to change or to take note?
    Below are my code:
    import javax.microedition.io.*;
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import java.io.*;
    import java.lang.*;
    import java.util.*;
    public class BCItem extends CustomItem implements ItemCommandListener {
        private MyMidlet midlet;
        private String linkURL;
        private boolean isText;
        private String bannerText;
        private Image image;
        private final static Command CMD_OK = new Command("Visit Ads", Command.ITEM, 1);
        private String [] displayText;
        private String displayTextPart;
        private int displayableWidth;
        public BCItem (String title, MyMidlet midlet, String linkURL, boolean isText, String bannerText, Image image) {
            super(title);
            this.midlet = midlet;
            this.linkURL = linkURL;
            this.isText = isText;
            this.bannerText = bannerText;
            this.image = image;
            displayableWidth = midlet.getWidth();    
            setDefaultCommand(CMD_OK);
            setItemCommandListener(this);
         public int getMinContentWidth(){
        return 240;
      public int getMinContentHeight(){
        return 20;
      public int getPrefContentWidth(int width){
        return displayableWidth;
      public int getPrefContentHeight(int height){
        return getMinContentHeight();
      public void paint(Graphics g, int w, int h){
          if (isText) {
              g.setColor(0x000000);
              g.setFont(Font.getFont(Font.FACE_MONOSPACE, Font.STYLE_UNDERLINED, Font.SIZE_SMALL));
                g.drawString(bannerText,1, 1,
                       Graphics.LEFT| Graphics.TOP);
          else {
               try {
                g.drawImage(image, getMinContentWidth()/2 + 20, 1, Graphics.RIGHT| Graphics.TOP  );
            catch (Exception e) {
                e.printStackTrace();
      public void commandAction(Command c, Item i) {
          if (c == CMD_OK) {
              try {
                  System.out.println(linkURL + " visited");
                  if (midlet.platformRequest(linkURL)) {
                      System.out.println(linkURL + " visited");
              catch (Exception e) {
                  e.printStackTrace();
    }

    This forum isn't the complaints department, it's a place where users help each other. Obviously a fellow user cannot help you to resolve this.
    What you need to do is call nokia care in India and ask for the official complaints address. You will then need to write a polite letter (not an email) detailing your issues. They will respond to you and try to resolve the situation.

  • S10e -- Can I install Windows XP onto my Linux-Netbook and same way Linux on Windows Netbook?

    Hello all,
    I wanna buy a S10e and I still have one question:  
    Can I install Windows XP onto my Linux-Netbook and same way Linux on my Windows Netbook?
    I wanna use Suse for all my net applications and still wanna Windows for just old games running on a long trip as flights ect..
    Is it possible? Install booth?
    Thanks 
    Message Edited by ykin on 01-24-2009 12:43 PM

    Boot Camp will only let you install onto an internal disk. This is largely because of Windows restrictions, not Mac OS restrictions. The beta thread has some supposed approaches to let you do this, using manual steps instead of using Boot Camp Assistant.
    Doug

  • Oracle Linux 6 and Oracle DB for ERP System

    All,
    I have a few questions about using Oracle Linux 6 and the Oracle Database for our ERP Server. We are using a System that run off of Appache httpd and Tomcat and connects to an Oracle Database. We currently are running as a hardware installed server, with Oracle Linux 5 and 10gR2. We are looking to migrate to a Virtual environment as we run VMWare for all our other Servers and services. I have started the install of a development/test system. I wanted to install Oracle Enterprise Linux 6 x86_64 along with either 10gR2 or 11gR2. I noticed that 10gR2 was not certified on OEL6 hence why the thought of moving to 11gR2. The one issue I have is the ERP system is not a x86_64 system is there any way of running 32 bit apps on a 64bit OEL install? I would need to compile a few small 32bit C code programs so would need 32bit libs to compile against. Any support would be greatly appreciated. I know that OEL has an i386 install but I also know that the x86_64 has more support for Oracle DB.
    P.S.
    Our ERP System is programmed via a small company that does not certify anything. They have taken the approach if it works it works (not happy with this but it is what it is). So the main issue is I need to get Appache Httpd, Tomcat running along with ability to compile a few small 32bit apps.
    Edited by: Rever75 on May 7, 2012 1:45 PM

    x86-64 is an extension of the x86 32-bit CISC instruction set. The 64-bit extension provides support for long mode to address larger virtual and physical address spaces.
    You can generally run 32-bit applications on a x86_64 bit CPU and a x86_64 kernel, provided you have the appropriate i386 libraries installed. When you install Oracle 11gR2 11.2.0.1 for x86_64, appropriate i386 libraries are a prerequisite.
    Since x86 on a x86_64 CPU is still hardware, there will be no performance penalty to run 32-bit application. Btw, you cannot run 64-bit applications using a i386 kernel. The only exception I know is Mac OS X.

  • What are "emulated" and "removable" storage directories added after 4.2.2 upgrade

    Hi
    I notice that in addition to the sdcard0, sdcard1 and usbdisk storage directories there are now two more added after the 4.2.2 upgrade, called emulated and removable.
    Emulated has two sub-directories called O and legacy. They seem to contain virtual links to the real directories but I can't be sure.
    Can anyone explain what they are and whether I need them ?

    this stupid version of 4.2.2 that make some nonsence emulated storage that making ppl so troublesome!. dammit. cant even move app 2 sd card fxxx..ik

  • Can i have both Linux, Windows, and Leopard operating systems on my mac

    Can i use Bootcamp to have a Leopard OS, a Linux OS, and a Windows OS partitioned on my single Macbook?

    For Linux I much prefer having it under VMware Fusion because MacOS doesn't support ext3 and Linux doesn't support writing HFS, making it hard to share data between the two otherwise. The latest version of VMware Tools supports cut and paste between Linux and MacOS (last version of Parallels I used did not have ability to do cut and paste between Linux and MacOS and ran much slower with Linux) and Linux runs at pretty much full speed other than graphics (but I'm not running Linux for graphics, I'm running Linux for software development). Note that setting up your home directory (or a subdirectory thereof) as an NFS share, then mounting that within your Linux virtual machine, results in faster throughput than trying to do everything on the VMware virtual disk, all that lives on my VMware virtual disk is the actual operating system (I have my home directory mounted to a directory on my Mac where my source code lives). I usually use Aquamacs and p4v on the Mac side to actually edit and do source control on my source code, then pop down to the Linux window to compile it and do an initial smoke test to ensure that my fix actually fixed what I think it's supposed to fix, then pop back up to the Mac Finder to drag the result over to the open Finder window for the Engineering Test CIFS share on our corporate file server from whence the actual QA test systems in the lab can grab it and test it. It's a cool way to do Linux software development . Especially since I must develop for both 32-bit and 64-bit platforms for multiple distributions of Linux, and VMware lets me fire up a couple of them at a time (why I have 8GB of RAM? Now you know!) to do all this in a sort of overlapping manner.
    For Windows... meh. I've used both the latest Parallels and the latest VMware with Windows 7, and both of them are sluggish even after you turn off all the various GUI effects under Performance and Accessibility and if you don't give at least 2GB of memory to the virtualized Windows 7 it gets really slow if you try to do anything sizable at all (such as run Microsoft Office to edit things that for some reason don't edit correctly in OpenOffice/NeoOffice). So Boot Camp it is, especially for playing games, which simply is not acceptable at all under virtualized Windows 7. Oddly enough, Windows XP runs acceptably fast under both Parallels and VMware, so I'm not sure what Windows 7 is doing that makes it work so poorly under virtualization. But that's Microsoft for ya, I guess...

  • HTTP 401 error in CSADMIN for SAP content server on Linux OS and MaxDB

    Hi,
    We have installed content server on Linux OS.and DB as MaxDB.
    I created the repository using OAC0. The with same tab I went to CSADMIN.
    When I try to create repository with executing it , it ask for user name and password.
    I mentioned the SAPCS admin user name and password, but i got HTTP 401 error. Unauthorized user.
    Even i tried with prefixing domain name and with root user ID and password.
    But got the same error. Please help
    Regards,
    Hemant

    Hi
    We are also facing the same problem. but as you mentioned in solution.
    user: <domain>/<admin-user>
    pw: pw
    I am getting the same problem of Error 401. Kindly describe in detail with example.
    Thanks
    Regards,
    R Karthikeyan

  • I have Linux Ubuntu and when I tried to upgrade my firefox, my firefox icon disappeared!

    I have firefox 3.26 or something like that on my ubuntu linux 10.04 machine. I only tried to install/update firefox 7.0 and it would not let me do this. I got a tar.biz2 file and when I opened it with archive manager, the compression software, it just had a bunch of binary files and wouldn't do anything at all so I extracted them, but that did not help. It still would not do anything. How do I upgrade my firefox browser and how do I get my firefox icon back on my desktop? Or shall I uninstall firefox and install another version or what? Is 7.0 not compatible with Ubuntu Linux? And if I am running the correct firefox browser for Linux, how do I update firefox in the ubuntu software update? I have tried this.

    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
     Cheers, Tom

  • Can't find orasql9.lib in redhat linux es3 and oracle10g

    my system environment is redhat linux es3 and oracle10g
    i can use the pro*c/c++ ,but not find the orasql9.lib,
    how can i do !!!!

    pacman -Ql linux | grep usbnet
    linux /usr/lib/modules/3.6.10-1-ARCH/kernel/drivers/net/usb/usbnet.ko.gz
    Edit: oops, I see you said you checked the file list.  Sorry, I typed faster than I read.  If you do not get similar output to this, then the linux package isn't properly installed.
    Last edited by Trilby (2012-12-29 14:31:32)

  • WAGO Linux Controller and LabVIEW

    Hello,
    in WAGO catalogue I've seen two interesting products: The "WAGO-I/O-IPC" (758-870) and "Linux Ethernet Controller" (750-860). Both are working with Linux.
    I have'nt experience in Linux, IPC and LabVIEW RT, i'm only good in LabVIEW. But I want to know
    - if these two devices are programmable via LabVIEW RT,
    - where I can get information, what kind of target systems available for LabVIEW RT
    Thank you
    C. Dietz
    Test Engineering
    digades GmbH
    www.digades.com

    Hello,
    LabVIEW RealTime applications can currently run on PXI-Systems, desktop PCs, compact Fieldpoint, compact RIO and compact Vision systems. Please refer to this link for a complete overview.
    These hardware targets run Pharlap or VxWorks as operating system. LabVIEW supports Linux on Intel/AMD desktops but I'm pretty sure that those applications won't run on the WAGO-I/O-IPC or the Linux Ethernet Controller.
    Please let me know if you need further details.
    Best regards,
    Jochen Klier
    National Instruments Germany

  • Arch Linux Donations and 501(c) Status?

    I have an opportunity to donate to a non profit organization of my choice through my employer, Kellogg's, who will match my contributions. The first thing that came to mind was the Linux community and specifically, my OS of choice Arch Linux.
    The non profit organization however, has to be a 501(c) status. I couldn't find any info regarding Arch's 501(c) status.
    Would someone here be able to answer this question?
    Last edited by jeff story (2010-08-20 08:34:01)

    You might get a faster response if you directly contact one of the devs (Aaron?). Paraphrasing Allan, "nobody that matters follows the forum".
    Having posted that, the probability of someone answering your question here within the next 5 minutes (and even as I write this) has increased significantly.
    * hopes Kellogg's throw in a large shipment of assorted cereal with its donation, gets out bowl, spoon and milk *
    Gah, not trying to go off-topic here, but I just got an idea for a new cereal... Archies! Cereal "1"s and "0"s, maybe some "#!"s, and marshmallow Arch logos. May as well make it "Distros!" and throw in some other marshmallow logos... red Debian swirls... nom nom nom.
    Last edited by Xyne (2010-08-20 11:03:54)

  • Linux's and WXP's SJSAS8 installations returning different things.

    Hi all,
    I recently installed, in a single computer, SJSAS8 (J2EE1.4 SDK) for Windoze and Linux (XP and Mandrake Linux 10.0). Both are standard installations. Both have JDBC connection pools using MS Sql Server JDBC driver. Both have the same application deployed as EAR file. I expected both to give same results.
    The difference shows when retrieving XML through EJBs. While XP returns special characters correctly, Linux returns the '?' sign. I will spend more time trying to find what happens, but I just thought maybe someone else had already encountered and solutioned this behavior.

    This may not help much but this seems like a character encoding issue. My guess is the default character encoding on the 2 platforms are different and the default Linux encoding is not properly encoding some of the characters in your XML document, hence the ?'s. Perhaps you could modify the default character encoding on the Linux box to match the windows box and see if that helps. Maybe I'm off base here.

Maybe you are looking for

  • Cannot see control options in the player

    I have downloaded a free trail version of macromedia flash 6 on windows machine .whenever i try to open flash movie(.swf) from the player , the movie is played but i cannot see the control buttons with the movie .

  • How do i transfer all my old data from my old computer to my new one?

    I recently purchased a new computer and have all my iPod data on that computer but now want all that data removed from that computer and put on this one. Is this possible? If so can you tell me how to do it. I own an iPod Mini

  • Restricting records in the select statement

    Hi, I have one requirement where in i need to restrict my select statement to get only 250 records in the output table. Here are the select statements i am using....     SELECT a~ebeln                  a~lifnr                  a~ekgrp                

  • What's your fastest way to center align two objects without moving one of them?

    I will greatly appreciate your tips.

  • XML File Prasing /

    Dear Experts,                     I have generated XML file for Organization structure which will be mentioned below. <?xml version="1.0" encoding="utf-8" ?> - <OrganizationalStructureQueryResponse> - <OrganizationalEntity>   <Type>O</Type>   <ID>500