O8i on NT

hi,
what is the optimum hardware requirement for installing O8i EE on NT4 for an internet application .. ?
i'm now planning to use 256MB ram, 6GB harddisk x2 and a single PIII processor.
The data volume is as small as 10 MB per month and there should be at most 100 per hour.
Thx.

I guess you're database on Linux is using another character set
than your database on NT. Or your session is using another
character set than the one used by the database.
Try an import with the DIRECT parameter set to FALSE or N.

Similar Messages

  • How to use Servlets with O8i on RH Linux 6.2 ???

    I'm using apache Jserv 1.1.2 to run my servlets all my JDBC programs work fine and other servlets too but only JDBC servlets give this message
    "SQLException caught Io exception: The network adapter could not
    established the connection"
    Can someone tell me How to configure JSERV to make connection ?

    Hi there,
    If I understand correctly you are running Jserv and Apache to connect to an Oracle 8i db on a remote machine. If you are getting the "network adapter" error make sure the listener is running on the remote machine (lsntrctl start -- lsntrctl status, or something like that from bash shell). Also make sure SQLNet is configured properly. Try connecting from a machine with SQL Plus. If this works and the listener is running you should be in business.
    Best
    Scott ([email protected])
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by CSL ():
    I'm using apache Jserv 1.1.2 to run my servlets, a remote database on O8i on linux. all my JDBC programs work fine and other servlets too(with no JDBC) but only JDBC servlets give this message
    "SQLException caught Io exception: The network adapter could not established the connection"
    Can someone tell me How to configure JSERV to make connection ?<HR></BLOCKQUOTE>
    null

  • O8i on RH5.1

    Dear all:
    I am install O8i on RH5.1. I meet some problems.
    1. After i finish running root.sh as root, i can't connect to
    database with sqlplus. The error tells me i have not enough
    previlige.(But i can use sqlplus with login account oracle(db
    account of OS(). Anyone has install O8 on RH5.1?
    null

    That's working as designed: you have to set the proper
    environment variables and use username/password if working as
    root (which you shouldn't do, anyway).
    To check out the environment variables have a look at .profile of
    the Oracle user.
    Yang Yong (guest) wrote:
    : Dear all:
    : I am install O8i on RH5.1. I meet some problems.
    : 1. After i finish running root.sh as root, i can't connect to
    : database with sqlplus. The error tells me i have not enough
    : previlige.(But i can use sqlplus with login account oracle(db
    : account of OS(). Anyone has install O8 on RH5.1?
    null

  • O8i RMAN for O9i databases

    Can I use O8i RMAN to backup and restore O9i database?

    No you can't.
    You need to have a rmanexecutable >=9.0.3
    I dont know Denis get his information from?
    /Jonas

  • OCI under O8i and/or O9i (hope it's not off-topic!).

    Does anyone know where I can d/l pdf documentation for OCI under 8i - or I will accept 9i at a pinch if the OCI libraries
    work under O8i as well. I've scoured Metalink and Technet docs but it seems there's no "pure" documentation on OCI at
    either place.
    On a more specific note:
    I want to write an OCI user-exit to run from Oracle Forms which does some very fancy pre-processing of binary BLOB
    data extracted from the server. 2 questions:
    1) Do I have to initialise a new process environment in the user-exit? or does the Forms executable already do that?
    If so - what's the environment handle called?
    2) Is there a way of displaying (read-only) the processed output from my BLOB into a Forms text object?
    (I wondered if I bound my text object to the output of a PL/Sql block and called the OCI code from the PL/Sql?)
    Has anyone ever done this? If so any light you can shed would be very appreciated (even ifit's only "DON'T DO IT!").
    Thanks in advance,
    Ian.

    Hello Jens,
    Yes, that irregular pattern on the screen and the no-start up are signs that your graphics card is going or gone. I hope you have the model & year of your Mac Pro: must match up with compatible (or altered via process called "flash") card.
    Many owners of Mac Pro model 1,1 (2007) have found that the graphics card - NVIDIA GeForce 7300 GT - died prematurely. Capacitor burn out is the problem. Limited options for replacement.
    Apple Store lists only: ATI Radion 4870. It's $349 USD but it's a better graphics card by far.

  • Msql and o8i - using a default value in an insert

    1. In an Oracle 8i Enterprise DB I have a primary key in table FOO called FOO_ID, it's SQL description is:
    FOO_ID NUMBER DEFAULT TO_CHAR(sysdate, 'HH24MMSSMMDDYY') NOT NULL
    1.5 I test via TOAD inserting a record into the DB without specifying FOO_ID, but specifying other values in the table row. I commit the data. When I commit the table correctly fills in FOO_ID with a time/date stamp per the above definition.
    2. I run wtgpack and create an application which uses this table. I check the SQL code to make sure the column definition is copied to the snapshot which will be the basis for Oracle 9i Lite mobile DB on my laptop.
    3. I run msync.exe and get the DB.
    4. I run msql to make sure the data replicated ok. It did.
    5. I run an INSERT statement not specifying a primary key hoping that the default will be used. For example,
    "INSERT INTO FOO (FOO_TYPE) VALUES ('Test Type')";
    I get the following error from msql:
    [POL-3221] null key in primary index
    The questions is, why isn't the O9iLite DB using the default value when creating the new record/row?
    Thanks,
    Z

    Danny is spot on, but a little elaboration for the beginner:
    childValue == "yes" asks whether these two are the exact same String object. There are times when that's true, but it's unlikely. Instead, use String equals() ( childValue.equals("yes") ) to ask whether the two have the same value.
    With the simple class Danny suggests:
    class Vessel {
       private boolean assessed;
       private int stenosis;
       public boolean isAssessed() { return assessed; }
    }All you need in the loop is
    Iterator vessels = vesselAssessed.values().iterator();
    while (vessels.hasNext()) {
       Vessel vessel = (Vessel) vessels.next();
       if (vessel.isAssessed()) {
    }

  • O8i dmp file to Oracle XE

    I have an Oracle 8i dump file and need to transfer/load it to Oracle Express on my laptop.
    What are the steps to do this?
    Or, where can I find the documentation to do this?
    Tom,
    [email protected]

    Where do I run this?You run it from the command prompt. Make sure the path %ORACLE_HOME%\bin is in your path.
    >
    imp userid=system/password file=your_dump_file full=y
    show=y log=check.log
    is the "file=your_dump_file" fully qualified?
    e.g.; imp userid=system/??
    file=C:\DATA\DUMPs\060922\ecmsp.dmp full=y show=y
    log=check.log
    Yes, you need to provide the path if the dump file is not in the directory in which you are running the imp command.

  • Problems writing BLOB data into O8i (ADO and AppendChunk)

    We have a table where you want to store bianry data (BLOBs). I
    have used the LONG RAW datatype to store this information. Here
    is the code for the table:
    CREATE TABLE "CONTENTBLOBTABLE" (
    DIGEST NVARCHAR2(40) NOT NULL,
    BLOB LONG RAW,
    CHECK (DIGEST IS NOT NULL),
    PRIMARY KEY (DIGEST)
    Then we try to update this table with ADO 2.6 on a Windows 200
    machine with Oracle ODBC driver. Here is the relevant code
    snippet:
    // set the value of the field
    pRs->AddNew();
    pRs->Fields->GetItem("DIGEST")->PutValue(strDigest);
    pRs->Fields->GetItem("BLOB")->AppendChunk(varBLOB);
    if(!pRs->Update())
    C_LOG_CRITICAL(L"CC_CS_DAL::WriteBLOB - pRs->Update failed");
    *error = C_CS_CBT_ERROR;
    pRs->CancelUpdate();
    pRs->Close();
    m_pConn->Close();
    m_spObjectContext->SetAbort();
    return S_FALSE;
    OK, NO error occurs: no exception, HRESULT return values are all
    OK, method completes.
    BUT: there is no data in the table!?!?! When querying the exact
    same table we get an empty result!
    Any ideas please?
    Thanks,
    Christian

    Did you even get a reply to this message?

  • IFS and O8i Personal Edition

    In order to to provide customers with an IFS demo application, can IFS be run on Oracle8i Personal Edition V8.1.6?

    iFS is only support with Standard or EE editions of Oralce 8.1.6

  • O8i on Linux 2.2.7?

    Hi everybody,
    I am trying to select a database for our company's application.
    Currently we have Liunx 6.1 with kernel version 2.2.7. Can
    Oracle 8i, release 8.1.5 run on the linux version we have here?
    It seems from Oracle's web site, it supports 2.2.
    Another question is that is it easier to run oracle on Liunx or
    NT?
    Thanks a lot.
    Helen
    null

    The kernel has nothing to do with it. The most likely cause of a difference would be using different JVMs. Failing that, it could at a pinch be different windowing toolkits or window managers, but I'd be surprised.

  • Migrating SQL Server 7 to O8i

    Please refer to TAR # 2005705.995 for more details.
    I am unable to migrate SQL Server 7.0 database into oracle 8i . While in the
    capturing stage I get the following errors shown in the attachment . It hangs
    while tyring to make indices. I tried aborting the operation but it wouldn't
    let me do it . it says cannot abort the application.
    After waiting for ages, I therfore use TASK MANAGER in NT I kill me OMWB
    application.
    I get plenty of EXECEPTION ERRORS failed to map tables and then it gets stuck while trying to create indices.
    Please refer to TAR # 2005705.995 for more details.

    Hi,
    You can perform this action with the Oracle Migration Workbench. Just install the Workbench on the same machine as your SQL Server database.
    You can then configure the workbench to point to the oracle database on your Sun machine.
    You can use the Oracle database on your Sun machine for both your destination database (the database to which you migrate your SQL Server schema and data) and workbench repository.
    In order to do this you will need to configure a tnsnames.ora entry. The tool that will do this configuration for you should be started up at the end of the workbench installation. It is a fairly straightfoward process.
    You then need to create a user in your oracle database that will store the workbench repository.
    Once you have comleted these steps you will be able to migrate SQL Server on NT to Oracle on Sun.
    It is exactly the same process as migrating to Oracle on NT except you are pointing the Workbench to Oracle on a Sun box.
    Regards
    John

  • O8i- Builtin function not working

    Hi all,
    I am working on Oracle 8i
    But when I give the command :
    select empno,ename,sal, row_number() (order by comm nulls last)
    as srnum
    from emp
    It shows:
    select empno,ename,sal, row_number() (order by comm nulls last)
    ERROR at line 1:
    ORA-00923: FROM keyword not found where expected
    Although this is in Oracle Technical White Papers' Oct'99
    Pl. Help :)
    Munish Arora
    null

    alright well i have this now,
    main.mxml
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" xmlns:local="*">
    <mx:Script source="functions.as"/>
    <mx:Label text="Label: {loginStatus}"/>
    <mx:ViewStack selectedIndex="{loginStatus}" width="100%"
    x="0" y="0">
    <local:login/>
    <local:environment/>
    </mx:ViewStack>
    </mx:Application>
    functions.as
    [Bindable]
    public var tileData:Object;
    [Bindable]
    public var loginData:Object;
    [Bindable]
    public var loginStatus:*;
    private function resultHandler(event:ResultEvent):void {
    tileData = event.result.tiles.tile;
    public function loginHandler(event:ResultEvent):void {
    loginData = event.result.Character.CharacterInfo;
    loginStatus = event.result.Status.loggedIn;
    then theres also the Login.mxml component, everything works
    fine in there the loginStatus variable displays fine but then in
    the main.mxml if i try to call the loginStatus it doesnt show and i
    have to have the var set to * or else it doesnt let me put it
    inside of the selectedIndex because otherwise it would need to be a
    object.

  • An error of O8i Context index

    My Server NT4.0 SP5
    160 Mb RAM
    P-III 450 CPU * 1
    Oracle 8.1.5 Enterprise Server;
    when I execute the Sql
    "create index product_description
    on product(description)
    indextype is ctxsys.context;"
    "description" is column of a varchar2 type .
    but happened
    "DRG-11422 linguistic initialization failed
    Cause: Linguistic services initialization failed; possibly out of memory."
    Is it really memory insufficient?
    null

    Hi,
    obviously its a wrong use of org.apache.myfaces.trinidad.event.SelectionListener
    Caused By: java.lang.InstantiationException: org.apache.myfaces.trinidad.event.SelectionListener
    The class cannot be instantiated which indicates a failed argument (or missing argument)
    Frank

  • Webdb on O8i/Linux RH6.0

    I have installed Oracle8i on redhat 6.0. It works fine.
    I did install Webdb according to the maninst.htm document.
    The command "wdblsnr hostname 80" executed without error,
    "wdblsnr -console hostname 80" was rejected
    (which process is associated with the listener?).
    The webbrowswer returned
    "The requested URL /webdb/admin_/gateway.htm was not found on
    this server."
    Does anyone know what went wrong and how to proceed?
    Thanks, Christian
    null

    You'll have to be prepared to wade through and understand the Linux way of recompiling your kernel. The files can be located using the "find" command. There is some great "HOW-TO"s in the Linux RedHat site.
    Tip: Be very careful how you answer the "make config" questions because it can mess up the resulting VMLINUZ object. Also, be sure to place secondary entry in your "lilo.conf" to allow you a graceful way of getting back to the old kernel should the new one fail.
    Good Luck!

  • O8i lite sdt.h header file is missing

    Hi!
    I just downloaded Oracle 8i lite and discovered that okapi.h
    modified and now includes sdt.h than is missing.
    Who can help me to find it?
    Thanks in advance.
    Regards,
    Mike
    null

    You are asking about LabWindows in the LabVIEW board but have you checked the include folder of c:\vxipnp\WinNT? That's where it's supposed to be installed. Or have you done a search for them?

Maybe you are looking for

  • Client 10.1.0.3.0 Vs Runtime Service 10.1.0.2.0

    My Owb client run on a Win32 box, the Runtime Service run on a Linux ( Suse ) box. The client is patched with release 10.1.0.3.0 but I cannot find the same patch for linux platforms, so when I try to deploy my project on the Runtime repository the OW

  • I can't work out how to transfer my photos and what not from my iPhone 4 to my iPhone6 via iCloud

    I've recently purchased an iphone 6 and am trying to transfer all my photos and documents from my iphone 4 to my iphone 6 via iCloud. However I can't seem to work out how to do it. Please someone help!

  • IMessage login won't go away

    I DO NOT want to use iMessage and WILL NOT give them my login. The frigging login box keeps popping up and keeps me from using my iPhone. I did not install anything. Cannot get past it. OK, Cancel, OK, OK, OK,OK,Cancel, Cancel, Cancel, Tried off/on.

  • New VIA Drivers and Live-Update

    I noticed the latest VIA drivers are not yet available for download using MSI's Live Update prgram. Is it ok to download them seperately from the official VIA site? Or should I just wait for the Live Updater to get them? Just Wondering...

  • Question about operations allowed in methods of stateless and stateful bean

    Hello, Can anyone tell me why ejbRemove and ejbCreate are allowed entreprise beans and resource manager access in stateful session beans and not in stateless session beans? Thanks in advance, Julien Martin.