Halloween Problem Solution in Oracle

Can anybody help me in knowing how the halloween problem is tackled in Oracle ?

Assuming that you are talking about this Halloween problem (this isn't something I've ever heard of before so I'm guessing most folks on the forum haven't either)...
Oracle provides multi-version read consistency for every query. Assuming the default transaction isolation level of read committed, the database gets the current SCN (system change number) when the query starts. It then automatically reconstructs the data as it existed at that SCN for the duration of the query. It does this by applying UNDO data to the block that it has in its cache. So for every block, Oracle is always constructing the state of that block at the SCN that was established when the query started.
Justin

Similar Messages

  • UNIXWARE ORACLE V7.3.3 COREDUMP PROBLEM SOLUTION

    제품 : ORACLE SERVER
    작성날짜 : 1998-03-24
    Unixware Oracle V7.3.3 Coredump problem solution
    Unixware 용 Oracle V7.3.3 을 사용할 때 svmrgrl 와 sqlplus 수행시 core dump가
    발생하는 경우가 있습니다.
    - sqlplus 의 경우
    username 과 passwd를 두번이상 틀릴경우 발생합니다.
    $ sqlplus [enter]
    Enter user-name : [enter]
    Enter user-name : [enter]
    core dump 발생
    sqlplus 로 connect된 상태에서 connect 명열을 사용하면 core dump가
    발생합니다.
    $ sqlplus scott/tiger
    SQL> connect scott/tiger
    core dump 발생
    - svrmgrl 의 경우
    svrmgrl 를 exit 할 경우 가끔 발생합니다.
    1. Advanced Networing Option 이 인스톨되어 있는지 확인한다.
    이 제품이 인스톨되어 있을때 Core dump 가 발생할 경우가 많다.
    install된 제룸 확인법
    # cd $ORACLE_HOME/orainst
    # inspdver
    Advanced Networing Option 이 인스톨되어 있으면 De-install 한다.
    (orainst 이용)
    De-install 후 Oracle , Network, SQL*Plus 등을 Relinking 한다.
    # svrmgrl
    SVRMGR> connect internal
    SVRMGR> shutdown
    SVRMGR> exit
    $ lsnrctl stop
    $ cd $ORACLE_HOME/network/lib
    $ make -f ins_network.mk install
    $ cd $ORACLE_HOME/rdbms/lib
    $ make -f ins_rdbms.mk install
    $ cd $ORACLE_HOME/sqlplus/lib
    $ make -f ins_sqlplus.mk install
    2. $ORACLE_HOME/otrace/admin/*.dat 화일을 지운다.
    $ cd $ORACLE_HOME/otrace/admin
    $ rm -f *.dat
    3. 환경 변수 EPC_DISABLED 를 TRUE 로 설정한다.
    ksh (.profile)
    $ export EPC_DISABLED=true
    csh (.cshrc)
    $ setenv EPC_DISABLED true
    4. 3번까지 작업을 한 경우에도 계속해서 CoreDump 가 발생할 경우 다음의
    OS Kernel Parameter들을 확인한다.
    $ su
    Passwd:
    # cd /etc/conf/bin
    # ./idtune -g SVMMLIM
    0X7FFFFFFF 0x2000000 0x1000000 0x7FFFFFFF
    # ./idtune -g HVMMLIM
    0X7FFFFFFF 0x2000000 0x1000000 0x7FFFFFFF
    결과가 위와 다를 경우 (첫번째 컬럼의 값이 0x7FFFFFFF 가 아닐경우)
    OS Kernel을 Rebuild 한다.
    # ./idtune SVMMLIM 0x7FFFFFFF
    # ./idtune HVMMLIM 0x7FFFFFFF
    # ./idbuild
    # cd /
    # shutdown -y -g0 -i6

    Hi,
    I've found the solution. I have to stop and start my listener each morning (i shutdown and save my dbs each night). now, it work fine !!
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by jean-guy avelin ([email protected]):
    Hi all !
    It seems I can't acces views from a jsp using jdbc :
    when I try stmt.executeQuery("select * from dual"), it works. when i create a basic view on my dbserver ( create view toto as (select * from sys.dual) ) and I try this jdbc query stmt.executeQuery("select * from toto"), I get this error : ORA-12154
    I use Oracle V7.3.4.5.0 on tru64Unix 5.0A on my oracle server. I've tried V8.1.7 and V3 jdbc drivers. Last year, I think my program (using views) ran fine with an oldest version of oracle server ....
    Any idea ?
    thanks in advance
    jean-guy<HR></BLOCKQUOTE>
    null

  • Probleme to install Oracle 8.1.7 on Mandrake 9.1

    Hi,
    I have some problem to install Oracle 8.1.7 on Mandrake 9.1.
    I log on a non root user and launch "./runInstaller" but nothing happens. It's only written "please wait"...
    I see on the Oracle site that I must use glibc 2.1 but only if Oracle is already installed? So if you could give me some indications?
    Thanks.

    Hi,
    I have also the same problem : when I launch the program "./runInstaller", nothing appears.
    However, I thought I found a good solution on a forum, but it doesn't run.
    The explication is given at the following address :
    http://colalug.org/ml-archive/0210/msg00051.html
    The only point where I'm not sure is when it's said to use a specific library in the "LINUX STUFF" section. They are using glibc2.1 and I'm using glibc2.3.
    I have also changed the "ASSUME_KERNEL" variable to the version of my kernel, that's 2.4.21.
    What are your suggestions ?
    Thanks to give me an answer.

  • Problem for using oracle xml parser v2 for 8.1.7

    My first posting was messed up. This is re-posting the same question.
    Problem for using oracle xml parser v2 for 8.1.7
    I have a sylesheet with
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">.
    It works fine if I refer this xsl file in xml file as follows:
    <?xml-stylesheet type="text/xsl" href="http://...../GN.xsl"?>.
    When I use this xsl in pl/sql package, I got
    ORA-20100: Error occurred while processing: XSL-1009: Attribute 'xsl:version' not found in 'xsl:stylesheet'.
    After I changed name space definition to
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> in xsl file, I got
    ORA-20100: Error occurred while processing: XSL-1019: Expected ']' instead of '$'.
    I am using xml parser v2 for 8.1.7
    Can anyone explain why it happens? What is the solution?
    Yi

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Steven Muench ([email protected]):
    Element's dont have text content, they [b]contain text node children.
    So instead of trying to setNodeValue() on the element, construct a Text node and use the appendChild method on the element to append the text node as a child of the element.<HR></BLOCKQUOTE>
    Steve,
    We are also creating an XML DOM from java and are having trouble getting the tags created as we want. When we use XMLText it creates the tag as <tagName/>value rather than <tagName>value</tagName>. We want separate open and close tags. Any ideas?
    Lori

  • Problem about using Oracle Form 6i to connect Oracle Database 10g express.

    Sorry to interrupt all of you.
    I have encountered a problem about using Oracle Form 6i to connect Oracle Database 10g express.
    As I would like to
    I use Oracle Net8 Easy Config to create a connection.
    According to "tnsnames.ora", the paramater of connection is as follows;
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    (CONNECT_DATA = (SID = XE))
    Unfortunately, when I use Oracle Net8 Easy Config to test the connection, an error message is prompted as follows:
    Connecting....
    The test did not succeed.
    ORA-03106: fatal two-task communication protocol error
    There may be an error in the fields entered
    or the server may not be ready for a connection.
    You can check the server and retry, or continue.
    After I google it, I still have no idea how to solve the problem. I would like to ask, could anyone mind providing some hints or solution to address the issues.
    Thanks for your assistance in advance.

    I don't believe the Net8 Easy Config (NEC) will create a compatible entry in the tnsnames.ora. I have Forms 6i running successfully against a 10g Express database, but I did not use the NEC - I created the entry myself. Here is the entry I use:
    XE=
      (DESCRIPTION=
        (ADDRESS=
          (PROTOCOL=TCP)
          (HOST=<<servername or IP address>>)
          (PORT=1521)
        (CONNECT_DATA=
          (SERVER=dedicated)
          (SERVICE_NAME=XE)
      )Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • How to delete the problem-solution in Solution Database

    Dear Sir,
    I need to delete  the problem-solution in Solution Database which is already created in CRM ( IS01). However, I don't know how to delete.
    Please advise.
    Thank you and best regards,

    Dear Sir,
    I need to delete  the problem-solution in Solution Database which is already created in CRM ( IS01). However, I don't know how to delete.
    Please advise.
    Thank you and best regards,

  • I met problem when installing Oracle 8.1.6 on Turbo Linux 7.0

    I met problem when installing Oracle 8.1.6 on Turbo Linux 7.0.
    After setting up environment variables, and successfully
    accessed KDE interface, everything was going on well.
    The process of installation blocked at 80% in "Database Creation
    Process" dialog window.
    I have tried two times and got the same result.
    The error message is:
    Warning: Cannot convert string "-*-Kochi Gothic-medium-r-normal-
    *-*100...
    Help!

    I have done some oracle installations over RedHat 7.0 (not certificated):
    Let's check some things:
    1- You must have changed very few parameters on your shm.h sem.h files which are in /usr/include/linux directory.
    2- You need to upgrade the glibc and libstdc libraries (.rpm)
    3- You must have installed the jre116_v5 on /usr/jre and made a symbolic link like this
    ln -s /usr/jre/jre116_v5 /usr/local/jre
    4- You must include in the CLASSPATH parameter the jre116_v5 directory. It should look something like this
    CLASSPATH=/usr/jre/jre116_v5:$ORACLE_HOME/jlib
    5- Be sure to create and export all the parameters in your .bash_profile.
    6- Run the ./runInstaller.sh in a terminal window inside the Xwindow.
    You can find the jre116_v5 in www.backdown.org
    I hope these tips help you
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by xx:
    Hi every body
    when I run ./runInstaller from cdrom
    I get this messages :
    Initializing Java Virtual Machine from /usr/local/jre/bin/jre.Please wait ...
    Error in CreateOUIProcess ():-1
    : Bad Address
    I use JDK-1-1-6.
    Thx<HR></BLOCKQUOTE>
    null

  • Problem in installing Oracle 9i R2 on Windows 2003 Server Enterprise

    We are having problem installing the Oracle 9i R2 Server on Windows 2003 Server Enterprise Edition. During installation, it generates error saying "The IP Address of the machine not found". When clicking the "Continue" button, it tries to install other things but few minutes later it asks to stop complete installation or installation of that feature.
    But when we installed it on Windows XP it works fine and we have no problem in configuring it. What's the problem with Windows 2003 Server?
    If we drop the idea of installing it on Windows 2003 Server, can we make Windows XP maching as a Server?

    ORACLE asumes that the first network device you have on your server has a fixed IP address.
    Is this the case?
    If not so you should install a loopback adapter as network device with a fixed IP.
    Does this help?
    Regards,
    Lutz

  • Problem on Installing Oracle 10g on Windows XP Professional

    I'm getting the following error while I install Oracle 10g R1, on Windows XP Professional.
    The Path enviroment variable is bigger than 1023 characters. This value cannont be set.
    Has anyone seen this error before?

    Hi,
    you have two option to start your oracle service. your problem is your oracle serivce is not start.
    for that you can start manully....
    like
    on command prompt.
    cmd>net start oracleservice<sid>
    or
    you can set automatic for oracle service.
    go services window. start >>>> run >>>> services.msc <<<enter>>>
    check and select oracle services and right click and set automatic..
    every time your system is reboot then oracle service is automatically is start.
    regards
    Taj

  • Having problem to install Oracle Portal Forms Reports and Discoverer 11g on Windows Server 2008 64 bit

    Dear All Precious Friends,
    I am having problem while installing Oracle Portal Forms Reports and Discoverer 11g on Windows Server 2008 64 bit,
    I have already installed Oracle Database 11g Release 2 -------
    ----Then i configured JAVA Access bridge
    --------then installed and configured Required Schema using Repository Creation Utility of same version of Database 11g,
    -----------then installed Oracle Business Intelligence 11g version 11.1.1.6.0 which includes Web logic..............I am feeling that i did right at this point...........
    ..............also feeling comfortable after install Oracle Identity and Access Management 11g ..................
    -----------------but don't know how to configure OID to install Oracle Portal Forms Reports and Discoverer 11g...............
    Please help my Oracle Friends
    Your early help will be highly appreciated.
    thanks and regards
    Hassan

    You said, "...+I would like to install Release 2(11.1.1.2.0)+ ...". Be careful. 11.1.1.2.0 is not Release 2. The version for Rel 2 is 11.1.2.0, notice that there is one less "1". Also, there is no way to patch from Release 1 to Release 2.
    In EDelivery, this is what you should find if you search on "Oracle Fusion Middleware" for "Microsoft Windows x64 (64-bit)":
    First look for this link then drill into it:
    Oracle Fusion Middleware 11g Media Pack for Microsoft Windows x64 (64-bit)
    In this section you will find the following:
    This is the full product installation of FMw 11 Release 2 (Forms & Reports)
    Oracle Forms and Reports 11g R2 (11.1.2.0.0) for Microsoft Windows x64 (64-bit) V28761-01
    This is the full product installation of FMw 11 Release 1 (includes Portal, Forms, Reports, and Disco)
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 1 of 4) V18785-01
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 2 of 4)
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 3 of 4)
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 4 of 4)
    This is the FMw 11 Release 1 patch set that will bring the above 11.1.1.2.0 installation to 11.1.1.6.  This is NOT a full product installation - just a patch
    Oracle Portal, Forms, Reports and Discoverer 11g Patch Set 5 (11.1.1.6.0) for Microsoft Windows x86 (64-bit) V29850-01
    There are no patch sets for Release 2 as of yet.

  • Problems to initiate oracle 10g express edition

    Good afternoon I am speaking of Brazil with a text translator.
    But I have installed Hundreds and I am trying to install oracle 10g express edition release 2.
    I am with a problem in the Oracle 10g Express Edition in the installation part when I vo to initiate the service, it does not initiate.
    And when I give I command /etc/init.d/oracle-xe status appears the following message: Your default context is user_u: system_r: unconfined_t. Of it you want you choose different one? [n]
    I do not know more what to make to decide this.
    I thank the attention.
    Gabriel.
    Message was edited by:
    user523701

    Oracle XE has it's own forum - to register and discuss XE problems with XE experts use URL http://www.oracle.com/technology/xe/registration
    Once you have registered, you sign in to the forums and the link to the XE forum is there. But you do have to sign in as the user who registered XE.
    You will also need to provide a few more pieces of information:
    1) actual distro and version of Linux
    2) userid used to install XE (should be root)
    3) userid used to run "/etc/init.d/oracle-xe start" (should be root)

  • Problem with install oracle on OEL5.3 linux

    Hello,
    Have some strange problem with oracle enterpise linux 5.3 32 bit, during install Oracle 10gR2 got link errors,
    after founded what is problem with linking oracle executables:
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib
    relink oracle
    /usr/bin/ld: cannot find -lskgxn2
    all depended rpms and parameters are set, looks like missing some library, but cannot recognise with one.
    Have somebody spoted souch error ?

    The zipfile on technet has a checksum:
    Oracle Database 11g Release 1 (11.1.0.6.0) for Linux x86
              linux_11gR1_database_1013.zip (1,844,527,800 bytes) (cksum - 1044354138)
    When the zipfile is downloaded, you can check the zipfile on linux with the cksum command, it should be exactly the same as listed on technet, otherwise the zipfile is corrupted.

  • ASP application has problems working with oracle database 8.1.7

    ASP application has problems working with oracle database 8.1.7 through both oracle ODBC driver and Microsoft ODBC driver
    We have an ASP application running on Windows 2000 server, and with 8.1.7 Net8Client and MDAC 2.6 SP1.
    The application worked fine with an Oracle 8.0.5 database.
    After upgrading oracle database to 8.1.7.0.0, our ASP application works fine except when updating the same data record more than once. The application is not saving our updates.
    We tested our application using Oracles ODBC driver v8.1.7.5.0
    and experienced more problems. We had problems just bring up our data entry pages. In either case, we are returned with some 505 errors in our browser, problems with the ASP pages and IIS, the page is not displaying.
    If anyone has some suggestions on how to fix my problem, please advise. Thanks in advance.

    thanks...i saw one article with this approach..but the document did not present the detailed process...do you have one? i am still searching for a good procedure to follow...since it is an old database and focusing/studying old versions like this is a pain in the a**... :(

  • Facing problem in installing oracle 9i on 2003 server

    hi all
    i am getting the following problem while installing oracle 9i on windows 2003 server.
    my system is haveing 3 more JRE s 1.4 and above installed as part of others softwares.
    error log i am getting is like this-
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0xa272c7d
    Function name=Java_W32LocateSidNative_w32LocateSidHome
    Library=D:\temp\OraInstall2006-08-24_11-39-01AM\SID_Queries.dll
    Current Java thread:
    at W32LocateSidNative.w32LocateSidHome(Native Method)
    at getAllOracleHomes.performQuery(getAllOracleHomes.java:39)
    at oracle.sysman.oii.oiis.OiisCompContext.doQuery(OiisCompContext.java:2330)
    at Components.oracle.emprod.oemagent.agentca.v9_2_0_1_0.CompContext.getCalculatedValueObject_PRE_REQUISITE(Unknown Source)
    at Components.oracle.emprod.oemagent.agentca.v9_2_0_1_0.CompContext.getCalculatedValueObject(Unknown Source)
    at oracle.sysman.oii.oiis.OiisCompContext.getCalculatedValue(OiisCompContext.java:612)
    at oracle.sysman.oii.oiis.OiisPreRequisiteVar.getCalculatedValue(OiisPreRequisiteVar.java:138)
    at oracle.sysman.oii.oiis.OiisVariable.setVariable(OiisVariable.java:1353)
    at oracle.sysman.oii.oiis.OiisCompInstallation.getPreRequisite(OiisCompInstallation.java:683)
    at oracle.sysman.oii.oiis.OiisCompInstallation.getContext(OiisCompInstallation.java:368)
    at oracle.sysman.oii.oiio.oiiod.OiiodDepEngine.checkPreReq(OiiodDepEngine.java:4496)
    at oracle.sysman.oii.oiio.oiiod.OiiodDepEngine.applySelection(OiiodDepEngine.java:2793)
    at oracle.sysman.oii.oiio.oiiod.OiiodDepEngine.depModeApply(OiiodDepEngine.java:2369)
    at oracle.sysman.oii.oiif.oiifw.OiifwPostDepModesWCCE.doOperation(OiifwPostDepModesWCCE.java:327)
    at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:140)
    at oracle.sysman.oii.oiic.OiicDepWizEngine.doOperation(OiicDepWizEngine.java:339)
    at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:140)
    at oracle.sysman.oii.oiic.OiicPullSession.doOperation(OiicPullSession.java:586)
    at oracle.sysman.oii.oiic.OiicSessionWrapper.doOperation(OiicSessionWrapper.java:177)
    at oracle.sysman.oii.oiif.oiifb.OiifbLinearIterator.iterate(OiifbLinearIterator.java:116)
    at oracle.sysman.oii.oiic.OiicInstaller.run(OiicInstaller.java:358)
    at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:637)
    Dynamic libraries:
    0x00400000 - 0x00405000 d:\temp\OraInstall2006-08-24_11-39-01AM\jre\bin\javaw.exe
    0x7C800000 - 0x7C8C0000 C:\WINDOWS\system32\ntdll.dll
    0x77E40000 - 0x77F42000 C:\WINDOWS\system32\kernel32.dll
    0x77F50000 - 0x77FEC000 C:\WINDOWS\system32\ADVAPI32.dll
    0x77C50000 - 0x77CEF000 C:\WINDOWS\system32\RPCRT4.dll
    0x77380000 - 0x77412000 C:\WINDOWS\system32\USER32.dll
    0x77C00000 - 0x77C48000 C:\WINDOWS\system32\GDI32.dll
    0x77BA0000 - 0x77BFA000 C:\WINDOWS\system32\MSVCRT.dll
    0x62D80000 - 0x62D89000 C:\WINDOWS\system32\LPK.DLL
    0x75490000 - 0x754F1000 C:\WINDOWS\system32\USP10.dll
    0x6D420000 - 0x6D4EE000 d:\temp\OraInstall2006-08-24_11-39-01AM\jre\bin\hotspot\jvm.dll
    0x76AA0000 - 0x76ACD000 C:\WINDOWS\system32\WINMM.dll
    0x6D220000 - 0x6D227000 d:\temp\OraInstall2006-08-24_11-39-01AM\jre\bin\hpi.dll
    0x6D3B0000 - 0x6D3BD000 d:\temp\OraInstall2006-08-24_11-39-01AM\jre\bin\verify.dll
    0x6D250000 - 0x6D266000 d:\temp\OraInstall2006-08-24_11-39-01AM\jre\bin\java.dll
    0x6D3C0000 - 0x6D3CD000 d:\temp\OraInstall2006-08-24_11-39-01AM\jre\bin\zip.dll
    0x6D020000 - 0x6D128000 D:\temp\OraInstall2006-08-24_11-39-01AM\jre\bin\awt.dll
    0x73070000 - 0x73097000 C:\WINDOWS\system32\WINSPOOL.DRV
    0x76290000 - 0x762AD000 C:\WINDOWS\system32\IMM32.dll
    0x77670000 - 0x777A4000 C:\WINDOWS\system32\ole32.dll
    0x6D1E0000 - 0x6D21B000 D:\temp\OraInstall2006-08-24_11-39-01AM\jre\bin\fontmanager.dll
    0x10000000 - 0x1001E000 D:\temp\OraInstall2006-08-24_11-39-01AM\jre\bin\JavaAccessBridge.dll
    0x6D2C0000 - 0x6D2DB000 D:\temp\OraInstall2006-08-24_11-39-01AM\jre\bin\jpeg.dll
    0x08730000 - 0x08745000 D:\temp\OraInstall2006-08-24_11-39-01AM\oui\bin\win32\oraInstaller.dll
    0x08240000 - 0x08249000 D:\temp\OraInstall2006-08-24_11-39-01AM\dbwsec.dll
    0x08C80000 - 0x08C86000 D:\temp\OraInstall2006-08-24_11-39-01AM\orawsec9.dll
    0x091F0000 - 0x09214000 D:\temp\OraInstall2006-08-24_11-39-01AM\WinPrereq.dll
    0x08CA0000 - 0x08CAC000 D:\temp\OraInstall2006-08-24_11-39-01AM\Win32Env.dll
    0x09A30000 - 0x09A3F000 D:\temp\OraInstall2006-08-24_11-39-01AM\w32RegQueries152.dll
    0x09E50000 - 0x09E5E000 D:\temp\OraInstall2006-08-24_11-39-01AM\WindowsGeneralQ.dll
    0x0A270000 - 0x0A28B000 D:\temp\OraInstall2006-08-24_11-39-01AM\SID_Queries.dll
    0x76C10000 - 0x76C39000 C:\WINDOWS\system32\imagehlp.dll
    0x6D580000 - 0x6D628000 C:\WINDOWS\system32\dbghelp.dll
    0x77B90000 - 0x77B98000 C:\WINDOWS\system32\VERSION.dll
    0x76B70000 - 0x76B7B000 C:\WINDOWS\system32\PSAPI.DLL
    Local Time = Thu Aug 24 11:43:20 2006
    Elapsed Time = 256
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.3.1_01 mixed mode)
    #

    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0xa272c7d
    Function name=Java_W32LocateSidNative_w32LocateSidHome
    Library=D:\temp\OraInstall2006-08-24_11-39-01AM\SID_Queries.dllNote that the above error information is not pointing at Java code. You will do better asking this question at Oracle.

  • Convert Problems/Solutions into Knowledge Articles

    Hi Experts,
    I am wroking on SAP CRM 7.0 SP06 and now we are planning to implement Knowledge Article functionality.
    I have done the all configuration settings and multilevel categorization, every thing working fine. Now I want to convert problems/solutions which already created in CRM and stored in SDB into knowledge article.
    Any one please guide me how can I convert existing problems/solutions into knowledge articles. Is there any report for this?
    Thanking you in anticipation.
    Regards,
    Babu.

    Hi Kevin,
    Well, I'm new on this and have only worked on CRM 6 & 7. I'll give you my advice regarding these CRM versions. I don't know if it is supported on CRM 5.
    IMG:
    CRM >> Enterprise Intelligence >> SAF >> Name and Configure KB
    You create and define you DB as you want: ACME INC
    CRM >> Enterprise Intelligence >> SAF >> Business Add-Ins >> BAdI: Knowledge Base
    Each knowledge base should have its own Add-In implementation. So you have to implement an Add-In based on Add-In definition CRM_SAF_KB_*: CRM_SAF_KB_ACME. You can follow IMG documentation.
    In my case, the add-in already existed, since Knowledge Article functionality is standard in 7.0. KB didn't exist, I don't know why. I just created it with the name assigned on the BAdI, compiled, and everything works fine now.
    Hope it helps.
    Regards.
    Pablo

Maybe you are looking for