Locator installation scripts XE - md/admin/catmdloc.sql missing

Hi,
just tried to install some spatial tables into my XE edition and it failed.
When tracing back to the origin, I found dat the mdsys schema is empty, and that the createdb.sh install script (Linux) contains this step:
-- Install Spatial Locator
connect sys/oracle as sysdba
create user MDSYS identified by MDSYS account lock;
@?/md/admin/catmdloc.sql
, but the complete directory tree md is missing under $ORACLE_HOME.
Tried to find this directory by installing various editions of XE (Windows, Debian, Centos) West-European or universal, and non of these installations will give me an md directory tree.
In the past this directory did however exists in XE editions (my current 11g R2 doesn't have this problem), can anybody explain this ?
ramon

The messages tell me that you do not have the ORACLE_HOME variable set correctly. This has been discussed umpteen times, but since search is beyond the call of duty, I'll copy/paste one of my recent responses
In Linux and Unix Oracle REQUIRES that variables ORACLE_HOME and ORACLE_SID be set properly. And *nix REQUIRES that an executable be in the PATH or explicitly referenced. The easiest way of setting those consistently and correctly is to source the oraenv routine which is placed in /usr/local/bin by the installer. To use that, and assuming you are using Linux,
1) Find out the ORACLE_SID for your reference
tail /etc/oratab
and note the last line. The first field will be the SID.
2) Source oraenv
. oraenv
[ oracle ]?: enter the SID here
and if you want to put this into a script, enter something like
ORAENV_ASK=NO
ORACLE_SID={enter your SID ehere}
. oraenv
ORAENV_ASK=
Many people will suggest you set these variables in your profile. In the long term that is a bad idea (and DBAs should always be thinking in the long term) since most DBAs end up with a second database, ORACLE_HOME, upgrade or product and oraenv ensures that there will be no conflicts.

