File read errors when installing the oe schema.

Hi,
I'm new to Oracle and I've been playing around with the sample hr schema that came included with Oracle 11g XE (installed on a machine running Windows 7). I downloaded the oe schema off the otn website and I'm trying to install the sample database. I've pasted the errors I get in SQL Plus below.
I'm assuming the 'unable to open *.sql' errors are because oracle is looking for them in a different directory. Those files are present in the same directory as oe_main.sql whose location I specify at the start. Should'nt this be enough?
Thanks,
Aditya
SQL*Plus: Release 11.2.0.2.0 Beta on Mon Jun 27 13:45:03 2011
Copyright (c) 1982, 2010, Oracle. All rights reserved.
SQL> connect sys as sysdba
Enter password:
Connected.
SQL> @?/demo/schema/oe/oe_main.sql
Enter value for sys_password: oe
User dropped.
old 1: CREATE USER OE IDENTIFIED BY &pass
new 1: CREATE USER OE IDENTIFIED BY OE
User created.
old 1: ALTER USER OE DEFAULT TABLESPACE &tbs
new 1: ALTER USER OE DEFAULT TABLESPACE users
old 2: QUOTA UNLIMITED ON &tbs
new 2: QUOTA UNLIMITED ON users
User altered.
old 1: ALTER USER OE TEMPORARY TABLESPACE &ttbs
new 1: ALTER USER OE TEMPORARY TABLESPACE temp
User altered.
Grant succeeded.
Grant succeeded.
Connected.
Grant succeeded.
Connected.
Session altered.
Session altered.
SP2-0310: unable to open file "oe_cre.sql"
SP2-0310: unable to open file "oe_p_cat.sql"
SP2-0310: unable to open file "oe_p_pi.sql"
SP2-0310: unable to open file "oe_p_cus.sql"
SP2-0310: unable to open file "oe_p_ord.sql"
SP2-0310: unable to open file "oe_p_itm.sql"
SQL>
Edited by: 868550 on 27-Jun-2011 01:26

Hi Aditya,
I'm assuming the 'unable to open *.sql' errors are because oracle is looking for them in a different directory. Those files are present in the same directory as oe_main.sql whose location I specify at the start. Should'nt this be enough?No. The main-script calls the subscripts relative to the directory you started your sqlplus from. You should change to */demo/schema/oe*, start +@oe_main.sql+ there and the installation should finish without further issues.
-Udo

