ORACLE GEOCODER problems

Hi!
I'm new to oracle geocoding. I downloaded TeleAtlas sample data of San Marino and successfully imported it into Oracle database. I already succesfully geocoded and reverse geocoded some sample data, but when trying other functions like SDO_GCDR.GEOCODE_ALL or SDO_GCDR.GEOCODE_ADDR_ALL etc... I allways get the same error:
ERROR at line 1:
ORA-06502: PL/SQL: numeric or value error: character to number conversion error
ORA-06512: at "MDSYS.SDO_GCDR", line 554
ORA-06512: at "MDSYS.SDO_GCDR", line 625
ORA-06512: at "MDSYS.SDO_GCDR", line 754
ORA-06512: at line 1
This works: SELECT SDO_GCDR.GEOCODE('O10G_EUR0705', SDO_KEYWORDARRAY('CONTRADA', '47890'), 'SM', 'RELAX_BASE_NAME') FROM DUAL;
The result is:
SDO_GCDR.GEOCODE('O10G_EUR0705',SDO_KEYWORDARRAY('CONTRADA','47890'),'SM','RELAX
SDO_GEO_ADDR(0, SDO_KEYWORDARRAY(), NULL, NULL, NULL, NULL, NULL, 'SAN MARINO',
NULL, 'SM', '47890', NULL, NULL, NULL, NULL, NULL, NULL, 'F', 'F', NULL, NULL, '
L', 0, 1,6740E+13, '??????????B281CP?', 4, 'RELAX_BASE_NAME', 12,4507268, 43,936
4842, NULL)
This also works: SELECT SDO_GCDR.REVERSE_GEOCODE('O10G_EUR0705',
2 SDO_GEOMETRY(2001, 8307,
3 SDO_POINT_TYPE(12.4507268, 43.9364842, NULL), NULL, NULL),
4 'SM') FROM DUAL;
The result is:
SDO_GCDR.REVERSE_GEOCODE('O10G_EUR0705',SDO_GEOMETRY(2001,8307,SDO_POINT_TYPE(12
SDO_GEO_ADDR(0, SDO_KEYWORDARRAY(), NULL, 'STRADA SOTTOMONTANA', NULL, NULL, NUL
L, NULL, NULL, 'SM', '47890', NULL, '47890', NULL, NULL, NULL, NULL, 'F', 'F', N
ULL, NULL, 'L', ,999998505, 1,6740E+13, '', 1, 'DEFAULT', 12,4507268, 43,9364842
, NULL)
But when I try: SELECT SDO_GCDR.GEOCODE_ALL('O10G_EUR0705', SDO_KEYWORDARRAY('CONTRADA'), 'SM', 'DEFAULT') FROM DUAL; or
SELECT SDO_GCDR.GEOCODE_ALL('O10G_EUR0705', SDO_KEYWORDARRAY('PIAZZETTA MARINO MADIONI'), 'SM', 'DEFAULT') FROM DUAL; or
SELECT SDO_GCDR.GEOCODE_ADDR_ALL('O10G_EUR0705', create_addr_from_placename('CASA DEL CASTELLO DI FIORENTINO', 'SM'), 3) FRO
M DUAL;
I allways get the following error:
ERROR at line 1:
ORA-06502: PL/SQL: numeric or value error: character to number conversion error
ORA-06512: at "MDSYS.SDO_GCDR", line 554
ORA-06512: at "MDSYS.SDO_GCDR", line 625
ORA-06512: at "MDSYS.SDO_GCDR", line 769
ORA-06512: at line 1
I did create the function for creating addres from placename as described in example and the function was successfully created.
What am I doing wrong? Please help.

Sam,
It looks like the percent value or one of the other computed values in the result is not correct.
Can you try this function and post what you get back for the problem address (this is in the same package sdo_gcdr)?
function geocode(
username varchar2,
addr_lines SDO_keywordArray,
country VARCHAR2,
match_mode VARCHAR2)
This should return the computed geocoder result.
siva

Similar Messages

  • Oracle Geocoding Problems?

    Anyone could identify why Oracle geocoding make some failures in the following cases as found?
    1. In the admin area table: GC_AREA_XX, Oracle geocoding API will be failed to present the results for road level from GC_ROAD_XX table,when AREA_NAME column has the data containing the number like the pattern below. If translating those number to the letters by using TRANSLATE(area_name, '0123456789', 'ABCDEFGHIJ') , Oracle geocoding works.
    ABERDEEN  3
    ALEXANDRIA  1A
    GREENVIEW NO 16
    SELECT SDO_GCDR.GEOCODE_ALL('TEST', SDO_KEYWORDARRAY('UNIVERSITY RD','GREENVIEW NO 16,AB'), 'CA','DEFAULT')x FROM dual
    2. Why does Oracle geocoding API:  SDO_GCDR.GEOCODE_ALL do a search from GC_POI_XX (Point Of Interest) table sometimes? It doesn't go to GC_ROAD_XX table to find exactly matching one for the road name directly. Instead, it brings more results from POI table. Sometimes, this API gets results both from road table and POI table. Actually, as found, the best API for POI table query is: SDO_GCDR.GEOCODE_ADDR_ALL  or  SDO_GCDR.GEOCODE_ADDR.
    3. The API SDO_GCDR.GEOCODE_ALL or SDO_GCDR.GEOCODE doesn't like the street name with the number before or after it, so it could not find it from the road table. However, if adding the house number before it, it can find it. For instance:
    SELECT SDO_GCDR.GEOCODE_ALL('TEST', SDO_KEYWORDARRAY('7 SCHOOL RD','MINTO,ON'), 'CA','DEFAULT')x FROM dual  ---- only bring the result for the area
    SELECT SDO_GCDR.GEOCODE_ALL('TEST', SDO_KEYWORDARRAY('20 7 SCHOOL RD','MINTO,ON'), 'CA','DEFAULT')x FROM dual  ---- good, bring the result for the street
    4.  Oracle geocoding API:  SDO_GCDR.GEOCODE_ALL doesn't like RUE, CH to be included in the street name. CH needs to be replaced by CHMIN. RUE needs to be deleted, or to add a number before it for that API, if no any keyword appears in the street name. It looks some keywords in GC_PARSER_PROFILES_XX have some influence to the road search for that API, we think that may not happen.
    For instance, the street name with CH: CH A CORNU  doesn't work in API, but CHMIN A CORNU works.
    SELECT SDO_GCDR.GEOCODE_ALL('TEST', SDO_KEYWORDARRAY('CH A CORNU','ARGYLE,NS'), 'CA','DEFAULT')x FROM dual;
    For instance, the street name with RUE:
    SELECT SDO_GCDR.GEOCODE_ALL('TEST', SDO_KEYWORDARRAY('RUE D''OTTAWA','COATICOOK,QC'), 'CA','DEFAULT')x FROM dual
    --not good result
    SELECT SDO_GCDR.GEOCODE_ALL('TEST', SDO_KEYWORDARRAY('D''OTTAWA','COATICOOK,QC'), 'CA','DEFAULT')x FROM dual
    --good result
    SELECT SDO_GCDR.GEOCODE_ALL('TEST', SDO_KEYWORDARRAY('100 D''OTTAWA','COATICOOK,QC'), 'CA','DEFAULT')x FROM dual --good result
    For instance, the street name with keyword: ST, that influences the query. But if adding any letter around the keyword ST like ST%, the query works. Why?
    SELECT SDO_GCDR.GEOCODE_ALL('DMTI_2014', SDO_KEYWORDARRAY('RUE ST VICTOR','QUÉBEC,QC'), 'CA','DEFAULT')x FROM dual --not good result
    SELECT SDO_GCDR.GEOCODE_ALL('DMTI_2014', SDO_KEYWORDARRAY('RUE ST% VICTOR','QUÉBEC,QC'), 'CA','DEFAULT')x FROM dual --good result

    Why do the keywords in the column: STREET_TYPE_KEYWORD of table: GC_PARSER_PROFILES_CA make the Oracle geocoding failure (Oracle geocoding only gets the result for admin level, not for the street or road)?
    After removing EAST, NORTH, from keywords, the following geocoding queries do not get their roads. Does Oracle reserves EAST and NORTH as keywords?
    SELECT SDO_GCDR.GEOCODE_ALL('DMTI_2014', SDO_KEYWORDARRAY('EAST RIVER RD','HINTON,AB'), 'CA','DEFAULT')x FROM dual
    SELECT SDO_GCDR.GEOCODE_ALL('DMTI_2014', SDO_KEYWORDARRAY('EAST WELLINGTON RD','NANAIMO,BC'), 'CA','DEFAULT')x FROM dual
    SELECT SDO_GCDR.GEOCODE_ALL('DMTI_2014', SDO_KEYWORDARRAY('NORTH RIVER RD','OTTAWA,ON'), 'CA','DEFAULT')x FROM dual
    However, why does the following similar one gets its good result?
    SELECT SDO_GCDR.GEOCODE_ALL('DMTI_2014', SDO_KEYWORDARRAY('CAPE CHIN NORTH SHORE RD','NORTHERN BRUCE PENINSULA,ON'), 'CA','DEFAULT')x FROM dual

  • Oracle reports problem in distribution with xml file

    Hi ,
    I am having problem while I am trying to distribute the file with specifing the destination details in the xml. If I am giving the destination details in url then it is working.
    Ex.
    This is Working
    http://bryxh91:8889/reports/rwservlet?report=devlopersuit/reports/test.jsp&userid=anju/[email protected]&desformat=pdf&destype=file&desname=devlopersuit/reports/output_file.pdf
    Not working :
    http://bryxh91:8889/reports/rwservlet?report=devlopersuit/reports/test.jsp&userid=anju/[email protected]&DISTRIBUTE=YES&destination=devlopersuit/reports/dis_test.xml
    xml file
    <destinations>
    <file id="test" name="output_file.pdf" format="pdf">
    <include scr="mainSection"/>
    </file>
    </destinations>
    Error : REP-34304: Distribution failed to complete; review the distribution lists
    Its been week I tried many things , but not working.
    Right now I am trying to distribute to single file but my goal is to burst and distribute on basis of account number.
    This is the first stage of the project.
    Thanks a lot for the help
    Anju

    Hello
    see answer in Oracle reports problem in distribution with xml file
    Regards

  • Everyones Oracle Linux Problem solved!!!

    Everyones Oracle Linux Problem solved!!!
    Here's something Linux people should relate to: Use what works!
    what works?
    NT works! NT works great with 8i AND OAS.
    No hassles at all!
    Up and running within one day!!!!
    Guaranteed!
    U don't see a NT forum here with people having ridiculous install problems like Linux people?
    Perhaps Oracle should moderate this newsgroup and even give an authorative answer or two?
    null

    I have switched our development and soon production databases to Linux because it runs like a charm. Fast and efficient, no problems. The installer has been a problem no doubt because Oracle put less of an emphasis on debugging their Linux installer than their idiot-proof NT installer.
    By the way, I was able to circumvent installer problems by just linking svrmgrl to svrmgrlO; this avoided the dreaded segmentation fault and kicked everything open just fine.
    BTW, about NT; what makes an OS is not how well everything works when everything is going well, but how bad it gets when something goes bad. For instance, the segmentation faults on Linux weren't a problem because I just picked up and continued; on NT you'd have to restart the whole system...not a pleasant feature.
    null

  • Oracle Designer Problem Please help me

    Sir,
    1) I created a database
    2) Run>cd d:\Oracle_home\repadm61\admin\@ckqa
    @ckparams.txt
    @ ckvalqa
    @ ckcreate
    3)Opened Repository Administration Utility
    Log in as 'repos_manager/repos_manager@orcltest'
    Installed Repository.
    4) Opened Oracle 9i Designer. I am able to connect
    as 'repos_manager/repos_manager@orcltest'
    But I am not able to logon as any other user in same database/ any other user in different database. Why?
    Please help me.
    regards
    Mathew

    duplicate thread, see this one -> Re: Oracle Designer Problem Please help me

  • Oracle Geocoding

    What is the starting point for using Oracle Geocoder ? Question context are :-
    1. How do we provide the dataset for geocoding to Oracle ?
    2. How do we write applications for geocoding using Oracle Geocoder ?
    Thanks
    null

    Yes, the one with Pure Integrate.
    BTW, is there any other option also ?
    Thanks and Regards
    Rajesh

  • Geocoder Problems in France

    I'm currently having difficulty geocoding with French data. I can geocode correctly with US, Canadian, Irish, English and German data. I'm getting errors soley with French data. When I geocode using the Geocoder servlet it works. When I geocode through SQLplus i get errors.
    The error I get from SQLPLUS is
    FR@NAVQ404:SQL> SELECT SDO_GCDR.GEOCODE('FR', SDO_KEYWORDARRAY('91','Boulevard Saint Germain','Paris','Paris 75009'), 'FR', 'RELAX_STREET_TYPE') FROM DUAL;
    SELECT SDO_GCDR.GEOCODE('FR', SDO_KEYWORDARRAY('91','Boulevard Saint Germain','Paris','Paris 75009'), 'FR', 'RELAX_STREET_TYPE') FROM DUAL
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.NullPointerException
    ORA-06512: at "MDSYS.SDO_GCDR", line 644
    ORA-06512: at "MDSYS.SDO_GCDR", line 670
    And when I check the user dump file on the server the following exception exists
    java.lang.NullPointerException
    at oracle.spatial.geocoder.parser.AddressFormatProfile.updateTableDB(AddressFormatProfile.java:275)
    at oracle.spatial.geocoder.parser.AddressFormatProfile.readDataFromProfileDB(AddressFormatProfile.java:170)
    at oracle.spatial.geocoder.parser.AddressFormatProfile.<init>(AddressFormatProfile.java:124)
    at oracle.spatial.geocoder.SQLGeocoderStub.geocodeAddress(SQLGeocoderStub.java:329)
    Has anyone experienced this problem or can someone at Oracle tell me what the null pointer at that line code be.
    Thanks

    I have seen this problem. I was actually formally reported (bug 4276403).
    The problem comes from an incorrect definition of one address keyword. You can find it using this:
    select * from GC_PARSER_PROFILES
    where output_keyword is null
    and country_code='FR'
    and section_label='LOCALITY_KEYWORD_DICTIONARY';
    The result should look like this:
    FR
    LOCALITY_KEYWORD_DICTIONARY
    NULL
    NULL
    NULL
    SDO_KEYWORDARRAY('CÉDEX', 'CAIE', 'CEDEX')
    The goal of this setting is to ignore the CEDEX keyword from the address line that contains the postal code and city name, like, for example in:
    15, boulevard Charles de Gaulle
    92715 Colombes cedex
    The CEDEX keyword indicates that the postal code is not a real geographical postal code but rather a mail sorting code.
    The problem comes from the OUTPUT_KEYWORD that is set to null. All you need is to update the setting, replacing the OUTPUT_KEYWORD with a blank (not an empty) string, like this:
    update
    gc_parser_profiles
    set
    output_keyword=' ',
    keywords=sdo_keywordarray('CÉDEX','CAIE','CEDEX')
    where
    output_keyword is null and
    country_code='FR' and
    section_label='LOCALITY_KEYWORD_DICTIONARY' ;
    Let me know if this fixes your problem.
    Albert

  • Oracle Spatial problem

    Hi all, I am having a problem working through some examples in a book from Apress.Com named Pro Oracle Spatial, chapter 3. Does anyone recognise the problem below or have a suggestion as to how I can correct it. (It has stopped me momentarily) I have 'googled' with no ready result. TIA Regards Peter.
    SQL> -- Listing 3-5. Geocoding Addresses to Obtain Explicit Spatial Information
    SQL> UPDATE customers
    2 SET location =
    3 sdo_gcdr.geocode_as_geometry
    4 (
    5 'SPATIAL',
    6 sdo_keywordarray
    7 (
    8 street_number || ' ' || street_name,
    9 city || ', ' || state || ' ' || postal_code
    10 ),
    11 'US'
    12 );
    sdo_gcdr.geocode_as_geometry
    ERROR at line 3:
    ORA-29532: Java call terminated by uncaught Java exception: Message:null
    Thu Jan 05 10:51:25 GMT+11:00 2006
    Machine Node Name: localhost
    Component: Geocoder
    Sub-Component: Road.fetchRoadsWithMatchedHN
    Server Side
    Severity: 60
    Description: ORA-00904: "B"."DCA": invalid identifier
    ORA-06512: at "MDSYS.SDO_GCDR", line 4944
    ORA-06512: at "MDSYS.SDO_GCDR", line 4984

    Check out the Spatial forum at Spatial (just a couple of lines further down that the General forum you posted in here <g>)

  • Pro Oracle Spatial problem

    Hi all, I am having a problem working through some examples in a book from Apress.Com named Pro Oracle Spatial, chapter 3. Does anyone recognise the problem below or have a suggestion as to how I can correct it. (It has stopped me momentarily) I have 'googled' with no ready result. TIA Regards Peter.
    SQL> -- Listing 3-5. Geocoding Addresses to Obtain Explicit Spatial Information
    SQL> UPDATE customers
    2 SET location =
    3 sdo_gcdr.geocode_as_geometry
    4 (
    5 'SPATIAL',
    6 sdo_keywordarray
    7 (
    8 street_number || ' ' || street_name,
    9 city || ', ' || state || ' ' || postal_code
    10 ),
    11 'US'
    12 );
    sdo_gcdr.geocode_as_geometry
    ERROR at line 3:
    ORA-29532: Java call terminated by uncaught Java exception: Message:null
    Thu Jan 05 10:51:25 GMT+11:00 2006
    Machine Node Name: localhost
    Component: Geocoder
    Sub-Component: Road.fetchRoadsWithMatchedHN
    Server Side
    Severity: 60
    Description: ORA-00904: "B"."DCA": invalid identifier
    ORA-06512: at "MDSYS.SDO_GCDR", line 4944
    ORA-06512: at "MDSYS.SDO_GCDR", line 4984

    Hi,
    I think you need 10.1.0.3 or higher for this to work:
    Geocoder - error

  • Oracle 10g to 11g Upgrade - Oracle Clusterware problem

    Oracle10g RAC (2 Nodes) RHEL 4 64bit
    Hi All,
    I have began the procedure for upgrading Oracle Clusterware to 11g. However, during the install OUI was giving me certain error messages like it couldn't transfer the OUI installlogs to node 2. Well, I kept pushing through the install and after I ran the last rootupgrade script on node 2 it gave me the following error:
    Checking the existence of nodeapps on this node
    Exception in thread "main" java.lang.UnsupportedClassVersionError: oracle/ops/opsctl/OPSCTLDriver (Unsupported major.minor version 49.0)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    Creating '/crs/home/install/paramfile.crs' with data used for CRS configuration
    Exception in thread "main" java.lang.UnsupportedClassVersionError: oracle/ops/opsctl/OPSCTLDriver (Unsupported major.minor version 49.0)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    Failed to retrieve VIP details
    Exception in thread "main" java.lang.UnsupportedClassVersionError: oracle/ops/opsctl/OPSCTLDriver (Unsupported major.minor version 49.0)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    Failed to retrieve VIP details
    Setting CRS configuration values in /crs/home/install/paramfile.crs
    So I ignored the error for the time being and after that I checked the status of crs and it gave me the following:
    [oracle@vtl-rac2 crsd]$ crsstatus
    HA Resource Target State
    ora.VMRACDEV.VMRACDEV1.inst ONLINE ONLINE on vtl-rac1
    ora.VMRACDEV.VMRACDEV2.inst ONLINE ONLINE on vtl-rac2
    ora.VMRACDEV.db ONLINE ONLINE on vtl-rac1
    ora.vtl-rac1.ASM1.asm ONLINE ONLINE on vtl-rac1
    ora.vtl-rac1.LISTENER_VTL-RAC1.lsnr ONLINE ONLINE on vtl-rac1
    ora.vtl-rac1.gsd ONLINE ONLINE on vtl-rac1
    ora.vtl-rac1.ons ONLINE OFFLINE
    ora.vtl-rac1.vip ONLINE ONLINE on vtl-rac1
    ora.vtl-rac2.ASM2.asm ONLINE ONLINE on vtl-rac2
    ora.vtl-rac2.LISTENER_VTL-RAC2.lsnr ONLINE ONLINE on vtl-rac2
    ora.vtl-rac2.gsd ONLINE ONLINE on vtl-rac2
    ora.vtl-rac2.ons ONLINE OFFLINE
    ora.vtl-rac2.vip ONLINE ONLINE on vtl-rac2
    So i tried to bring it back up by doing a crs_stop -all and crs_start -all and it gave me the following error:
    vtl-rac1 : CRS-1019: Resource ora.vtl-rac2.ons (application) cannot run on vtl-rac1
    Start of `ora.vtl-rac1.ons` on member `vtl-rac1` failed.
    vtl-rac2 : CRS-1019: Resource ora.vtl-rac1.ons (application) cannot run on vtl-rac2
    CRS-0223: Resource 'ora.VMRACDEV.db' has placement error.
    CRS-0215: Could not start resource 'ora.vtl-rac1.ons'.
    CRS-0215: Could not start resource 'ora.vtl-rac2.ons'.
    I am thinking that all of this is caused by the various issues I had with the install. If I am incorrect, then please let me know. If it is true, I would like to know if there are any 11g docs on how to clean up a failed clusterware upgrade. Any advice would be greatly appreciated on any of the situations I am having.
    Thank you

    Hi Chandra,
    Did CVU report any problems before the upgrade?No, there were no errors reported by CVU before the upgrade.
    I don't there is note out there for cleaning 11g CRS
    install...and I think can very use the 10g CRS note -
    239998.1.Yeah I might have to go that way.
    I have both the 11g CRS install and upgrade from 10g
    to 11CRS at
    http://chandradba.blogspot.com/2007/08/oracle-11g-rac-
    install-on-red-hat-50.html
    and
    http://chandradba.blogspot.com/2008/02/oracle-10g-crs-
    upgrade-to-11g-crs.html
    see if it helps.Yup, your guide is very simple, clear and error proof :) That's how mine when pretty much except right around 75% I started getting these strange errors of files not being able to be transferred to node 2. Anyways, it shouldn't be a problem as none of those errors were configuration related...or else I would have a messed up cluster.
    Well, I actually rebooted both machines and now the whole CRS stack is up!! So I guess I am ok. We'll just have to wait and see.
    Thanks for your help Chandra...I always appreciate it.

  • Oracle Installation Problem on Windows 2000

    Dears
    I have the Windows 2000 Advance Server and Windows 2000 Professional. I install the Oracle8 on Windows 2000 Advance Server and Windows 2000 Professional. I have a lot of problems while i install. If i install it successfully after two or three days it gives me some errors. like it give errors the services. It could not start the Instance.
    If i upgrade the NT 4.0 to Windows 2000 which is also an ORACLE server. It upgrade the OS but not upgrade the Registory. It have the same problem
    Please tell me is the Oracle 8.0.4 is compatible with Windows 2000 Advance Server and Windows 2000 Professional or not.
    Please Please.
    Yours
    Muhammad Munir
    [email protected]
    null

    This resolved my problem as well. I am on Windows 2000 server, SP2. The problem installing Oracle 8.1.7.0.0 standard edition exhibited itself by briefly changing the cursor to an hourglass and then returning to ready. The executable JREW.EXE would briefly execute in processes and then stop.
    I copied the installation media to a server drive and renamed symcjit.dll and the installer worked correctly.
    Thank you to Yugandhar for this solution.
    We too faced some of those problems ie setup.exe wont even run in Windows XP pro, p4 system..the culprit is symcjit.dll. Its the problem in p4 to run this dll. After lot of research, just rename it and all is set to go.
    regards
    Yugandhar

  • Oracle Listener Problem

    I am having a problem starting the Oracle Listener after a system crash on Windows NT.
    However, if I first connect to the internet and then try to restart, everything works ok.
    Why should I have to connect to the internet with my laptop in order to start the Oracle Listener?
    The message I am getting is as follows.
    C:\WINNT\Profiles\timh\Desktop>net start OracleStartORCL
    The OracleStartORCL service is starting..........
    The OracleStartORCL service was started successfully.
    C:\WINNT\Profiles\timh\Desktop>net start OracleTNSListener80
    The OracleTNSListener80 service is starting.
    The OracleTNSListener80 service could not be started.
    A system error has occurred.
    System error 1067 has occurred.
    The process terminated unexpectedly.
    null

    some more info.
    Given below is the output of status. does anything look bad or am I doing something wrong?
    for the service"abcd" it says has two instances, one of the status is unknown. does that matter is it always like that or I am asking very dumb questions?
    Please excuse me if that is the case.
    C:\lsnrctl status
    LSNRCTL for 32-bit Windows: Version 9.2.0.1.0 - Production on 23-JUL-2007 14:54:28
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=servername)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 9.2.0.1.0 - Produc
    tion
    Start Date 23-JUL-2007 10:27:09
    Uptime 0 days 4 hr. 27 min. 19 sec
    Trace Level off
    Security OFF
    SNMP OFF
    Listener Parameter File D:\oracle\ora92\network\admin\listener.ora
    Listener Log File D:\oracle\ora92\network\log\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=servername.domain)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=servername.domain)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=servername.domain)(PORT=2100))(Presentation=FTP)(Session=RAW))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "abcd" has 2 instance(s).
    Instance "abcd", status UNKNOWN, has 1 handler(s) for this service...
    Instance "abcd", status READY, has 1 handler(s) for this service...
    Service "abcdXDB" has 1 instance(s).
    Instance "abcd", status READY, has 1 handler(s) for this service...
    The command completed successfully

  • Oracle driver problem

    Hello,
    I'm currently trying to install the Jive forum application on the WAS. The installation itself went very well, but I have a problem with the initial setup.
    At a certain point I have to give the DB driver class and the according connection string.
    I have a oracle DB installed for this and was using the following driver class:
    oracle.jdbc.driver.OracleDriver
    As error jive setup gives me :
    Unable to load database driver 'oracle.jdbc.driver.OracleDriver' - make sure it is in your appserver's classpath.
    I have deployed the classes12.jar as described in
    http://help.sap.com/saphelp_nw04/helpdata/en/80/4f34c587f05048adee640f4c346417/frameset.htm
    This also did not solve my problem.
    Does somebody has some experience  with this?
    Thanks a lot!
    Regards,
    Peter

    Hi,
    how likely is it that your DB connect code produces the problem ? Did you try this question on the database forum ?
    Frank

  • Oracle report problem-Passing a column value from a query block to another

    Hi I am facing a problem in oracle reports.
    I have 3 query blocks say Q1,Q2 and Q3.
    From Q1 I get a tblkey coulmn and for each value of tblkey I need to pass it on to Q2 which gives me a status and now finally Q3 will take tblkey and status to give me final output.
    Can somebody please tell me how I can do it?
    Thanks,
    Avin

    Depending on your report requirement, you may do a join of Q1, Q2, and Q3; or keep all Qs and for Q3 use subqueries ...
    Select ... from ... where tblkey, status in (
    select tblkey, status from ... where tblkey in (
    select tblkey from .... where .... ) )
    Good luck.
    DC

  • Crystal Report Oracle Logon Problem

    Hi,
    We are using Webforms for launching the reports.  When we tried to launch the reports system is prompting for logon information.  It states "The report you requested requires further information." followed by text box having Server Name,  Database Name, User Name, Password and use integrated security(checkbox). 
    We are using Oracle backend for connecting the database.  Crystal Report RPT is designed using the OLEDB ADO (Database Type) and the provider is u201CMSDAORAu201D. 
    The same report is working fine when the Internet service manager identity is set as u201CLocal Systemu201D reported problem occurs when the identity is set as u201CNetwork Serviceu201D.  How to over come this issue.
    Crystal Version : Crystal Reports 2008 is installed
    Operating System : Windows server 2003 standard edition
    Oracle Version : Oracle 11g
    Please Note : Report is fetching data from the crystal report designer in the preview.  There is no problem in oracle connectivity.
    Code is available below
    rpt.Load(@"D:\report\totaldetails_sub_sp_oracle.rpt");
    CrystalDecisions.CrystalReports.Engine.Database crDb;
    CrystalDecisions.CrystalReports.Engine.Tables crTables;
    CrystalDecisions.CrystalReports.Engine.Table crTable;
    TableLogOnInfo crTableLogOnInfo;
    ConnectionInfo crConnInfo;
    crDb = rpt.Database;
    crTables = crDb.Tables;
    crConnInfo = new CrystalDecisions.Shared.ConnectionInfo();
    crConnInfo.ServerName = "< Oracle Service Name>";
    crConnInfo.DatabaseName = "";
    crConnInfo.UserID = "<Oralce User Name>";
    crConnInfo.Password = "<Oracle Password>";
    for (int i = 0; i < crTables.Count; i++)
             crTable = crTables<i>;
    crTableLogOnInfo = crTable.LogOnInfo;
    crTableLogOnInfo.ConnectionInfo = crConnInfo;
    crTable.ApplyLogOnInfo(crTableLogOnInfo);
    CrViewer.ReportSource = rpt;

    Thanks a lot for replies ...
    To use oracle client 32 bit on the x64 server may be a problem for the next times. And my project leader don't want to change oracle client version (x64). So I try to change my reports connections to ODBC type.
    Now, I want to ask another question:
    Firstly, I will test these changes on 32 bit. Later, I test it on 64 bit.
    My report are created on Crystal reports 10, 32 bit. I change the connection type by using "Set Datasource Location" menu. I test this ODBC connection with my report on 32 bit platform. I can see the records on the Crystal Reports when I refresh my report. This is OKEY. ODBC connection is success on 32 bit.
    But, in my project (this is an web application, and it is working 32 bit and 64 bit successfully), I can't see the records. I debuggged my project on 32 bit with Visual Studio. For this, I put some breakpoints on to the specific places. I watch that two records are taken from database. Everything is good. But when "reports.aspx" file opens, these records don't appear. Before changing connection type , this records were listed in my project on 32 bit.
    For this, have you any ideas ?
    Thanks ...

Maybe you are looking for

  • Jdcap, two different libraries with the same name?

    I am looking for a network packet capturer and I have found two libraries, both called "Jdcap": 1) [http://netresearch.ics.uci.edu/kfujii/jpcap/doc/index.html] 2) [http://jpcap.sourceforge.net/] What are the differences between them? Why do the have

  • How to look inside a jar?

    I am getting errors when using the sun deploytool. I think there is an ejb-jar.xml inside my ejb-jar file. how do i look at it?

  • Putting a gap in a rule below

    Hello, Whenever I design a form that requires rules below (e.g. Name______________ Address______________), I frequently have a need to have a gap in the rule below. For example, I might have State_________ Zip____________ on one line, but I seem to b

  • URGENT Please help ! Amount from BET01

    Hello, Can anyone please tell me how to get the right amount from BET01 field in infotype 0008? when i m reading the table pa0008 using select statement, my value in the internal table shows that bet01 field for hourly employees is multiplied by a fa

  • Change Colours

    Hi Everyone A coouple of questions - 1. Is it possible to change the colours of the text that appears in the menu at the top of the page? 2. Is it possible to change the colour of the background in the slide show of photos? Currently this appears as