Assistants Failure toward end of Oracle Install

Using the OUI I installed the Server but skipped database
creation.
toward the end 2 of the Assistants failed:
Net8 Configuration Assistant
Oracle Database Configuration Assistant
how do i run these utilities separately?
Do I reboot and restart the install?
It appears that the ORACLE_SID variable wasnt set either...how
do i do this manually?
Thanks for the feedback!
Calvin Mitchell, IS Operations Mgr.
Makoff R&D Laboratories, Inc.
http://www.rndlabs.com
mailto:[email protected]
http://home.pacbell.net/cal_mitc
mailto:[email protected]
mailto:[email protected]
null

OK!
took care of the shared libs (they were there all along, just
had to make changes to LD_LIBRARY_PATH & /etc/ld.so.conf) and
netasst runs...
I added -verbose to the jre command and classes are loaded in
the following order:
java/lang/Thread
java/lang/Object
java/lang/Class
java/lang/String
java/io/Serializable
java/lang/ThreadDeath
java/lang/Error
java/lang/Throwable
java/lang/Exception
java/lang/RuntimeException
java/lang/Cloneable
java/lang/Runnable
java/lang/ThreadGroup
java/lang/StringBuffer
java/lang/System <----------------
java/lang/Integer
java/lang/Number
java/lang/NullPointerException
...all of which are being loaded from the symlink rt.jar that
points to classes.zip
After this comes the message:
Can't find class java.lang.System
Could not create java VM
Any Ideas???
Calvin Mitchell (guest) wrote:
: After chmod'ing my java libs to executable (DUH!!!) and making
: some other adjustments, i've eliminated all errors...
: but netasst just starts and stops.
: SOOOO......
: I did a strace; and it seems my jdk/jre 1.1.7v3 is missing
some
: shared libraries:
: libnss_files.so.2
: libnss_nisplus.so.2
: libnss_nis.so.2
: I do have nis.jar, and will add that to my classpath.
: Anyone know where i can obtain these libs?
: Calvin Mitchell (guest) wrote:
: : Thanks for the feedback, John.
: : However, even after following your advice, the java runtime
: : still can't locate java.lang.System.
: : Thinking it was a rights issue, i did chmod...i even
extracted
: : the classes.zip contents into the lib subdir of jre...with
the
: : same results...
: : Another clue, however, is that I don't use the
: LD_LIBRARY_PATH...
: : Instead i place the ../8.1.5/lib path in /etc/ld.so.conf and
: run
: : ldconfig as root.
: : Funny thing is: when i run ldconfig i get errors on the
: : following files:
: : libnjni8.so
: : libqsmashr.so
: : libordimg8.so0
: : libordvir8.so0
: : The error is "warning: can't read header from <full libname
: : path>, skipping"
: : Another user said those files are zero length...???
: : perhaps i need to locate the authentic rt.jar...any ideas
: where
: : i might find it???
: : John Salvo (guest) wrote:
: : : Calvin,
: : : The script to run assistant apparently included rt.jar in
its
: : : classpath, but (if you are using 1.1.6v5 from blackdown),
: there
: : : is no rt.jar. The runtime (hence called rt.jar) classes are
: : : stored in classes.zip
: : : What I did was ln -s classes.zip rt.jar.
: : : That solved it for me.
: : : John Salvo
: : : Calvin Mitchell (guest) wrote:
: : : : I've now discovered that the Net8 Configuration
Assistant
: : runs
: : : : from /oracle01/app/oracle/product/8.1.5/bin/netasst.
: : : : the script WIPES OUT all of /etc/profile's CLASSPATH and
: : : : replaces it with it's own settings.
: : : : It does, however, look to /usr/local/jre for runtime
libs.
: : : : How do I get netasst to see the java.lang.Thread class???
: : : : Calvin Mitchell (guest) wrote:
: : : : : I've included below my /etc/profile & /etc/ldconfig
: : : : : This is a testbed for an intranet so i'm not that
: worried
: : : : about
: : : : : security.
: : : : : I've also linked /usr/local/jre to /usr/share/jre117_v3
: : : : : # /etc/profile
: : : : : # System wide environment and startup programs
: : : : : # Functions and aliases go in /etc/bashrc
PATH="$PATH:/usr/X11R6/bin:/usr/local/bin:/usr/share/jdk117_v3/bi
: : : : : n"
: : : : : PS1="[\u@\h \W]\\$ "
: : : : : ulimit -c 1000000
: : : : : if [ `id -gn` = `id -un` -a `id -u` -gt 14 ]; then
: : : : : umask 002
: : : : : else
: : : : : umask 022
: : : : : fi
: : : : : USER=`id -un`
: : : : : LOGNAME=$USER
: : : : : MAIL="/var/spool/mail/$USER"
: : : : : HOSTNAME=`/bin/hostname`
: : : : : HISTSIZE=1000
: : : : : HISTFILESIZE=1000
: : : : : INPUTRC=/etc/inputrc
: : : : : JDK_NO_KERNEL_FIX=true
: : : : : JAVA_HOME=/usr/share/jdk117_v3
: : : : : SWING_HOME=/usr/share/swing-1.1
: : : : : SWING_JARS=${SWING_HOME}/swingall.jar
: : : : : CLASSPATH=.:${JAVA_HOME}/lib:{SWING_JARS}: \
: : : : : /oracle01/app/product/8.1.5/jlib: \
: : : : : /oracle01/app/product/8.1.5/javavm/lib
: : : : : THREADS_FLAG=
: : : : : NS_JAVA=
: : : : : DYN_JAVA=
: : : : : ORACLE_BASE=/oracle01/app/oracle
: : : : : ORACLE_HOME=${ORACLE_BASE}/product/8.1.5
: : : : : ORACLE_SID=sidrdora
: : : : : ORACLE_TERM=386
: : : : : ORACLE_OWNDER=oracle
: : : : : export PATH PS1 HOSTNAME HISTSIZE HISTFILESIZE USER
: : LOGNAME
: : : : MAIL
: : : : : INPUTRC
: : : : : export JDK_NO_KERNEL_FIX JAVA_HOME CLASSPATH
: THREADS_FLAG
: : : : : NS_JAVA DYN_JAVA
: : : : : export ORACLE_BASE ORACLE_HOME ORACLE_SID ORACLE_TERM
: : : : : ORACLE_OWNER
: : : : : for i in /etc/profile.d/*.sh ; do
: : : : : if [ -x $i ]; then
: : : : : . $i
: : : : : fi
: : : : : done
: : : : : unset i
: : : : : # ld.so.conf
: : : : : /usr/i486-linux-libc5/lib
: : : : : /usr/X11R6/lib
: : : : : /usr/local/jre/lib/i686/native_threads
: : : : : /usr/local/jre/lib/i686/green_threads
: : : : : /oracle01/app/oracle/product/8.1.5/lib
: : : : : Calvin Mitchell (guest) wrote:
: : : : : : The Details message on both Assistant failure is:
: : : : : : Unable to initialize threads: cannot find class
: : : : : java/lang/Thread.
: : : : : : Could not create java VM.
: : : : : : And have both the jdk and jre for 1.1.7v3
: : : (www.blackdown.org
: : : : : : doesnt have a 1.1.6 for the x86 platform) with all
env
: : : : : variables
: : : : : : setup (been running it on my laptop for sometime
with
: no
: : : : : : problem).
: : : : : : Another clue!
: : : : : : Calvin Mitchell (guest) wrote:
: : : : : : : Using the OUI I installed the Server but skipped
: : database
: : : : : : : creation.
: : : : : : : toward the end 2 of the Assistants failed:
: : : : : : : Net8 Configuration Assistant
: : : : : : : Oracle Database Configuration Assistant
: : : : : : : how do i run these utilities separately?
: : : : : : : Do I reboot and restart the install?
: : : : : : : It appears that the ORACLE_SID variable wasnt set
: : : : : either...how
: : : : : : : do i do this manually?
: : : : : : : Thanks for the feedback!
: : : : : : : Calvin Mitchell, IS Operations Mgr.
: : : : : : : Makoff R&D Laboratories, Inc.
: : : : : : : http://www.rndlabs.com
: : : : : : : mailto:[email protected]
: : : : : : : http://home.pacbell.net/cal_mitc
: : : : : : : mailto:[email protected]
: : : : : : : mailto:[email protected]
null

Similar Messages

  • I am trying to move Acrobat XI to a new computer. (Mavericks to Mavericks) Toward to end of the install when 'scripts' a being installed I get an 'Installation error" message. No number or reason just a message to contact the software creator.

    I am trying to move Acrobat XI to a new computer. (Mavericks to Mavericks) Toward to end of the install when 'scripts' a being installed I get an 'Installation error" message. No number or reason just a message to contact the software manufacturer.

    I am using a copy of a previous download of Acrobat XI, clicking the .dmg and then on the install package.
    Originally, the Acrobat software was brought into the new computer by the Migration Assistant.
    Does the install assistant need to be in the mix somewhere?

  • I have a new computer running os10.9. my old computer ran cs5.5(upgrade version). I am trying to get CS5.5onto my new computer. when i load cs5.5 towards the end of the install it asks for the cs5.5 serial number. i put that in and everything is accepted

    I have a new computer running os10.9. my old computer ran cs5.5(upgrade version). I am trying to get CS5.5onto my new computer. when i load cs5.5 towards the end of the install it asks for the cs5.5 serial number. i put that in and everything is accepted but then it asks for a serial number for a full version of a product which men is design premium cs3 but it doesn't give me that product as a choice from the drop down menu. it only gives me adobe master collection cs3. why when i have purchased all these different upgrades can i now not use them and how can i sort this out. i need cs5.5 on my new computer.

    Contact Adobe support:
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • How do I install recommended updates, when I click on adobe flash plugin update now buttons, I hit a dead end on oracle's website, how do I complete the update?

    How do I install recommended updates, when I click on adobe flash plugin update now buttons, I hit a dead end on oracle's website, how do I complete the update?

    First, grab the Adobe uninstaller from here:
    http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html
    Then download Flash 10.3.183.90 from here - about halfway down the page:
    http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html
    (Released 6/11/2013) Flash Player 10.3.183.90 (61.1 MB)
    IMO, the best version of Flash for WinXP. Adobe kept up with security updates for 10.3 for WinXP users long after Flash 11.0 came out in 2011 for Vista and newer versions of Windows.
    Run the uninstaller, then reboot your operating system.
    Then you can run the Flash installer, with Firefox closed, of course.
    ''Note, if you still use IE you'll need to reinstall the ActiveX version of Flash for IE. That uninstaller removes all versions of Flash that might be installed,''

  • Oracle Instalation error (You do not have sufficient permissions to access)

    Hi
    my enviroment is SAP ECC6/Oracle 10g/ SUN Solaris 10 SPARC
    I'm installing SAP but run into the error below. I don't understand why the inventory file is pointing to /home/prodora which does not exist. this directory is owned by root and ownership cannot be changed to user oraq11.
    Is it possible to change the location of the inventory ?
    kindly assist
    regards
    simbatech:oraq11> ./RUNINSTALLER
    oracle_stage is not set (OK)
    oracle_base is not set (OK)
    oracle_home is not set (OK)
    oracle_sid is not set (OK)
    oracle_home_name is not set (OK)
    oracle_inst_group is not set (OK)
    from_location is not set (OK)
    tmp_netca_file is not set (OK)
    tmp_dbca_file is not set (OK)
    Working in /oracle/stage/102_64/database/SAP ...
    Oracle SID:            Q11
    Oracle Home:           /oracle/Q11/102_64
    Oracle Home Name:      Q11_102_64
    Oracle Install Group:  dba
    Installing from:       /oracle/stage/102_64/database/stage/products.xml
    oracle_stage="/oracle/stage/102_64"
    oracle_base="/oracle/Q11"
    oracle_version="102_64"
    oracle_home="/oracle/Q11/102_64"
    oracle_sid="Q11"
    oracle_home_name="Q11_102_64"
    oracle_inst_group="dba"
    from_location="/oracle/stage/102_64/database/stage/products.xml"
    tmp_netca_file="/tmp/.orainst_netca.15383"
    tmp_dbca_file="/tmp/.orainst_dbca.15383"
    ORACLE_BASE="/oracle/Q11"
    ORACLE_HOME="/oracle/Q11/102_64"
    ================================
    Preparing response files. Please wait:
    ======================================
    Working on /oracle/stage/102_64/database/SAP/SVRCUSTOM.RSP
    /oracle/stage/102_64/database/SAP/SVRCUSTOM.RSP --> /tmp/.orainst_rsp.15383: Done
    You do not have sufficient permissions to access the inventory +'/home/prodora/oraInventory'.+ Installation cannot continue. Make sure that you have read/write permissions to the inventory directory and restart the installer.: No such file or directory
    simbatech:oraq11>

    Hi,
    Yes, Solution describe in 350251 - Creating a New or 2nd Oracle SID with runInstaller
    "THE SOLUTION"
    The good news is the solution is very simple and takes a few seconds
    First cd /var/opt/oracle
    You will find a file called oraInst.loc # cat oraInst.loc
    inventory_loc=/oracle/PR1/oraInventory
    inst_group=dba
    Use vi or emacs to edit the file and change the inventory_loc to the directory of the oracle instance you are currently installing. ie inventory_loc=/oracle/PR2/oraInventory
    Restart your oracle installer  eg. su - orapr2
    cd /oracle/stage/816_64
    setenv DISPLAY localhost:0.0
    ./runInstaller
    Regards;

  • Time Machine - Migration Assistance Failure

    Hard drive failure on Mac... installed new drive.  When using migration assistant in conjunction with time machine encountering error mid way through data transfer process...unable to create user name.. any insight is appreciated..
    This event occurred during several attempts.

    Chad Krukowski wrote:
    Than you! that is what I wanted to do, a full restore. Unfortunately was following the direction of the genius bar.
    Yup. The Geniuses (like most Apple folks) don't actually use Time Machine on their work computers, and aren't real familiar with it, so this sort of thing isn't all that unusual, unfortunately. You could even have gotten similar advice from AppleCare, depending on the expertise of whoever you happened to get. Sigh.

  • HT201210 When I Restore My iPhone with itunes gives error -1 will end of the Installing  firmware

    When I Restore My iPhone with itunes gives error -1 will end of the Installing  firmware
    what is the problem ?

    Error -1 generally indicates a catastrophic hardware failure. 
    You'll need to bring your phone to Apple for evaluation

  • Oracle Installed Base

    Does the Oracle Installed Base system, lend itself to being populated with Install Base data from legacy ERP systems? It's my impression that the Install Base data, starts in inventory and ends at a customer location, but is it a requirement that everything start in inventory?
    Thanks

    is it a requirement that everything start in inventory?Nope, I usually start from scratch.
    Seriously now:
    Give us a clear picture, if possible, provide some links or whatever. Anything.
    http://tkyte.blogspot.com/2005/06/how-to-ask-questions.html

  • TNS Packet writer failure and end-of-file on communication channel

    Hello Sir/Mam,
    I m working on oracle server 9i. when i insert data into Blob,Nclob,Clob field which is larger than 4KB, this message occur everytimes.(TNS Packet writer failure or end-of-file on communication channel).
    Can u tell me why this happen when i insert large data from 4KB.
    I m using oledb to insert data into a table.if datasize is less than 4 KB ,its easily insert.
    My Code Module is this
    BOOL CconnectivityDlg::OpenOracleFile()
         BOOL bResult=FALSE;
         bFile = FALSE;
         dwFileSize = 0;
         CString csVirtualPath;      
         CFileDialog dlg(TRUE);
         if(dlg.DoModal()==IDOK)
              StrName = dlg.GetPathName();
         hFile1=CreateFile(StrName,GENERIC_READ|GENERIC_WRITE, FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
                                       NULL,OPEN_EXISTING, NULL,NULL);
         unsigned int count =0;
              if(hFile1==INVALID_HANDLE_VALUE)
                   if(count<5)
                        count++;
                        Sleep(1000);
                   else
                        return bResult;
         DWORD dwHighPart,dwLowPart;
         dwLowPart = GetFileSize(hFile1,&dwHighPart);
         LARGE_INTEGER NewFilePointer;
         NewFilePointer.LowPart = dwLowPart;
         NewFilePointer.HighPart = dwHighPart;
         dwFileSize = NewFilePointer.QuadPart;     
         bFile     = TRUE;
         bResult = TRUE;     
         if(hFile1)
              CloseHandle(hFile1);
              hFile1 =NULL;
         return bResult;
    BOOL CconnectivityDlg::CreateConnection()
         BOOL bResult = FALSE;     
         CString Count,strFileSaveName;
         Count.Empty();
         strFileSaveName.Empty();
         unsigned int nCounter = 0;     
    repeat:     
         if(!AfxOleInit())
              return FALSE;
         m_pConn.CreateInstance (__uuidof(Connection));
         CString strConn ;
         strConn.Empty();
         m_pConn->CursorLocation = adUseClient;
         strConn     =_T("Provider=MSDAORA;OSAuthent=1;Data Source =LOVE;Connect as =SYSDBA;");
         try
              m_pConn->Open(_bstr_t(strConn),_bstr_t("system"),_bstr_t("system"),adConnectUnspecified);
              bResult = TRUE;
         catch(_com_error& e)
              CString sBuff = GetErrorDescription(e);
              AfxMessageBox(sBuff);
              return 0;          
         catch(...)
              AfxMessageBox(_T("UnknownError"));
              return 0;
         m_pCom.CreateInstance(__uuidof(Command));
         try
              m_pCom->ActiveConnection = m_pConn;
         catch(_com_error& e)
              CString sBuff = GetErrorDescription(e);
              AfxMessageBox((sBuff));          
         catch(...)
              AfxMessageBox(_T("UnknownError"));
         return bResult;
    CString CconnectivityDlg::insertimage()
         CString Query,ColmnName;
         Query.Empty();
         ColmnName = _T("FIRST");//Coloumn Name
         Query = _T("insert into SINGLE(FIRST) values (?)"); //Table in which i want to insert data of Nclob type.
         hFile1 = CreateFile(StrName,GENERIC_READ,FILE_SHARE_READ,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);//File from i read the data to insert into nclob field
         DWORD dwHighPart,dwLowPart;
         dwLowPart = GetFileSize(hFile1,&dwHighPart);
         LARGE_INTEGER NewFilePointer;
         NewFilePointer.LowPart = dwLowPart;
         NewFilePointer.HighPart = dwHighPart;
         dwFileSize = NewFilePointer.QuadPart;     
         BYTE *ImageData = new BYTE[dwFileSize+2];
         memset(ImageData,0,dwFileSize+2);
         BOOL bRead = ReadFile(hFile1,ImageData,dwFileSize,&dw,NULL);
         VARIANT varChunk;
         long lngOffset=0;
         UCHAR chData;
         SAFEARRAY FAR *psa = NULL;
         SAFEARRAYBOUND rgsabound[1];
         rgsabound[0].lLbound=0;
         rgsabound[0].cElements=dwFileSize;
         psa = SafeArrayCreate(VT_UI1,1,rgsabound);
         HRESULT hr;
         while(lngOffset < (long)dwFileSize)
              chData = ((UCHAR*)ImageData)[lngOffset];
              hr = SafeArrayPutElement(psa,&lngOffset,&chData);
              lngOffset++;                                        
         lngOffset     = 0;
         varChunk.vt=VT_ARRAY|VT_UI1;
         varChunk.parray=psa;
              try
              m_pCom->Parameters->Append(m_pCom->CreateParameter(_bstr_t(ColmnName),adLongVarWChar,adParamInput,(ADO_LONGPTR)dwFileSize,varChunk));
              VariantClear(&varChunk);
         catch(_com_error& e)
              CString sBuff = GetErrorDescription(e);
              AfxMessageBox(sBuff);
         if(ImageData)
              delete[] ImageData;
              ImageData = NULL;
         try
              m_pCom->CommandText=_bstr_t(Query);
              m_pConn->CursorLocation = adUseClient;
              m_pCom->CommandTimeout=0;
              m_pCom->Execute(NULL,NULL,adCmdText);
         catch(_com_error& e)
              CString sBuff = GetErrorDescription(e);
              AfxMessageBox(sBuff);
         return 0;
    CString CconnectivityDlg::GetErrorDescription(_com_error& e)
    bstrt bstrSource(e.Source());
    bstrt bstrDescription(e.Description());
    _TCHAR szTemp[1024];
    CString strInfo ;
    wsprintf(szTemp, _T("Message : %s\n"), e.ErrorMessage());
    strInfo = szTemp;
    wsprintf(szTemp, _T("Code : 0x%08lx\n"), e.Error());
    strInfo += szTemp;
    wsprintf(szTemp, T("Source : %s\n"), bstrSource.length() ? (LPCTSTR)bstrSource : T("null"));
    strInfo += szTemp;
    wsprintf(szTemp, T("Description : %s\n"), bstrDescription.length() ? (LPCTSTR)bstrDescription : T("null"));
    strInfo += szTemp;
         CString str     =     strInfo;
         if(str.Find(_T("not a valid password"),0) > 0)
              strInfo     =     _T("File is password protected") ;
    return strInfo;
    }

    user7728510 wrote:
    Hi,
    for what i know, MSDAORA provider doesn't support Oracle data types introduced since <font face="tahoma,verdana,sans-serif" size="1" color="#000">version</font> 8, as CLOB, BLOB and so on, so i think that it uses varchar2 up to the 4k limits and then causes this error.
    Have you tried with the OraOLEDB.Oracle.1 provider instead?Nice writing, Thanks for your explanation!

  • Oracle Install Base Interface Error

    Error: The source item instance 33604, in Subinventory 4131, for Organization 734 in Oracle Install Base does not exist. Please verify that any receipt transations were successful.
    I have checked values by running the following SQL:
    select Instance_ID, location_type_code, location_id, INV_ORGANIZATION_ID, INV_SUBINVENTORY_NAME, instance_status_id
    from csi_item_instances where Serial_Number = '08112025CWDIND'
    INV_ORGANIZATION_ID is 734
    INV_SUBINVENTORY_NAME is 4131
    But still the transaction is stuck with the above error.
    Please help to clear this error.

    Please see if the following docs help.
    Install Base Master Note: CSI_IB_PROJ_RECORD_NOTFOUND [ID 1302069.1]
    Install Base Master Note: CSI_IB_RECORD_NOTFOUND [ID 1302100.1]
    Datafix: How To Correct Errors Due to PO Corrections: "Serialized Item with Status other then In Inventory, Out of Service, Out of Enterprise or In Relationship already exists in Install Base." [ID 376762.1]
    Interorg Transaction Error: The source item instance in Oracle Install Base does not exist [ID 264794.1]
    Internal Sales Order Receipt CSIINTSR Transaction Error: "The source item instance XXX not exist" [ID 786127.1]
    Thanks,
    Hussein

  • Im trying to install iTunes on my friend's Dell XPS, running windows vista ultimate (32-bit), but whenever I reach the end of the install, it pops up with an error telling me:   "Service 'Apple Mobile Device' (Apple Mobile Device) could not be instal

    Trying to install iTunes on my Laptop, running windows 7 (64-bit), but whenever I reach the end of the install, it pops up with an error telling me:
    "Service 'Apple Mobile Device' (Apple Mobile Device) could not be installed. Verify that you have sufficient privileges to install system services"

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for performance issues or compatibility with third party software.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Front End to Oracle Database - Advice Needed

    Hi
    My company has recently purchased an Oracle Database. Are there any advantages in creating the front end in Oracle as opposed to writing the front end in Java.
    I am interested to know if one method is preferred over the other. I was planning on writing it entirely in Java.
    Any help or advice would be appreciated.
    Thanks
    Kelly

    http://www.tuxedo.org/~esr/faqs/smart-questions.html#ASKING
    pls don't crosspost
    http://forums.java.sun.com/thread.jsp?thread=243868&forum=31&message=892346
    http://forums.java.sun.com/thread.jsp?thread=243869&forum=48&message=892352

  • Lotus notes as a front end and oracle as backend

    Dear All,
    Can i use lotus notes as a front end and oracle as backend atleast for few forms in my application.
    If Yes how to go about it.
    I have not tried it even once
    Kindly also advice if this is appropriate forum to ask this question
    Best Regards,
    Devendra Shelke

    Dear All,
    Context for asking above question :
    We use Form 6i and Report 6i, Application Server 9i and 9i DB.
    But for some forms we want the user to enter the data through Lotus Notes but get updated in 9i DB used by Form 6i.
    Best Regards,
    Devendra

  • Oracle Install Base -Unable to find Expire relationship button

    Hi Experts,
    I am not able to find "Expire Relationship" button under Configuration Tab while trying to expire parent and child relationship in oracle install base for an intem instance.But for some item instance I am able to find the "Expire Relationship" button under Configuration Tab.
    Can any one please let me know why the "Expire Relationship" button is available for some item and not available for some item instances.
    Thank you.
    Ravi S

    Duplicate post.
    Oracle Install Base -Unable to find Expire relationship button
    Unable to find Expire relationship button

  • How to update item instance in oracle install base?

    Hi,
    I have a doubt in updating item instance in oracle install base.
    I am using a API named csi_item_instance_pub.update_item_instance for this. I want to update Party OWNER, party contacts, Current location,Install location, bill_to address,ship_to address..etc. When i try to update party owner, it is updating in csi_i_parties(col:party_id) as well as updating in csi_item_instance(owner_party_id). In csi_item_instance table,owner_party_id column is updated. but corresponding owner_party_account_id is not changed. I have given party_account_id to update in csi_ip_accounts table. It has changed in csi_ip_accounts table. But in csi_item_instance table(owner_party_account_id) is not changing. Can anybody help on how to change owner_party_account_id in csi_item_instance table please? Thanks in advance.
    --Muruga
    Edited by: Murugeshapps on Jul 1, 2009 12:07 AM

    Out of the box, I don't think that there is any API or program to delete the records from csi_item_instances because deleting IB record affects many modules (like Inventory, Order, Service Contracts etc). IB records should be expired if they are created incorrectly and you can run Transaction History Purge program to delete all history records related to that item.
    Thanks
    Shree

Maybe you are looking for

  • HT2534 How do you set up apple Id for your child

    I just brought my ten year old daughter a iPod touch and got get a apple id for her does any body have any ideas

  • Zen Touch not detected by Windows Explorer though recognised by Windows Media Pla

    I wonder if anyone else has had a similar problem to this: I am running Windows ME and my son has just received the player for his birthday.</LI> Unfortunately the CD that came with the player caused this computer (and another) to lock-up so faulty C

  • Help with ethernet problems

    Can anyone help with this? Have a black powerbook, snow leopard, safari. No problems at all with wireless/ethernet at home When at work, usually just unplug ethernet from work PC and once plugged into mac, it automatically detects internet connection

  • HT4718 I cannot get past the restore screen

    So, big problem. I have had to replace my logic board. Following this, using Mountain Lion, my mac was unusable, just beach ball on every click. I did restore Mountain Lion, but no change. I cannot restore from time machine as I get an error message

  • Sql server replication

    hi, what  sql server replication? Differenent type  server replication? thanx subodha