Similar Messages

  • Error when installing the Integration Kit for SAP

    Hello,
    When installing the integration Kit I get the following error:
    The installation of BO XI Integration for SAP Solutions cannot continue because WACS has been installed with BO Enterprise.
    i have seen in BO-SAp Integration Kit Installation Error that I have to had selected the point Install Tomcat application server option, but I was not asked to.
    I'm following the blog BusinessObjects and SAP - Part 1 of 4, and my installation screens are similar but not equal. for example, I fon't have the installation type new, but the quickk type. And I cannot select the database, too.
    Of course the screen asking about the Web Application server with the option of installing the tomcat application server doesn't appear.
    What have I done wrong?
    What is the solution? Reinstalling everything but doing what?
    Thanks and regards,
    Ana.

    Hi Ingo,
    Yes, it is BO Edge.
    I have deinstalled the BO Edge sw and now I have installed it again. This time I have selected the export installation type and I have select the TOMCAT. The installation has finished successfully, but when installing the SAP integration Kit, I have the same problem. The message about the WACS already installed appears again.
    What else can I do?
    Thanks and regards,
    Ana.

  • Known Issue: Fatal error when installing the Windows emulators: 2147023293 (Windows 10 Insider Preview SDK and tools, April 2015 release)

    When installing the Windows 10 emulators, you may receive the following error:
    Error: Emulators for Windows Mobile 10.0.10069 : The installer failed. Fatal error during installation. Error code: -2147023293

    To resolve this issue, run Visual Studio setup again to add the emulators. To do this
    Reboot your computer
    Open Control Panel, and select Programs and Features. 
    Select Microsoft Visual Studio 2015 RC, click Change, and then click
    Modify.
    Select the feature “Emulators for Windows 10 Mobile”, and click Update.

  • Runtime Error when installing the German Photoshop trial

    hi,
    when I try to install the German Photoshop trial I get a "Laufzeitfehler: Objekt erwartet Zeile 31" (Runtime Error: object expected line 31) after initialisation of the installation program. When opening the Script Debugger it points to a file main.html in Common Files\Adobe/\Installers\...\resources. The Debugger stops at the line: "body onload="AhmbedGUIWorkflow()" id="standardBody"" (without quotation marks). What can I do to avoid this error and install the trial?
    Thank you for a fast answer.
    Kind regards
    PT

    Well, what browsers do you use and what version of Java? Also do not forget, that it is not advised to have any Java-dependant app open during installs, including browsers or Adobe Media Player. In any case, I would simply uninstall Java (all versions, including all updates), manually clean out all Java caches (Dokumente und Einstellungen/Peregrin/Anwendungsdaten/Sun/Java,Dokumente und Einstellungen/Peregrin/Lokale Einstellungen/Anwendungsdaten/Sun/Java,Dokumente und Einstellungen/All Users/Anwendungsdaten/Sun/Java,Dokumente und Einstellungen/Peregrin/Lokale Einstellungen/Temp), download the latest version and install with a clean slate. This might bring you back on track, as it should set any bent VM settings back to their defaults.
    Mylenium

  • Error when installing the supporting objects of OLL Packaged Application

    Hello,
    I am trying to install OLL Packaged Application|http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/apex/r41/inst_pkgapp/inst_pkgapp.htm#top
    but when installing the supporting objects, I got error when executing the code of "create_package_body"
    Error at line 274: PLS-00201: identifier 'UTL_TCP' must be declared
    create or replace package body eba_oll_log
    as
    g_start_time    number;
    procedure log_init
    is
    begin
        g_start_time := dbms_utility.get_time;
    end log_init;
    procedure log_page_view
    is
    begin
       insert into eba_oll_page_views
          ( APEX_USER,
            PAGE_ID,
            PAGE_NAME,
            VIEW_DATE,
            TS,
            ELAPSED_TIME,
            IP_ADDRESS,
            AGENT,
            APEX_SESSION_ID,
            CONTENT_ID,
            CONTENT_TITLE )
       values
          ( v('APP_USER'),
            v('APP_PAGE_ID'),
            wwv_flow.g_step_title,
            trunc(sysdate,'DD'),
            systimestamp,
            (dbms_utility.get_time-g_start_time)*(.01),
            owa_util.get_cgi_env('REMOTE_ADDR'),
            owa_util.get_cgi_env('HTTP_USER_AGENT'),
            v('APP_SESSION'),
            case when v('APP_PAGE_ID') = 24
                 then v('P24_CONTENT_ID')
                 else null
                 end,
            case when v('APP_PAGE_ID') = 24
                 then v('P24_CONTENT_TITLE')
                 else null
                 end );
       if v('APP_PAGE_ID') = 24 then
          insert into eba_oll_content_views
             ( APEX_USER,
               VIEW_DATE,
               TS,
               IP_ADDRESS,
               AGENT,
               APEX_SESSION_ID,
               CONTENT_ID,
               CONTENT_TITLE,
               NOTE )
          values
             ( v('APP_USER'),
               trunc(sysdate,'DD'),
               systimestamp,
               owa_util.get_cgi_env('REMOTE_ADDR'),
               owa_util.get_cgi_env('HTTP_USER_AGENT'),
               v('APP_SESSION'),
               v('P24_CONTENT_ID'),
               v('P24_CONTENT_TITLE'),
               'Viewed' );
       end if;
       commit;
    end log_page_view;
    procedure log_content_click
    is
    begin
       insert into eba_oll_content_views
          ( APEX_USER,
            VIEW_DATE,
            TS,
            IP_ADDRESS,
            AGENT,
            APEX_SESSION_ID,
            CONTENT_ID,
            CONTENT_TITLE,
            NOTE )
       values
          ( v('APP_USER'),
            trunc(sysdate,'DD'),
            systimestamp,
            owa_util.get_cgi_env('REMOTE_ADDR'),
            owa_util.get_cgi_env('HTTP_USER_AGENT'),
            v('APP_SESSION'),
            v('P24_CONTENT_ID'),
            v('P24_CONTENT_TITLE'),
            'Launched' );
       commit;
    end log_content_click;
    end eba_oll_log;
    create or replace package body eba_oll_api
    as
    function gen_id
       return number
    is
       l_id  number;
    begin
       select to_number(sys_guid(), 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
         into l_id
         from dual;
       return l_id;
    end gen_id;
    function eba_oll_tags_cleaner (
        p_tags  in varchar2,
        p_case  in varchar2 default 'U' ) return varchar2
    is
        type tags is table of varchar2(255) index by varchar2(255);
        l_tags_a        tags;
        l_tag           varchar2(255);
        l_tags          apex_application_global.vc_arr2;
        l_tags_string   varchar2(32767);
        i               integer;
    begin
        l_tags := apex_util.string_to_table(p_tags,',');
        for i in 1..l_tags.count loop
            --remove all whitespace, including tabs, spaces, line feeds and carraige returns with a single space
            l_tag := substr(trim(regexp_replace(l_tags(i),'[[:space:]]{1,}',' ')),1,255);
            if l_tag is not null and l_tag != ' ' then
                if p_case = 'U' then
                    l_tag := upper(l_tag);
                elsif p_case = 'L' then
                    l_tag := lower(l_tag);
                end if;
                --add it to the associative array, if it is a duplicate, it will just be replaced
                l_tags_a(l_tag) := l_tag;
            end if;
        end loop;
        l_tag := null;
        l_tag := l_tags_a.first;
        while l_tag is not null loop
            l_tags_string := l_tags_string||l_tag;
            if l_tag != l_tags_a.last then
                l_tags_string := l_tags_string||', ';
            end if;
            l_tag := l_tags_a.next(l_tag);
        end loop;
        return substr(l_tags_string,1,4000);
    end eba_oll_tags_cleaner;
    procedure eba_oll_tag_sync (
        p_new_tags          in varchar2,
        p_old_tags          in varchar2,
        p_content_type      in varchar2,
        p_content_id        in number )
    as
        type tags is table of varchar2(255) index by varchar2(255);
        l_new_tags_a    tags;
        l_old_tags_a    tags;
        l_new_tags      apex_application_global.vc_arr2;
        l_old_tags      apex_application_global.vc_arr2;
        l_merge_tags    apex_application_global.vc_arr2;
        l_dummy_tag     varchar2(255);
        i               integer;
    begin
        l_old_tags := apex_util.string_to_table(p_old_tags,', ');
        l_new_tags := apex_util.string_to_table(p_new_tags,', ');
        if l_old_tags.count > 0 then --do inserts and deletes
            --build the associative arrays
            for i in 1..l_old_tags.count loop
                l_old_tags_a(l_old_tags(i)) := l_old_tags(i);
            end loop;
            for i in 1..l_new_tags.count loop
                l_new_tags_a(l_new_tags(i)) := l_new_tags(i);
            end loop;
            --do the inserts
            for i in 1..l_new_tags.count loop
                begin
                    l_dummy_tag := l_old_tags_a(l_new_tags(i));
                exception when no_data_found then
                    insert into eba_oll_tags (tag, content_id, content_type )
                        values (l_new_tags(i), p_content_id, p_content_type );
                    l_merge_tags(l_merge_tags.count + 1) := l_new_tags(i);
                end;
            end loop;
            --do the deletes
            for i in 1..l_old_tags.count loop
                begin
                    l_dummy_tag := l_new_tags_a(l_old_tags(i));
                exception when no_data_found then
                    delete from eba_oll_tags where content_id = p_content_id and tag = l_old_tags(i);
                    l_merge_tags(l_merge_tags.count + 1) := l_old_tags(i);
                end;
            end loop;
        else --just do inserts
            for i in 1..l_new_tags.count loop
                insert into eba_oll_tags (tag, content_id, content_type )
                    values (l_new_tags(i), p_content_id, p_content_type );
                l_merge_tags(l_merge_tags.count + 1) := l_new_tags(i);
            end loop;
        end if;
        for i in 1..l_merge_tags.count loop
            merge into eba_oll_tags_type_sum s
            using (select count(*) tag_count
                     from eba_oll_tags
                    where tag = l_merge_tags(i) and content_type = p_content_type ) t
               on (s.tag = l_merge_tags(i) and s.content_type = p_content_type )
             when not matched then insert (tag, content_type, tag_count)
                                   values (l_merge_tags(i), p_content_type, t.tag_count)
             when matched then update set s.tag_count = t.tag_count;
            merge into eba_oll_tags_sum s
            using (select sum(tag_count) tag_count
                     from eba_oll_tags_type_sum
                    where tag = l_merge_tags(i) ) t
               on (s.tag = l_merge_tags(i) )
             when not matched then insert (tag, tag_count)
                                   values (l_merge_tags(i), t.tag_count)
             when matched then update set s.tag_count = t.tag_count;
        end loop;
    end eba_oll_tag_sync;
    procedure render_tag_cloud (
       p_selection          in varchar2 default null,
       p_app_id             in number,
       p_session_id         in number,
       p_min_nbr_tags       in number default 1,
       p_max                in number default 100,
       p_limit              in number default 10000,
       p_link_to_page       in varchar2 default '2',
       p_tag_item_filter    in varchar2 default 'P2_TAGS',
       p_clear_cache        in varchar2 default '2,CIR,RIR',
       p_more_page          in varchar2 default '62' )
    as
       l_printed_records    number := 0;
       l_available_records  number := 20;
       l_max                number;
       l_min                number;
       l_class_size         number;
       l_class              varchar2(30);
       type l_tagtype is table of varchar2(2000);
       l_tags l_tagtype;
       type l_numtype is table of number;
       l_cnts l_numtype;
       l_size number;
       l_total number :=0;
       l_buffer varchar2(32676);  
       CURSOR c_all_tags
       IS
           select tag, c from (
           select t.tag, count(*) c
             from eba_oll_content c,
                  eba_oll_tags t
            where c.content_id = t.content_id
              and c.display_yn = 'Y'
              and (p_selection is null or
                   (p_selection is not null and
                   (   (substr(p_selection,1,1) = 'R' and
                        substr(p_selection,2) in (select release_id
                                                    from eba_oll_content_products cp
                                                   where cp.content_id = c.content_id))
                    or (substr(p_selection,1,1) = 'C' and
                        substr(p_selection,2) in (select product_id
                                                    from eba_oll_content_products cp
                                                   where cp.content_id = c.content_id))
                    or (substr(p_selection,1,1) = 'P' and
                        (substr(p_selection,2) in (select product_id
                                                     from eba_oll_content_products cp
                                                    where cp.content_id = c.content_id) or
                         substr(p_selection,2) in (select p.parent_product_id
                                                     from eba_oll_content_products cp,
                                                          eba_oll_products p
                                                    where cp.content_id = c.content_id
                                                      and cp.product_id = p.product_id)))
                    or (substr(p_selection,1,1) = 'G' and
                        (substr(p_selection,2) in (select pg.group_id
                                                     from eba_oll_product_groupings pg,
                                                          eba_oll_content_products cp
                                                    where pg.product_id = cp.product_id
                                                      and cp.content_id = c.content_id) or
                         substr(p_selection,2) in (select pg.group_id
                                                     from eba_oll_product_groupings pg,
                                                          eba_oll_products p,
                                                          eba_oll_content_products cp
                                                    where pg.product_id = p.parent_product_id
                                                      and p.product_id = cp.product_id
                                                      and cp.content_id = c.content_id)))
            group by tag
           ) x where rownum < p_limit
                 and c >= p_min_nbr_tags
            order by upper(tag) ;
    begin
       -- Fetch tags into arrays
       open c_all_tags;
          loop
              fetch c_all_tags bulk collect into l_tags,l_cnts limit p_limit;
              exit;
          end loop;
       close c_all_tags;
       l_available_records := l_tags.count;
       -- Determine total count and maximum tag counts
       l_max := 0;
       l_min := 1000;
       FOR i in l_cnts.first..l_cnts.last loop
          l_total := l_total + l_cnts(i);
          if l_cnts(i) > l_max then
             l_max := l_cnts(i);
          end if;
          if l_cnts(i) < l_min then
             l_min := l_cnts(i);
          end if;
       end loop;
       if l_max = 0 then l_max := 1; end if;
       l_class_size := round((l_max-l_min)/6);
       -- Generate tag cloud --
       sys.htp.prn('<div class="tagCloud"><ul>');
       for i in l_tags.first..l_tags.last loop
           l_printed_records := l_printed_records + 1;
           if l_cnts(i) < l_min + l_class_size then
              l_class := 'size1';
           elsif l_cnts(i) < l_min + (l_class_size*2) then
              l_class := 'size2';
           elsif l_cnts(i) < l_min + (l_class_size*3) then
              l_class := 'size3';
           elsif l_cnts(i) < l_min + (l_class_size*4) then
              l_class := 'size4';
           elsif l_cnts(i) < l_min + (l_class_size*5) then
              l_class := 'size5';
           else l_class := 'size6';
           end if;     
           l_buffer := '<li><a class="'||l_class||'" href="'||
                  'f?p='||p_app_id||':'||p_link_to_page||':'||p_session_id||':::'||p_clear_cache||':'||
                  p_tag_item_filter||':'||htf.escape_sc(l_tags(i))||'">'||
                  htf.escape_sc(l_tags(i)) || '<span>' || l_cnts(i) || '</span></a></li>';
           sys.htp.prn(l_buffer);
           l_buffer := '';
           if  l_printed_records > p_max then
               exit;
           end if;
       end loop;
       sys.htp.prn('</ul></div>');
       -- print if there's more
       if l_tags.count - l_printed_records != 0 then
               htp.prn('<p><a href="f?p='||p_app_id||':'||htf.escape_sc(p_more_page)||
                     ':'||p_session_id||':::'||htf.escape_sc(p_more_page)||'">View all tags</a></p>');
       end if;
       exception when others then
          sys.htp.prn('<p>No tags found.</p>');
    end render_tag_cloud;
    procedure email_when_feedback (
       p_feedback_id  in  number,
       p_host_url     in  varchar2,
       p_app_id       in  number )
    is
       l_body       clob;
       l_body_html  clob;
    begin
    for c1 in (
       select f.feedback_comment, f.feedback_by,
              c.title, nvl(ct.feedback_contacts,'[email protected]') email
         from eba_oll_content_feedback f,
              eba_oll_content c,
              eba_oll_team ct
        where f.id = p_feedback_id
          and f.content_id = c.content_id
          and c.team_id = ct.team_id (+) )
    loop
       l_body := 'You have received feedback for a piece of content you own in the Oracle Learning Library (OLL) Application.
    Content: '|| c1.title || utl_tcp.crlf || '
    Feedback: '|| c1.feedback_comment || utl_tcp.crlf || '
    Left by: '|| lower(c1.feedback_by) ||'
    You can respond via the OLL Application, '||p_host_url||'f?p='||p_app_id||':47:::NO::P47_ID:' || p_feedback_id || '.';
       l_body_html := '<div style="border: 1px solid #DDD; background-color: #F8F8F8; width: 460px; margin: 0 auto; -moz-border-radius: 10px; -webkit-border-radius: 10px; padding: 20px;">
    <p style="font: bold 12px/16px Arial, sans-serif; margin: 0 0 10px 0; padding: 0;">
    You have received feedback for a piece of content you own in the Oracle Learning Library (OLL) Application.
    </p>
    <table style="width: 100%;" cellspacing="0" cellpadding="0" border="0">
    <tr>' || utl_tcp.crlf || '
    <td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Content</td>
    <td style="font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;"><a href="#" style="color: #000">'||c1.title||'</a></td>
    </tr>
    <tr>' || utl_tcp.crlf || '
    <td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Feedback</td>
    <td style="font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">'||replace(c1.feedback_comment,CHR(10),'<br/>')||'</td>
    </tr>
    <tr>' || utl_tcp.crlf || '
    <td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Left by</td>
    <td style="font: bold 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">'||lower(c1.feedback_by)||'</td>
    </tr>
    <tr>' || utl_tcp.crlf || '
    <td colspan="2" style="text-align: center; font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">
    <a href="'||p_host_url||'f?p='||p_app_id||':47:::NO::P47_ID:' || p_feedback_id ||'" style="display: block; padding: 10px; background-color: #EEE; font: bold 16px/16px Arial, sans-serif; color: #444">Respond to this Feedback</a>
    </td>
    </tr>
    </table>
    </div>';
       apex_mail.send (
          p_to        => c1.email,
          p_from      => '[email protected]',
          p_subj      => 'OLL - New Feedback for your team',
          p_body      => l_body,
          p_body_html => l_body_html );
    end loop;
    end email_when_feedback;
    procedure email_when_response (
       p_feedback_id  in  number,
       p_host_url     in  varchar2,
       p_app_id       in  number )
    is
       l_body       clob;
       l_body_html  clob;
    begin
    for c1 in (
       select f.feedback_comment, f.feedback_by, f.response, c.title
         from eba_oll_content_feedback f,
              eba_oll_content c
        where f.id = p_feedback_id
          and f.content_id = c.content_id )
    loop
       l_body := 'You have received a response to your feedback left in the Oracle Learning Library (OLL) Application.
    Content: '|| c1.title || '
    Feedback: '|| c1.feedback_comment || '
    Response: '|| c1.response || '
    You can also view this response via the OLL Application, '||p_host_url||'f?p='||p_app_id||':60:::NO::IR_ID:' || p_feedback_id || '.';
          l_body_html := '<div style="border: 1px solid #DDD; background-color: #F8F8F8; width: 460px; margin: 0 auto; -moz-border-radius: 10px; -webkit-border-radius: 10px; padding: 20px;">
    <p style="font: bold 12px/16px Arial, sans-serif; margin: 0 0 10px 0; padding: 0;">
    You have received a response to your feedback left in the Oracle Learning Library (OLL) Application.
    </p>
    <table style="width: 100%;" cellspacing="0" cellpadding="0" border="0">
    <tr>' || utl_tcp.crlf || '
    <td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Content</td>
    <td style="font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;"><a href="#" style="color: #000">'||c1.title||'</a></td>
    </tr>
    <tr>' || utl_tcp.crlf || '
    <td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Feedback</td>
    <td style="font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">'||replace(c1.feedback_comment,CHR(10),'<br/>')||'</td>
    </tr>
    <tr>' || utl_tcp.crlf || '
    <td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Response</td>
    <td style="font: bold 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">'||replace(c1.response,CHR(10),'<br/>')||'</td>
    </tr>
    <tr>' || utl_tcp.crlf || '
    <td colspan="2" style="text-align: center; font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">
    <a href="'||p_host_url||'f?p='||p_app_id||':60:::NO::IR_ID:' || p_feedback_id ||'" style="display: block; padding: 10px; background-color: #EEE; font: bold 16px/16px Arial, sans-serif; color: #444">View Response in OLL Application</a>
    </td>
    </tr>
    </table>
    </div>';
       apex_mail.send (
          p_to        => c1.feedback_by,
          p_from      => '[email protected]',
          p_subj      => 'Oracle Learning Library - Response to your Feedback',
          p_body      => l_body,
          p_body_html => l_body_html );
    end loop;
    end email_when_response;
    end eba_oll_api;
    /Error at line 274: PLS-00201: identifier 'UTL_TCP' must be declared
    Edited by: Fateh on Jan 13, 2012 7:32 AM

    Thanks & Sorry for not mentioning the full information about my environment.
    it was:
    Oracle 11g xe R2 on Windows 7 machine
    Apex listener deployed on Glass Fish server 3.1 on Windows 7 machine
    Apex 4.1
    Google Chrome
    So, to have OLL application worked locally . we need the following:
    grant execute on utl_tcp to [your_schema_name]And to
    Configure an Application Express Application as a Partner Application in Oracle AS Single Sign-On http://www.oracle.com/technetwork/testcontent/sso-partner-app-100552.html.
    I think I am going to install on my work space on apex.oracle.com.
    Regards,
    Fateh
    Edited by: Fateh on Jan 15, 2012 9:38 AM

  • Error when installing the crruntime_12_1.msm

    Hi
    We have Vis Studio 2008 and CR 2008
    Recently upgraded to SP1 of CR2008
    When installing the latest version of our software, which has the CrRuntTime_12_1.msm integrated into the installation, onto an XP sp2 machine, many of the DLL's failed to install with:
    'Failed to register c:\program files\business objects\businessobjects enterprise 12.0\win32_x86\cereportsource.dll
    and many more
    We had to download the runtime installer and run that for it to work (suppose we could have manually regsvr32'd many of them)
    Is this going to keep happening with our other clients ?
    Brue

    That SAP Note is currently still internal.
    It says to install Visual Studio 2005 Service Pack 1, and ensure the following assemblies are referenced in the build:
    Microsoft_VC80_ATL_x86.msm
    Microsoft_VC80_CRT_x86.msm
    Microsoft_VC80_MFCLOC_x86.msm
    Microsoft_VC80_MFC_x86.msm
    Microsoft_VC80_OpenMP_x86.msm
    policy_8_0_Microsoft_VC80_ATL_x86.msm
    policy_8_0_Microsoft_VC80_CRT_x86.msm
    policy_8_0_Microsoft_VC80_MFCLOC_x86.msm
    policy_8_0_Microsoft_VC80_MFC_x86.msm
    policy_8_0_Microsoft_VC80_OpenMP_x86.msm
    It's something Dave Hilton found with the XI 3.1 runtimes, caused by a  change in a Microsoft process that prevents us from including components from those msm's.
    Sincerely,
    Ted Ueda

  • Errors when installing the rst

    When I try to install the rst to read the trace files the SAM generated. I got the errors:
    /opt/SUNWspro/bin/CC -xarch=amd64 -mt -xO4 -KPIC -I/export/home/opensparc/rst/trconv -I/export/home/opensparc/rst/trconv/.. -I/export/home/opensparc/rst/trconv/../.. -I/import/archperf/pkgs/readsymbols/1.0/inc -I/import/archperf/pkgs/spix/1.1/inc -DARCH_AMD64 -D_PRINT_PA -D_VALUE_TRACE -c main.C
    "main.C", line 25: Error: Could not open include file "read_symbols.h".
    "trconv.H", line 146: Error: Type name expected instead of "symbol_table_t".
    "trconv.H", line 439: Error: The function "sprintDiss" must have a prototype.
    "trconv.H", line 441: Error: SPIX_SPARC_V9 is not defined.
    "trconv.H", line 443: Error: SPIX_SPARC_IOP_CALL is not defined.
    "trconv.H", line 443: Error: The function "ih_isbranch" must have a prototype.
    "trconv.H", line 445: Error: The function "getCtiEa" must have a prototype.
    "trconv.H", line 475: Error: int is not a structure type.
    "trconv.H", line 484: Error: The function "ih_iscti" must have a prototype.
    "trconv.H", line 500: Error: The function "ih_isload" must have a prototype.
    "trconv.H", line 500: Error: The function "ih_isstore" must have a prototype.
    "trconv.H", line 562: Error: The function "sprintDiss" must have a prototype.
    "trconv.H", line 563: Error: SPIX_SPARC_V9 is not defined.
    "trconv.H", line 564: Error: SPIX_SPARC_IOP_CALL is not defined.
    "trconv.H", line 564: Error: The function "ih_isbranch" must have a prototype.
    "trconv.H", line 566: Error: The function "getCtiEa" must have a prototype.
    "trconv.H", line 597: Error: The function "ih_iscti" must have a prototype.
    "trconv.H", line 616: Error: The function "ih_isload" must have a prototype.
    "trconv.H", line 616: Error: The function "ih_isstore" must have a prototype.
    "trconv.H", line 652: Error: SPIX_SPARC_V9 is not defined.
    "trconv.H", line 723: Error: SPIX_SPARC_V9 is not defined.
    "trconv.H", line 2433: Error: The function "sprintDiss" must have a prototype.
    "trconv.H", line 2963: Error: SPIX_SPARC_V9 is not defined.
    "trconv.H", line 3174: Error: The function "sprintDiss" must have a prototype.
    "trconv.H", line 3207: Error: The function "sprintDiss" must have a prototype.
    Compilation aborted, too many Error messages.
    where are those files? Is there something I missed before I install rst ?

    Hi Aditya,
    I'm assuming the 'unable to open *.sql' errors are because oracle is looking for them in a different directory. Those files are present in the same directory as oe_main.sql whose location I specify at the start. Should'nt this be enough?No. The main-script calls the subscripts relative to the directory you started your sqlplus from. You should change to */demo/schema/oe*, start +@oe_main.sql+ there and the installation should finish without further issues.
    -Udo

  • Error when installing the latest software development kit

    Good morning. I have a dell dimension 4100 running the windows me operating system. Wen I download and try to install the latest software development kit, I get the following error message when I click the finish button. "_delis caused an error in _isdel". Any idea why?

    The copy that you downloaded sounds like it has been corrupted. Try redownloading the file, and reainstalling it. If this still happens. Let me know.

  • Error when installing the OID9022 Patchset - test: argument expected

    Hi to everybody.
    Currently, i try to install the OID9022 patchset in infrastructure instance.
    So, i try to run patch.sh
    %./patch.sh
    SHUTDOWN ALL THE OID Processes
    SHUTDOWN THE LISTENER
    *** Important ***
    This patch should be installed on OID 9.0.2.1.0 only
    Do you want to continue (Y/N):y
    Is this a INFRASTRUCTURE Installation? (Y/N):y
    Installation of OID 9.0.2.2.0 PATCH in Progress...
    ./patch.sh: make: not found
    ./patch.sh: make: not found
    ***** Important ******
    Complete the following post-install steps
    Start the Listener
    Switch User (su) to root and execute /data2/oracle/infra/root.sh
    In order to do the schema upgrade, execute:
    oidpatchca.sh -connect <Connect String>
    -systempwd <SYSTEM Password> -odspwd <ODS Password>
    -sudn <Super-User DN> -supwd <Super-User Password>
    -dippwd <Password to register DIP server>
    OiD 9.0.2.2.0 Patch Installed
    The final message is "OiD 9.0.2.2.0 Patch Installed ", so i assume it is ok, so then i tried to run the root.sh as the instruction ask.
    but, when i try to run it, got this error...
    # cd /data2/oracle/infra
    # ./root.sh
    ./root.sh: test: argument expected
    # root.sh
    root.sh: not found
    # pwd
    /data2/oracle/infra
    # ./root.sh
    ./root.sh: test: argument expected
    Can anybody help?...Thanks...it urgent.
    Best Wishes,
    Rushdan Md Saad.

    Hi Rushdan
    I think your assumption about the patch being installed correctly is false. A make error is generally serious as it implies that something has not been recompiled and probably several files have not been copied into the correct locations.
    In my past experience this has been caused by incorrect environment variable settings ie you can't find the make utility or incorrect OS level patches have been applied.
    And my final comment is that this is the Portal Upgrade forum. You are more likely to get a definitive response on OID issues from the OID forum.
    Regards

  • Disk read error when installing new OS on S10-2

    Hello all.
    I`ve looked thru this forum and knowledge base, but couldn`t find an answer so I`m appealing to the Lenovo community.
    I recently purchased a S10-2 netbook in Mexico. Unfortunetely it`s in Spanish and I need English.(I`m writing a computer book and I need screen captures in English.) I don`t have a phone to call tech support or an external CD drive. I`ve sucessfully setup a dual boot with Ubuntu via USB flash drive.  First I tried installing from a XP disk image (XP Pro and XP Home) using Power Iso, but when it rebooted, I received a disk read error. Then I tried extracting the installation files to the D-drive, rebooting to a command prompt, and installing directly. After going thru the initial setup screens, it went thru the motions of copying the installation files to the system, but when it rebooted, once again I received a disk read error.
    Any help would be greatly appreciated.
    Thanks.
    Garry

    run disk check before installing anything, you may have dead bad sectors on your hard disk.
    if it's possible, remove your hard disk and install it under other computers.

  • Error when installing the ERP6.0 SR3 in windows MSCS

    Hello Gurus,
    When i tried to install ERP 6.0 SR3 in windows MSCS+ oracle, I met a issue.
    1. oracle + OFS is installed.
    2. ASCS is installed.
    3. first MSCS node is configured
    4. then i try to install the DB instance, according to the installation guide, there is a statement saying:
    Make sure that in the database host field, the local database host is displayed.
    but during my installation, the DB host field is blank, so i manually enter the local host name, click on next, choose the export directory and done.
    then in the checking oracle existing step, an error occurred:
    oracle software is not installed, please install oracle before ...
    Could you help me how to solve the issue?
    Best regards,
    Charlie

    hello,
    After restart the OS, this issue seems to be vanished, but we met another error.
    In the installation where sap creating DB instance, there's a option to let us to choose the oracle db version, since i installed the oracle 10.2.0.4, i chose 102 as the version, but an error message pop up indicating that the version is wrong. And then i re-select version 112, it can continue...
    i looked back at our installation and noted that when we installed OFS 3.4.15, the installer indicated that 11g. i suspect it could be SAPinst read the version from the wrong place, instead of 102, it recognize 112.
    Did you guys have any similar experience of it?
    Could you give me some help?
    Thanks a lot in advance!
    Regards,
    Charlie

  • [ALBPM 6.0 WLS] Error when installing the Engine

    Encountered error when doing 'Install Engine EAR in the application Engine'. here's an extract of the exception in WLS:
    HTTP:101216]Servlet: "engineStartup" failed to preload on startup in Web application: "/albpmServices/eng60j2ee". fuego.directory.DirectoryRuntimeException: Exception [java.sql.SQLException: Invalid column type]. at fuego.directory.DirectoryRuntimeException.wrapException(DirectoryRuntimeException.java:85) at fuego.directory.provider.jdbc.oracle.OraclePersistenceManager.mapSQLException(OraclePersistenceManager.java:145) at fuego.directory.provider.jdbc.datadirect.oracle.DataDirectOraclePersistenceManager.mapSQLException(DataDirectOraclePersistenceManager.java:51) at fuego.directory.provider.jdbc.JDBCServiceAccessor.mapSQLException(JDBCServiceAccessor.java:78) at fuego.directory.provider.jdbc.JDBCParticipantsAccessor.fetchHumanParticipant(JDBCParticipantsAccessor.java:1389) at fuego.directory.provider.jdbc.JDBCParticipantsAccessor.fetchHumanParticipant(JDBCParticipantsAccessor.java:344) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at fuego.directory.provider.DirectorySessionImpl$AccessorProxy.invoke(DirectorySessionImpl.java:739) at $Proxy91.fetchHumanParticipant(Unknown Source) at fuego.directory.provider.jdbc.JDBCAuthenticationAccessor.getSessionParticipant(JDBCAuthenticationAccessor.java:407) at fuego.directory.provider.jdbc.JDBCAuthenticationAccessor.authenticateInternal(JDBCAuthenticationAccessor.java:301) at fuego.directory.provider.jdbc.JDBCAuthenticationAccessor.authenticate(JDBCAuthenticationAccessor.java:59) at fuego.directory.provider.jdbc.JDBCAuthenticationAccessor.connect(JDBCAuthenticationAccessor.java:105) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at fuego.directory.provider.DirectorySessionImpl$AccessorProxy.invoke(DirectorySessionImpl.java:739) at $Proxy88.connect(Unknown Source) at fuego.directory.provider.DirectorySessionImpl.connect(DirectorySessionImpl.java:245) at fuego.directory.provider.Factory.startSession(Factory.java:435) at fuego.directory.provider.jdbc.j2ee.RemoteJdbcDirectoryFactory.startSession(RemoteJdbcDirectoryFactory.java:133) at fuego.directory.Directory.startSession(Directory.java:302) at fuego.ejbengine.Engine.initDirectorySession(Engine.java:298) at fuego.ejbengine.Engine.start(Engine.java:123) at fuego.ejbengine.servlet.SchedulerServlet.init(SchedulerServlet.java:95) at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:282) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(Unknown Source) at .....
    really scratching my head wondering what could've cause a 'Invalid column type' SQLException.
    anyone ever encounter this before or any kind soul can advise?
    thanks in advance!!
    kuanloong

    hello,
    After restart the OS, this issue seems to be vanished, but we met another error.
    In the installation where sap creating DB instance, there's a option to let us to choose the oracle db version, since i installed the oracle 10.2.0.4, i chose 102 as the version, but an error message pop up indicating that the version is wrong. And then i re-select version 112, it can continue...
    i looked back at our installation and noted that when we installed OFS 3.4.15, the installer indicated that 11g. i suspect it could be SAPinst read the version from the wrong place, instead of 102, it recognize 112.
    Did you guys have any similar experience of it?
    Could you give me some help?
    Thanks a lot in advance!
    Regards,
    Charlie

  • Error when installing the business content (update rules)

    Hi Gurus,
    I am trying to install the Business Content for Plant Maintenance. When trying to install the update rules UPDR BN10TVY8N84KARHU2FLSSYL56, I was able to see the update rules in the collected objects. But, when trying to install, it throws an error saying that the update rules is not found.
    Could you please help me in resolving the issue and install the update rules successfully.
    Thanks,
    Regards,
    -R

    You should install corresponding neccessary object with it, like update rule data target, and connected infosources also.
    infosource -> update rules -> data target
    Cross check you have infosoure, and data target installed or not, and if not install all these together.
    You can also use grouping option as install all neccesary options. It will collect all neccessary objects.

  • 500 Internal error when installing the portalTools

    Hi all,
    After installing Oracle 9i portalTools in Windows 2000 system. We meet an Internal 500 error when loging in the http://...:7778/portalTool. That seems some files been not copied to the right folder.
    We have two Oracle 9i folder, one is: D:\Oracle9iAS for Oracle 9i AS instance and another one D:\Oracle9iASPortal for Oracle 9i Portal instance.
    I am not sure which one is the $Install_Path which mentioned in the portalTools installation guide?
    Thank you very much!
    Patrick

    Fixed. It is a version problem.
    For the version of 9iAS, we must use the portalTools version 9.0.2

  • Windows File Protection error when installing 9i client

    While installing the 9i client I am getting a Windows file protection error message on all 5 of the test machines.
    If I cancel out of the message the install finishes correctly and everything seems to function properly.
    However, it is prety counterintuitive to have to cancel out of the message when we are wanting to do these installs in silent mode.
    Anyone else have this problem, or any ideas on fixing?

    nm, fixed it myself.
    The Oracle install was replacing regsvr32.exe with an old version. When WFP detects a file protection problem, it first looks at the %systemroot%\system32\dllcache dir for a known good copy of the file to restore. If it doesn't find one in there, then it pops the dialog up and asks for a CD. If it does find one then it silently restores it in the background.
    So, now at the beginning of my script I have a script checking the dllcache dir for regsvr32.exe, if it is there it moves on to the install, if it is not then it copies the one from their current system32 dir into the system32\dllcache dir. That way when Oracle replaces it WFP will silently restore their previous version.
    -C

Maybe you are looking for

  • Multiple vs single JVM

    I was working a problem with connection pooling and it was pointed out that to utilize pooling all my workstations would have to be using the same JVM. I am not clear how one determines how to use the JVM locally or remotely, or some other way? Would

  • Latest update locked my mac

    This is going to sound unbelievable, however, after applying the latest update to my mac it acted as if it had been remotely locked from icloud, I even got the email to say I had locked it 8 hours before it actually locked itself. I don't really want

  • MSN/Adium inconsistent connection problems

    Apologies if this is a common problem - I've searched prior to posting and not found anything specific to my troubles. The problem is with MSN, using Adium or the official client. I can talk with most people fine, without any issue - the way it shoul

  • Error while installing software

    hi, when i am installing on software on solaris i get error even i installed java jdk/jre...still i get error #./xngsrv_s.bin Preparing to install... Extracting the JRE from the installer archive... Unpacking the JRE... Extracting the installation re

  • What is the process to update song plays count ?

    Hi, i'm using iTunes Match on 5 devices : 2 windows, iPad, iPhone and MacBook Everything is ok, sync is perfect for new songs i add anywhere. If i rate a song, it appears rated the same way on all other devices in a fex seconds. BUT what is the proce