Similar Messages

  • Post OCM installation script

    Hi,
    This related to Preparing the Database for Configuration Collections step in OCM installation. We have two node RAC. Should we run the below script :ORACLE_HOME/ccr/admin/scripts/installCCRSQL.sh ebs_collectconfig -u <Oracle_Applications_User> -w <Oracle_Applications_Password>
    in both the RAC nodes?
    Thanks,
    Sunil.

    Hi Sunil
    It is quite advicable to read the following documentation
    http://download.oracle.com/docs/html/E12481_03/ccrqs.htm
    In addition on your question about RAC "For RAC databases, the following steps must be run against one database instance only but the Oracle Configuration Manager software must be present in all ORACLE_HOME locations."
    Let us know if this helps you out.
    thanks.

  • Solution (not question :-) ): Apex Installation Script

    i´ve asked so may question here, and got (most of the time) fast and helpfull answers, so that´s the time to do something for the community:-)
    i´ve written an installation script for Apex 3.1 / 3.1.1. It has two Parts. First Part ist the main script to install all the necassary scripts (and there are a lot). The second one (installcheck_apex.sql) is a PL/SQL Block that checks all requirements and shows the output, you should consider/change. And the script can change all parameters/ports/accounts ...
    But it is very long (320 Lines of Code) If somebody needs it, i post it also
    Remarks are in German\English
    All comments are welcome :-)
    Kind regards
    Marco Patzwahl
    MuniQSoft GmbH
    REM ##################################################
    REM Oracle APEX Beispiele von Marco Patzwahl
    REM MuniQSoft GmbH 2007/2008 Automatische Installation von Apex 3.1.1
    REM Automatic Installation of all necessary Apex Scripts
    REM Version 2.1 22.07.2008
    REM ##################################################
    @ECHO OFF
    REM ##################################################
    SET APEX_PATH=D:\apex_3.1.1
    SET SERVER_NAME=127.0.0.1
    SET ORACLE_SID=o10g
    SET ORACLE_CONNECT=%SERVER_NAME%:1521/%ORACLE_SID%
    SET ORACLE_SYS_PWD=sys
    SET ORACLE_CTXSYS_PWD=sys
    SET FLOWS_USER=FLOWS_030100
    REM IF HTTP_PORT<>0 the PL/SQL HTTP Gateway is installed !!!!!
    SET HTTP_PORT=8080
    SET ADMIN_PWD=ADMIN
    REM Mögliche Spracheinstellungen/Possible Langues: de, es, fr,it,ja,ko,pt-br,zh-cn,zh-tw
    SET APEX_LANGUAGE=de
    SET NLS_LANG=GERMAN_GERMANY.AL32UTF8
    SET APEX_RUNTIME_ONLY_INSTALL=TRUE
    REM ##################################################
    IF NOT exist %apex_path%\apex goto dir_problem
    cd %APEX_PATH%\apex
    dir
    echo "Starte Installationsskript ..... / Starting script"
    REM Prüfung der Installationsvoraussetzungen / Check Prerequisites (Possible Parameters: 'CHECK','INSTALL:<pwd>:<port>:<flows_user>','DROP','RECOMPILE')
    REM This Option drops the APEX User with all Apex Applications !!!!!
    REM sqlplus "sys/%ORACLE_SYS_PWD%@%ORACLE_CONNECT% as sysdba" @%apex_path%\installcheck_apex.sql DROP
    REM Installationsvoraussetzungen prüfen / Check requirements
    sqlplus "sys/%ORACLE_SYS_PWD%@%ORACLE_CONNECT% as sysdba" @%apex_path%\installcheck_apex.sql CHECK
    REM Oracle DataMining installieren / Install Oracle Datamining (if you like):
    REM sqlplus "sys/%ORACLE_SYS_PWD%@%ORACLE_CONNECT% as sysdba" @?\dm\admin\dminst.sql SYSAUX TEMP;
    REM Oracle Text installieren / Install Oracle Text (if you like):
    REM sqlplus "sys/%ORACLE_SYS_PWD%@%ORACLE_CONNECT% as sysdba" @?\ctx\admin\catctx %ORACLE_CTXSYS_PWD% SYSAUX TEMP NOLOCK;
    REM sqlplus "ctxsys/%ORACLE_SYS_PWD%@%ORACLE_CONNECT% as sysdba" @?\ctx\admin\defaults\dr0defin.sql "GERMAN";
    REM Oracle Lock Views installieren / Install Oracle Lock Views (if you like):
    REM sqlplus "sys/%ORACLE_SYS_PWD%@%ORACLE_CONNECT% as sysdba" @?\RDBMS\ADMIN\catblock.sql
    REM Hauptskript für die Installation / Basic Skript for Install (3.1 and 3.1.1)
    sqlplus "sys/%ORACLE_SYS_PWD%@%ORACLE_CONNECT% as sysdba" @%apex_path%\apex\apexins SYSAUX SYSAUX TEMP /i/
    REM Zusaetzliche Schritte nach einer Installation / Misc Additional Steps
    sqlplus "sys/%ORACLE_SYS_PWD%@%ORACLE_CONNECT% as sysdba" @%apex_path%\installcheck_apex.sql INSTALL:%ADMIN_PWD%:%HTTP_PORT%:%FLOWS_USER%
    REM Installation des WEB-Gateway ( Bei Frage nach dem Wert für imgupg / If asked for value of imgupg =>Return )
    REM Das Skript muss mit EXIT beendet werden => grmpf / Script needs a exit command at the end =>%?!$§/&%$§"
    IF "%HTTP_PORT%"=="0" GOTO no_epg
    sqlplus "sys/%ORACLE_SYS_PWD%@%ORACLE_CONNECT% as sysdba" @%apex_path%\apex\apex_epg_config %apex_path%
    :no_epg
    REM Wird nur eine Runtime Installation gewünscht? / Only Runtime Installtion of APEX
    IF "%APEX_RUNTIME_ONLY_INSTALL%" == "FALSE" GOTO firefox
    sqlplus "sys/%ORACLE_SYS_PWD%@%ORACLE_CONNECT% as sysdba" @%apex_path%\apex\apxdevrm
    :firefox
    "C:\Programme\Mozilla Firefox\firefox.exe" 127.0.0.1:8080/apex
    REM "C:\Programm Files\Mozilla Firefox\firefox.exe" 127.0.0.1:8080/apex
    REM Änderungen der Menue-Sprache von APEX / Language File
    IF "%APEX_LANGUAGE%" == "us" GOTO end_of_apex
    sqlplus "sys/%ORACLE_SYS_PWD%@%ORACLE_CONNECT% as sysdba" @%apex_path%\apex\builder\%APEX_LANGUAGE%\load_%APEX_LANGUAGE%.sql
    :dir_problem
    echo "## Fehler: Verzeichnis APEX existiert nicht unter / Error: Directory not available"
    echo %apex_path%
    :end_of_install
    EXIT
    Message was edited by:
    mpatzwah

    You don't really have to, but if you want to use APEX with those multiple instances, it'll make
    life much easier - you don't want to keep the data in one database instance and your (APEX) application code in another and get the data over a link.
    But you only need one Instance of Oracle HTTP Server with multiple dads configured, not one
    HTTP Server per Instance.
    Regards
    Holger

  • @/vobs/oracle/rdbms/admin/catproc.sql  error message

    After setting up 9i DB manually when i ran this script all went well with few errors , i am wondering these errors are ignoreable ....
    @/vobs/oracle/rdbms/admin/catproc.sql
    Grant succeeded.
    drop package body sys.diana
    ERROR at line 1:
    ORA-04043: object DIANA does not exist
    drop package sys.diana
    ERROR at line 1:
    ORA-04043: object DIANA does not exist
    Package created.
    Package body created.
    drop package body sys.diutil
    ERROR at line 1:
    ORA-04043: object DIUTIL does not exist
    drop package sys.diutil
    ERROR at line 1:
    ORA-04043: object DIUTIL does not exist
    Package created.
    ERROR at line 1:
    ORA-04043: object PSTUBT does not exist
    Procedure created.
    Grant succeeded.
    drop procedure sys.pstub
    ERROR at line 1:
    ERROR at line 1:
    ORA-04043: object SUBPTXT2 does not exist
    Procedure created.
    drop procedure sys.subptxt
    ERROR at line 1:
    ORA-04043: object SUBPTXT does not exist
    ERROR at line 1:
    ORA-04043: object DBMS_XPLAN_TYPE_TABLE does not exist
    drop type dbms_xplan_type
    ERROR at line 1:
    ORA-04043: object DBMS_XPLAN_TYPE does not exist
    Type created.
    ERROR at line 1:
    ORA-00942: table or view does not exist
    DROP TABLE ODCI_WARNINGS$
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Type created.
    Table truncated.
    drop sequence dbms_lock_id
    ERROR at line 1:
    ORA-02289: sequence does not exist
    Sequence created.
    drop table SYSTEM.AQ$_Internet_Agent_Privs
    ERROR at line 1:
    ORA-00942: table or view does not exist
    drop table SYSTEM.AQ$_Internet_Agents
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Table created.
    DROP SYNONYM def$_tran
    ERROR at line 1:
    ORA-01434: private synonym to be dropped does not exist
    DROP SYNONYM def$_call
    ERROR at line 1:
    ORA-01434: private synonym to be dropped does not exist
    DROP SYNONYM def$_defaultdest
    ERROR at line 1:
    DROP TYPE SYS.ExplainMVMessage FORCE
    ERROR at line 1:
    ORA-04043: object EXPLAINMVMESSAGE does not exist
    Type created.
    drop view sys.transport_set_violations
    ERROR at line 1:
    ORA-00942: table or view does not exist
    PL/SQL procedure successfully completed.
    drop table sys.transts_error$
    ERROR at line 1:
    ORA-00942: table or view does not exist
    drop operator XMLSequence
    ERROR at line 1:
    ORA-29807: specified operator does not exist
    drop function XMLSequenceFromXMLType
    ERROR at line 1:
    ORA-04043: object XMLSEQUENCEFROMXMLTYPE does not exist
    drop function XMLSequenceFromRefCursor
    ERROR at line 1:
    drop function XMLSequenceFromRefCursor2
    ERROR at line 1:
    ORA-04043: object XMLSEQUENCEFROMREFCURSOR2 does not exist
    drop type XMLSeq_Imp_t
    ERROR at line 1:
    ORA-04043: object XMLSEQ_IMP_T does not exist
    drop type XMLSeqCur_Imp_t
    ERROR at line 1:
    ORA-04043: object KU$_IND_PART_T does not exist
    drop type ku$_ind_part_list_t force
    ERROR at line 1:
    ORA-04043: object KU$_IND_PART_LIST_T does not exist
    drop type ku$_piot_part_t force
    ERROR at line 1:
    Grant succeeded.
    Synonym created.
    Grant succeeded.
    Package altered.
    Package altered.
    PL/SQL procedure successfully completed.

    These errors are ignorable, Oracle just trying to drop the package before creating them. If this is the first time you run catproc.sql, the errors are expected.

  • Data Quality Services Installer script - Where is the 64 bit version

    Hi.
    I have Microsoft SQL Server 2012 - 11.0.2218.0 Enterprise Edition on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (WOW64) installed on my laptop. The Data Quality Services feature has been installed. When I try and run the DQS client it says I
    must run the DQS installer script. I therefore run the Data Quality Server Installer, which is the other option in the DQS menu, and it errors saying 'You are running 32-bit version of DQS installer on 64-bit OS'. I've looked for the 64-bit version but I can't
    find it. Any ideas where I can get it from?
    Thanks in advance for any help.

    iTunes 64bit version for Windows is somewhere in the future. Nice to see Apple is obviously doing something to remedy the issue.

  • How to run @?/rdbms/admin/utlrp.sql from OEM?

    After I make database changes I have to run utlrp.sql to compile all the invalid objects. I know how to do it from the host. But now I'm running this release from the OEM as sql jobs.
    Is there any equivalent of @?/rdbms/sadmin/utlrp.sql running from OEM?
    error msg:
    DOC> 2. Query showing UTL_RECOMP jobs that are running
    DOC>     SELECT job_name FROM dba_scheduler_running_jobs
    DOC>          WHERE job_name like 'UTL_RECOMP_SLAVE_%';
    DOC>#
    utl_recomp.recomp_parallel(threads);
    ERROR at line 4:
    ORA-06550: line 4, column 4:
    PLS-00201: identifier 'UTL_RECOMP.RECOMP_PARALLEL' must be declared
    ORA-06550: line 4, column 4:
    PL/SQL: Statement ignored
    Elapsed: 00:00:00.01
    SELECT dbms_registry_sys.time_stamp('utlrp_end') as timestamp from dual
    ERROR at line 1:
    ORA-00904: "DBMS_REGISTRY_SYS"."TIME_STAMP": invalid identifier
    Elapsed: 00:00:00.00
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.01
    DOC> The following query reports the number of objects that have compiled
    DOC> with errors (objects that compile with errors have status set to 3 in
    DOC> obj$). If the number is higher than expected, please examine the error
    DOC> messages reported with each object (using SHOW ERRORS) to see if they
    DOC> point to system misconfiguration or resource constraints that must be
    DOC> fixed before attempting to recompile these objects.
    DOC>#
    select COUNT(*) "OBJECTS WITH ERRORS" from obj$ where status = 3
    ERROR at line 1:
    ORA-00942: table or view does not exist

    Hi,
    How can you create job in OEM to use EXEC UTL_RECOMP.recomp_serial(); inorder to compile all db objects.
    I tried few things but all resulting in error.
    I am creating OEM job as SQL script and where it ask for SQL script I am giving below code:
    1.
    WHENEVER SQLERROR EXIT FAILURE;
    EXEC UTL_RECOMP.recomp_serial;Error:
    SQL> SQL> SQL> SQL> SQL> BEGIN utl_recomp.recomp_serial ; END;
    ERROR at line 1:
    ORA-06550: line 1, column 7:
    PLS-00201: identifier 'UTL_RECOMP.RECOMP_SERIAL' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    2.when trying with using utlrp.sql:
    WHENEVER SQLERROR EXIT FAILURE;
    @?/rdbms/admin/utlrp.sql;Error:
    SQL> SQL> SQL> SQL> SQL> SELECT dbms_registry_sys.time_stamp('utlrp_bgn') as timestamp from dual
    ERROR at line 1:
    ORA-00904: "DBMS_REGISTRY_SYS"."TIME_STAMP": invalid identifier
    I can run utlrp.sql without any error manually from sql prompt as sys user.
    I am login into OEM as SYSTEM user and also with user who has privilege for backup.
    thanks,

  • @@/oracle/RSS/102_64/rdbms/admin/catproc.sql  Executed with error.

    Hi All,
    We are in process of  CU&UC  during the unicode process , we have exported the DB and during Import during  create database phase  we are facing this problem..
    Please suggest.....
    @@/oracle/RSS/102_64/rdbms/admin/catproc.sql
    exit;
    Executed with error.
    Thanks,
    Subhash.G

    Some more errors:
    Below error from sapinst.log for reference .
    INFO 2007-11-03 06:19:35 Removing file /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/SYSTEM/CENTRAL/AS-ABAP/ora_query3_tmp0_1.sql. INFO 2007-11-03 06:19:35 Creating file /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/SYSTEM/CENTRAL/AS-ABAP/ora_query3_tmp0_1.sql. ERROR 2007-11-03 06:43:42 CJS-00084 SQL statement or script failed.
    DIAGNOSIS: Error message: ORA-955 for defaultdest ERROR 2007-11-03 06:43:45 MUT-03025 Caught ESAPinstException in Modulecall: ESAPinstException: error text undefined. ERROR 2007-11-03 06:43:47 FCO-00011 The step runCatprocSql with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_CreateDB|ind|ind|ind|ind|0|0|NW_OraDBCheck|ind|ind|ind|ind|0|0|NW_OraDBMain|ind|ind|ind|ind|0|0|NW_OraDBStd|ind|ind|ind|ind|3|0|NW_OraDbBuild|ind|ind|ind|ind|5|0|runCatprocSql was executed with status ERROR . INFO 2007-11-03 06:53:37 An error occured and the user decide to stop.\n Current step "|NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_CreateDB|ind|ind|ind|ind|0|0|NW_OraDBCheck|ind|ind|ind|ind|0|0|NW_OraDBMain|ind|ind|ind|ind|0|0|NW_OraDBStd|ind|ind|ind|ind|3|0|NW_OraDbBuild|ind|ind|ind|ind|5|0|runCatprocSql"
    Error from ora_sql.log
    @@/oracle/RSS/102_64/rdbms/admin/catproc.sql exit; Executed with error.
    Thanks

  • MariaDB, PHP, and mysql_connect() issue on Installation scripts

    I searched for this issue and turned out nothing..
    I am using an installation script on my web server and i get this error:
    function mysql_connect() not found:
    Your system does not appear to have mysql available within php
    I followed the wiki and have uncommented the following lines
    extension=pdo_mysql.so
    extension=mysqli.so
    extension=mysql.so
    I have also restarted the httpd daemon several times. I am using MariaDB because I know arch is dropping mysql. I followed the MariaDB wiki too and have it set-up properly.
    Here is my "mysqli" section of phpinfo()
    MysqlI Support    enabled
    Client API library version     mysqlnd 5.0.10 - 20111026 - $Id: e707c415db32080b3752b232487a435ee0372157 $
    Active Persistent Links     0
    Inactive Persistent Links     0
    Active Links     0
    Directive    Local Value    Master Value
    mysqli.allow_local_infile    On    On
    mysqli.allow_persistent    On    On
    mysqli.default_host    no value    no value
    mysqli.default_port    3306    3306
    mysqli.default_pw    no value    no value
    mysqli.default_socket    /var/run/mysqld/mysqld.sock    /var/run/mysqld/mysqld.sock
    mysqli.default_user    no value    no value
    mysqli.max_links    Unlimited    Unlimited
    mysqli.max_persistent    Unlimited    Unlimited
    mysqli.reconnect    Off    Off
    and here is "mysqlnd" in phpinfo()
    mysqlnd
    mysqlnd    enabled
    Version     mysqlnd 5.0.10 - 20111026 - $Id: e707c415db32080b3752b232487a435ee0372157 $
    Compression     supported
    SSL     supported
    Command buffer size     4096
    Read buffer size     32768
    Read timeout     31536000
    Collecting statistics     Yes
    Collecting memory statistics     No
    Tracing     n/a
    Loaded plugins     mysqlnd,example,debug_trace,auth_plugin_mysql_native_password,auth_plugin_mysql_clear_password
    API Extensions     mysqli
    MySQL is running as I have set-up a database and user for this installation script.

    I dropped to the command line and tried to run php and realized that mysql.so was named mssql.so..
    so for anyone that has this issue, when you install php, unless they change it next release, that's a typo you have to fix when uncommented the mysql extension
    Last edited by evil (2013-03-31 19:34:12)

  • Pb with command "Oracle_express\app\oracle\product\11.2.0\server\rdbms\admin\catalog.sql"

    Ello,
    I create a base manually
    when I execute the command
    sqlplus /nolog
    connect /as sysdba
    @Oracle_express\app\oracle\product\11.2.0\server\rdbms\admin\catalog.sql
    a the end I have the error
    Comment created.
    Comment created.
    Grant succeeded.
    DOC>######################################################################
    DOC>######################################################################
    DOC>    The following PL/SQL block will cause an ORA-20000 error and
    DOC>    terminate the current SQLPLUS session if the user is not SYS.
    DOC>    Disconnect and reconnect with AS SYSDBA.
    DOC>######################################################################
    DOC>######################################################################
    DOC>#
    DECLARE
    ERROR at line 1:
    ORA-06553: PLS-213: package STANDARD not accessible
    Disconnected from Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production
    Somebody have an idea for resolve my issue please ??
    Thank

    TRy this may help u
    CLASSY DBA: ORA-06553: PLS-213: package STANDARD not accessible

  • Installation 9i lite / try to open SQL plus in Win XP

    Good day,
    I install Oracle 9i lite on my pers computer and want to open SQL Plus but ask me for a User Name, Password and Host String.
    I tried them all, system/manager, scott/tiger, name it. Is there any doc in plain english or french on installation, configuration so I can use SQL Plus on my pers computer with win XP.
    Thanks
    Martin

    9i LITE (so far as I know) does not support SQL*PLUS. If you need SQL*PLUS install Personal Oracle instead.
    9i LITE is a light-weight database and supports ODBC, JDBC, and a command line interface "msql". SQL*PLUS is not included. Open a DOS window and enter
    msql system/manager@POLite
    this works IF you installed the development SDK stuff (see your ODBC DSNs and look for a new DSN called POLite).
    If you don't have the DSN POLite, then you don't yet have a database created for msql to access. See the manuals on how to create the database in Oracle Lite.

  • How to create installation scripts in packaged application

    can u tel me How to create installation scripts for packaged application.
    also tell me , i have to first install scripts and then supporting objects or
    supporting objects first then installation scripts..

    Hi,
    Depending upon your usecase there are different ways to implement this logic.
    Check this for example (Read my answer in this post):
    https://forums.sdn.sap.com/thread.jspa?threadID=349151
    Also check these senarios:
    http://help.sap.com/saphelp_nw70/helpdata/en/42/9ddf20bb211d72e10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/42/9ddcc9bb211d72e10000000a1553f6/frameset.htm
    Also the delegation may be interesting for you:
    http://help.sap.com/saphelp_nw70/helpdata/en/a0/44b742cafec96ae10000000a155106/frameset.htm
    Greetings,
    Praveen Gudapati

  • CS 6 CAN'T LOCATE INSTALLER TO SOLVE MISSING FILE PROBLEM

    when ever I open my photoshop  get a message missing files open installer. can not locate installer?

    Hello, mdougl10.
    Here is the article that shows you how to remove iTunes and all of it's components when receiving the error "The feature you are trying to use is on a network resource that is unavailable".  Once all components are uninstalled as outlined in the second article, you should be able to install iTunes again. 
    "The feature you are trying to use is on a network resource that is unavailable" alert when removing Apple software in Windows
    http://support.apple.com/kb/TS3704
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    http://support.apple.com/kb/HT1925
    Cheers,
    Jason H. 

  • Installation of XML Parser for PL/SQL

    After following the installation instruction on XML Parser PL/SQL on UNIX, I got the below error message when running the sample:
    SQL> exec domsample('/home/jyuan/oracle/plxml/sample','family.xml','err_dom.txt')
    BEGIN domsample('/home/jyuan/oracle/plxml/sample','family.xml','err_dom.txt'); END;
    ERROR at line 1:
    ORA-20100: Error occurred while parsing: Permission denied
    ORA-06512: at "JYUAN.XMLPARSER", line 22
    ORA-06512: at "JYUAN.XMLPARSER", line 69
    ORA-06512: at "JYUAN.DOMSAMPLE", line 80
    ORA-06512: at line 1
    I also checked the dba_role_privs to see if I have the privilege. The below result shows I am ok.
    SQL> select * from dba_role_privs where grantee='JYUAN';
    GRANTEE GRANTED_ROLE ADM DEF
    JYUAN CONNECT NO YES
    JYUAN ENG_DEVELOPER NO YES
    JYUAN JAVASYSPRIV NO YES
    JYUAN JAVAUSERPRIV NO YES
    I do see package XMLPARSER and procedure DOMSAMPLE in my schema. But, I don't know how to fix the problem. Your help is highly appreciated.
    Thank you.

    The XML Parser for Java comes preinstalled, as does the XML SQL utility.
    Assuming your 8.1.7 Oracle home is represented by ?, you need to:
    [list=1]
    [*]cd ?/xdk/lib
    [*]loadjava -v -r -u user/password xmlplsql.jar
    [*]cd ?/xdk/plsql/parser/bin
    [*]sqlplus user/password @load
    [list]

  • How to edit the installation scripts in the supporting objects

    I wanted to update one of the installation scripts in the supporting objects. I clicked into that script and use the "script editor" tab. After editing the script, I clicked "Apply Changes" button. It redirected me to the upper level of the page. When I reopen the script, the content of this script is messed up and has the content of another script, not what I have changed. What could happen with it? There is one case that the script was all wiped out!
    One general question, how can I easily update the install scripts and reload it without export and import the whole application? or Can I?
    Thanks
    Fengting

    Fengting,
    I am not sure what causes this, but I have had the same issue with shared components >> report queries. Sometimes if you have multiple report queries it becomes impossible to edit any of them. If I remember correctly I tried using a different browser and everything seemed to work ok. I was using Firefox when I was having the issue.
    Sorry this is not an answer, but I feel your pain!
    Cheers,
    Tyson Jouglet

  • Trying to update iTunes, the installer keeps freezing at 'Running iTunes Installer Scripts'.  i've tried several different versions of iTunes and can't install any of them.  I'm stuck with Version 4!!  Help!

    I'm trying to update iTunes on my mac (Power Mac G5 running tiger), but it always freezes at 'Running itunes installer script'.  I have tried a few different versions of iTunes, but I have the same problem with all of them.  I'm stuck on version 4 (which came with my os discs)!  Help?! 

    Ok, First this link should solve the windows scripting host error. I used "Download windows script host" in a google search and it was the first hyperlink.
    http://www.microsoft.com/downloads/details.aspx?FamilyId=C717D943-7E4B-4622-86EB -95A22B832CAA&displaylang=en
    I'm assuming you are trying to run the installer from apple. What I would suggest is you download the installer manually to your desktop then launch the installer. If try to run the installer over the intertubes you may run into a problem like you did.
    Then I would uninstall itunes 8 and any software associated with it like the apple update software, quicktime, apple mobile device support. However uninstalling itunes should remove any additional software it installs. Then clean out your temp folder:
    6. Clean out your temp folders,
    a. C:\windows\temp (if one exists)
    b. C:\Documents and Settings\{username}\Local Settings\Temp
    Sometimes installers will pick up old files or won’t delete their temporary files.
    Then with a newly download installer on your desktop try launching it. Let me know if that helps.
    Here is an apple doc that help.
    http://support.apple.com/kb/TS1331
    Message was edited by: CoJeff

Maybe you are looking for