XL Reporter Installation - Error executing IXMetaProcs.sql

Hi All,
During installation getting error-
Error Preparing Metadata Repository:
Executing SQL script 'IXMetaProcs.sql' (Start:....)
ExitCode -1073741819
!!! ERROR Error executing IXMetaProcs.sql ExitCode -1073741819
I have done the following checks.
1.     XL Reporter has bee removed from Administrator->Add-On Administrator.
2.     Add-Remove List Does not show XL Reporter.
3.     Removed manually Database IXMetaSBOOEM from SQL Server.
4.     %temp%  - > SM_OBS_DLL folder not found.
5.     ILytix folder not found in HKEY_CURRENT_USER -> Software
ILytix folder not found in HKEY_LOCAL_MACHINE-> Software
6.     There is no other add-on installed
7.     AddOnsInstall.sbo deleted.
      AddOnsLocalRegistration.sbo not found.
8.  C:\Prog Files\SAP\SAP Business One\Add-Ons folder not found.
But still I can't install XL Reporter.

hi,
first you have to check that you have install "dot. Net Framework 2.0" which is compulsory needed for installing XL reporter, also you have to install MS Office in your system.
uninstall the XL reporter and install using the following steps
installation steps of XL-reporter add-on,
1. goto add-on administration => Register Add-on(click).
give the XL reporter address. select default group as Manual.
update.
2. goto addon manager => pending Add-on tab => select the addon row and install.
in installation give the user id and pwd of SQL server.
3.goto addon manager =>installed addons tab, start the XL reporter, once it get connected as status.
4. go to tools menu in SAP B1, in that you will find XL reporter, click that XL reporter will open.(to view XL reporter)
follow the above steps you will get the XL repoter add-on running in SAP B1.
regards
sandip

Similar Messages

  • ORA-06528: Error executing PL/SQL profiler

    Hai
    I would like to see the outcome of package (to view the report on the package).In order to get that
    I installed the below package connect as internal
    sql>d:\oracle\orq81\rdbms\admin\profload.sql
    In order to use dbms_profiler,after that i need to have installed profilling tables ,in order to get i ran proftab.sql ,and its created three tables are
    plsql_profiler_data,plsql_profiler_units,plsql+profiler_runs
    after that i ran the below procedure
    create or replace procedure do_mod as
    cnt number := 0;
    begin
    dbms_profiler.start_profiler( 'mod' );
    for i in 1 .. 500000
    loop
    cnt := cnt + 1;
    if ( mod(cnt,1000) = 0 )
    then
    commit;
    end if;
    end loop;
    dbms_profiler.stop_profiler;
    end;/
    PL/SQL procedure successfully completed.
    exec no_mod
    PL/SQL procedure successfully completed.
    In order to see the report on packge ,i had query the table , RUN_TOTAL_TIME IS 3.5190E+11(this is seconds)
    my qusetion is
    1)
    Please explain me that is total amount time in seconds or minutes,i donnot understand what is 3.5190e+11
    SQL> select RUNID,RUN_COMMENT,RUN_TOTAL_TIME FROM PLSQL_PROFILER_RUNS;
    RUNID
    RUN_COMMENT
    RUN_TOTAL_TIME
    1
    mod
    7.0975E+11
    2
    mod
    6.9767E+11
    RUNID
    RUN_COMMENT
    RUN_TOTAL_TIME
    3
    no mod
    3.5190E+11
    2)
    I had ran the above script one of the schema ,and successfully created above procedure.When i execte,it retuns below error message
    SQL> exec do_mod;
    BEGIN do_mod; END;
    ERROR at line 1:
    ORA-06528: Error executing PL/SQL profiler
    ORA-06512: at "SYS.DBMS_PROFILER", line 123
    ORA-06512: at "SYS.DBMS_PROFILER", line 132
    ORA-06512: at "MOHAN1.DO_MOD", line 4
    ORA-06512: at line 1
    Any one any idea about that
    Regards
    mohan

    1) Run_total_time is the elapsed total time in nanoseconds.
       A nanosecond is one billionth of a second.
       It is displayed in scientific notation
       where E stands for "times ten to the power of".
       So, 3.5190E+11 nanoseconds
         = 3.5190 * 100000000000 nanoseconds
         = 351900000000 nanoseconds
         = 351900000000 billionths of a second
         = 351900000000 / 1000000000 seconds
         = 351.9 seconds
       If you want to display it in seconds, use:
         SELECT runid,
                run_comment,
                run_total_time / 1000000000 AS seconds
         FROM   plsql_profiler_runs;
    2) The only thing that looks wrong about your do_mod procedure
       is the last line:
         end;/
       The / should be on the next line.
       Other than that, I don't see any possible cause for
       the error.

  • 06528. 00000 -  "Error executing PL/SQL profiler"

    HI.
    i am getting an error -
    ORA-06528: Error executing PL/SQL profiler
    ORA-06512: at "SYS.DBMS_PROFILER", line 258
    ORA-06512: at line 3
    06528. 00000 - "Error executing PL/SQL profiler"
    *Cause:    An error occurred in during execution of a PL/SQL profiler
    procedure.
    when i try to run the following block
    BEGIN
    DBMS_PROFILER.START_PROFILER( sysdate,'');
    DBMS_PROFILER.FLUSH_DATA;
    END;
    plz help

    Run proftab.sql first. look st the test case. Hopefully you have installed dbms_profiler package. The first anonymous block is to test that, second block is your block which is failing.
    SQL> ed
    Wrote file afiedt.buf
      1  declare
      2  var1 binary_integer;
      3  var2 binary_integer;
      4  begin
      5     DBMS_PROFILER.GET_VERSION(Var1,var2);
      6     dbms_output.put_line('Var1 '||Var1);
      7* end;
      8  /
    Var1 2
    PL/SQL procedure successfully completed.
    SQL> BEGIN
      2  DBMS_PROFILER.START_PROFILER( sysdate,'');
      3  DBMS_PROFILER.FLUSH_DATA;
      4  END;
      5  /
    BEGIN
    ERROR at line 1:
    ORA-06528: Error executing PL/SQL profiler
    ORA-06512: at "SYS.DBMS_PROFILER", line 123
    ORA-06512: at "SYS.DBMS_PROFILER", line 132
    ORA-06512: at line 2
    SQL> @C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\ADMIN\proftab.sql
    SQL> BEGIN
      2  DBMS_PROFILER.START_PROFILER( sysdate,'');
      3  DBMS_PROFILER.FLUSH_DATA;
      4  END;
      5  /
    PL/SQL procedure successfully completed.

  • SQL 4.7 Installation Error CJS-00084  SQL Statement or Script failed

    Dear SAP Gurus,
    pl do let me know hoe to resolve this error.......
    """CJS-00084  SQL Statement or Script failed"""
    my ora_sql_results file is like that..
    ===========================================
    2008-10-25, 16:14:44 SAPINST ORACLE start logging for
    connect  / as sysdba ;
    @@"C:\SAPinstORACLEKERNEL/oradbusr.sql"
    exit;
    Output of SQL executing program:
    SQL*Plus: Release 9.2.0.2.0 - Production on Sat Oct 25 16:14:44 2008
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    Connected.
    Connected.
    old   3:    if substr(upper('&&1'),1,5) = 'SAPR3' then
    new   3:    if substr(upper('SAPERP'),1,5) = 'SAPR3' then
    old   6:           if upper('&&2') = 'NT' then
    new   6:           if upper('NT') = 'NT' then
    old  13:                :sDomain := upper('&&3');
    new  13:                :sDomain := upper('ERP');
    old  17:           :sSchema := upper('&&1');
    new  17:           :sSchema := upper('SAPERP');
    old  18:           if upper('&&2') = 'NT' then
    new  18:           if upper('NT') = 'NT' then
    old  25:                :sDomain := upper('&&3');
    new  25:                :sDomain := upper('ERP');
    using following Parameters:
    .  Oracle SID:                      ERP
    .  Oracle Version:                 9.2.0.2.1
    .  Parametervalue os_authent_prefix:   OPS$
    .  Database User (Schema):            SAPERP
    .  SAP R/3 Administrator:            OPS$ERP\ERPADM
    .  SAP R/3 Serviceuser:             OPS$ERP\SAPSERVICEERP
    O/S Message: No such file or directory
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.2.1 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.2.0 - Production
    SAPINST: End of output of SQL executing program F:\oracle\ora92/bin/sqlplus.exe.
    SAPINST found errors.
    SAPINST The current process environment may be found in sapinst_ora_environment.log.
    2008-10-25, 16:14:44 SAPINST ORACLE stop logging
    =======================================
    My SAPINST_ORA_ENVIRONMENT FIle is like that
    ==========================================
    2008-10-25, 16:10:43 SAPINST Current process environment:
    =::=::\
    =C:=C:\SAPinstORACLEKERNEL
    ALLUSERSPROFILE=C:\Documents and Settings\All Users
    APPDATA=C:\Documents and Settings\tanya\Application Data
    CLIENTNAME=Console
    CommonProgramFiles=C:\Program Files\Common Files
    COMPUTERNAME=ERP
    ComSpec=C:\WINDOWS\system32\cmd.exe
    DBMS_TYPE=ORA
    DBS_ORA_SCHEMA=SAPERP
    dbs_ora_tnsname=ERP
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=C:
    HOMEPATH=\Documents and Settings\tanya
    JAVA_HOME=C:\j2sdk1.4.2_09
    JSERV=F:\oracle\ora92/Apache/Jserv/conf
    LOGONSERVER=
    ERP
    NLS_LANG=AMERICAN_AMERICA.WE8DEC
    NUMBER_OF_PROCESSORS=2
    ORACLE_HOME=F:\oracle\ora92
    ORACLE_SID=ERP
    OS=Windows_NT
    Path=F:\oracle\ora92\bin;$PATH$
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    PROCESSOR_ARCHITECTURE=x86
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 6, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=1706
    ProgramFiles=C:\Program Files
    SAPDATA_HOME=F:\oracle\ERP
    SAPEXE=F:\usr\sap\ERP\SYS\exe\run
    SAPLOCALHOST=ERP
    SAPSYSTEMNAME=ERP
    SESSIONNAME=Console
    SystemDrive=C:
    SystemRoot=C:\WINDOWS
    TEMP=C:\WINDOWS\TEMP
    TMP=C:\WINDOWS\TEMP
    USERDOMAIN=ERP
    USERNAME=tanya
    USERPROFILE=C:\Documents and Settings\tanya
    windir=C:\WINDOWS
    WV_GATEWAY_CFG=F:\oracle\ora92\Apache\modplsql\cfg\wdbsvr.app
    SAPINST: End of current process environment.
    =====================================
    REgards,
    Abhishek

    Thanks, but most of the people in the industry are still using the same, and it is working on their Machine
    As far as I remember 9.2.0.2 was never released, one needed to install at least 9.2.0.4 (or .5). That´s why the official installation guides tell you to install the latest patches PLUS the latest interim patches for the database.
    On top of that, Oracle 9.2 is out of extended support already, I would get a new installation CD set with Oracle 10g and use that for a new installation.
    why it is not working on my machine?
    Because those old database versions have many bugs that are fixed with patches - so why do you want to run such an old version if one KNOWS that it´s buggy and there are patches to fix those errors?
    secondly from where i will get the latest patches, as told by you. pl do let me know any website from where i can down load them
    Check
    Note 938986 - Oracle Database 9.2: Patches for 9.2.0
    Markus

  • Report builder error after applying sql server 2008R2 SP3 when click on report builder gives error like 'Application validation did not succeed. Unable to continue.

    Hi All,
    I applied SQL server 2008 R2 SP3 recently but report builder doesn't work since then
    When click on report builder gives error like 'Application validation did not succeed. Unable to continue.
    and when I try to see details the error summary like following:
    +File, Microsfot.ReportingServices.ComponentLibrary.Controls.dll, has a different computed hash than specified in manifest.
    this is urgent.
    Please reply me asap.
    thanks a lot in advance.
    Regards,
    Nik
    Regards, Naman

    Hi nikp11,
    According to your description, you recently updated SQL Server 2008 R2 to SP3, Report Builder doesn’t work since then the error occurs: "Application validation did not succeed. Unable to continue".
    This is an known issue in SSRS 2008 R2 SP3 that Microsoft has published an article addressing this issue. It is not planning to release a fix for this issue. But we could implement one of the following workarounds:
    Install and run Report Builder 3.0 of SQL Server 2008 R2 RTM.
    Install and run Report Builder of SQL Server 2014.
    Uninstall Service Pack 3 then uninstall Service Pack 2 and then reinstall Service Pack 3.
    Reference:
    Report Builder of SQL Server 2008 R2 Service Pack 3 does not launch
    Thank you for your understanding.
    Best Regards,
    Wendy Fu

  • Error executing MS sql server procedure

    I am getting an error below while executing a SQL server procedure from SOA composite. My jdeveloper and Soa Suite version is 11.1.1.4.
    I am using “Oracle’s MS SQL Server Driver (Type 4) Version: 7.0 and later” driver. The SQL Server version is 2005.
    To configure the connection I used the steps mentioned in URL below.
    http://beatechnologies.wordpress.com/2011/01/31/creating-a-dbadapter-for-mssql-server-in-osb-11g/
    The MS SQL procedure signature is as below.
    @p_EventId               nvarchar     IN
    @p_EventName_IN               nvarchar     IN
    @p_Agreement_No_IN          decimal          IN
    @p_Acc_Base_Number_IN          decimal          IN
    @p_Acc_Comp_No_IN          decimal          IN
    @p_Account_Company_Name_IN     nvarchar     IN
    @p_Agree_Stat_Code_IN          nvarchar     IN
    @p_Agree_Type_Code_IN          nvarchar     IN
    @p_HeadQtr_Code_IN          nvarchar     IN
    @p_Sales_Off_Name_IN          nvarchar     IN
    @p_Reseller_Name_IN          nvarchar     IN
    @p_Oracle_Order_number_IN     decimal          IN
    @p_License_Effective_Date_IN     datetime     IN
    @p_PO_Number_IN               decimal          IN
    @p_Invoice_Number_IN          decimal          IN
    @p_Invoice_Date_IN          datetime     IN
    @p_Support_Contract_ID_IN     decimal          IN
    @p_Stmt_Of_Capacity_Due_Date_IN     datetime     IN
    @p_Contract_Start_Date_IN     datetime     IN
    @p_Contract_End_Date_IN          datetime     IN
    @p_Contract_Type_IN          nvarchar     IN
    Error message .
    <fault>
    <bpelFault>
    <faultType>0</faultType>
    <bindingFault>
    <part name="summary">
    <summary>Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'CompanySPProdcall' failed due to: Unimplemented object conversion. Conversion of type 1 whose JDBC type is OTHER to a Java object is not supported. An attempt was made to convert type 1 to a Java object using an unsupported JDBC type: OTHER. Use a data type with a supported JDBC type. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. </summary>
    </part>
    <part name="detail">
    <detail>Unimplemented object conversion. Conversion of type 1 whose JDBC type is OTHER to a Java object is not supported. An attempt was made to convert type 1 to a Java object using an unsupported JDBC type: OTHER. Use a data type with a supported JDBC type. </detail>
    </part>
    <part name="code">
    <code>null</code>
    </part>
    </bindingFault>
    </bpelFault>
    </fault>
    Please let me know the solution for this issue?
    Thanks...

    I had the similar problem and I am using 11.1.1.5.
    When I changed the platformClassName to org.eclipse.persistence.platform.database.SQLServerPlatform it worked.
    You can find platformClassName in Outbound Connection Properties
    Hope this might work :)

  • Financial Reporting Exception - Error executing query: java.lang.Arithmetic

    Hi all,
    I'm using the Financial Reporting Studio 11.1.2.507 to develop a report to a planning application, so i'm using a planning connection to do it. This report involves some calcs and i have sure that is possible generate a divide by zero. But what happen is: I started developing this report using the user admin and no error message was shown. Then when i tryed to acess this report with a user other than the admin user the error occurs: "Error executing query: java.lang.ArithmeticException: / by zerojava.lang.ArithmeticException".
    So, have you seen this scenario before?
    Could you help me with this issue?
    p.s: if i wasn't clear enough, please tell me!
    Warm regards,
    Rafael Melo - Brasil

    Mehmet,
    Thanks a lot for your quick response. The error message appears when i acess through the workspace. When I was developing I was acessing with admin user (FR Studio) and now I'm using other user to test the report in the workspace. I've commited a mistake when i thought that the user point of view that I defined when i was developing would be applied over all users. So, when I opened the report with a user other than the admin the error ocurred because the default attributes resulted in a empty resultset or something like that.
    Is there a way to define a user point of view (pov) for all user at once?
    Best Regards,
    Rafael Melo

  • FIM Reporting installation (where to put SQL Reporting Services?)

    Hi,
    I'm installing FIM 2010 R2 SP1 with Reporting feature.
    It is going to be installation with separate SQL and separate servers for SCSM DW and SCSM MS.
    I have SQL where I prepared 3 instances (default one for FIM databases, one for SCSM SM databases, one for SCSM DW databases). My question is - which one of them should have SQL Reporting services installed?
    Borys Majewski, Identity Management Solutions Architect (Blog: IDArchitect.NET)

    When using SCSM 2012 (SP1) you also have to install the analytic services on the instances. I can't remember exactly if it was on the DW or MS, but it would tell you during the installation of it.
    And make sure your FIM version is at leat 4.1.3451, I went through a lot of pain with version 4.1.3419 en the
    KB256143 error.
    Find me on linkedin: http://nl.linkedin.com/in/tranet

  • Crystal Report installation error

    Hi Team,
         I have registered and downloaded sap crystal reports 2013 sp1. My system specifications are mentioned below. While i am trying to install the application i am getting error "Windows version failed" stating " This product needs to be installed on windows 7 sp1 or server 2008 os. Please have a look at the below screen shot and give me proper solution to install the package.
    Thanks,
    Shanmugha Bharathy G B

    What OS are you installing on?
    See if this KBA will help (it is for CR 2011, but the steps should apply to CR 2013 also):
    1638102 - Crystal Reports 2011 Installation best practices
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Error executing pl sql block

    Hii All,
    I'm facing the following error
    ERROR at line 66:
    ORA-06550: line 66, column 20:
    PLS-00306: wrong number or types of arguments in call to '||'
    ORA-06550: line 66, column 11:
    PL/SQL: Statement ignoredVersion Details
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE    11.1.0.7.0      Production
    TNS for Solaris: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - ProductionMy pl sql block
    Declare
        p_table_name  clob := 'CP_CA_DTLS' ;
        Type t_column_name_tab is table of varchar2(4000)
        index by binary_integer;
        l_table_tab      t_column_name_tab;
        l_file_name constant varchar2(5000) := 'column_counts';
        l_count      number;
        l_tab_count    number;
        l_str    varchar2(32000);
        l_tbl_str  varchar2(32000);
      Cursor c_table_columns(c_table_name user_tables.table_name%type)
      Is
        Select  column_name
        from  user_tab_cols
        where  table_name = upper(c_table_name);
      Type t_table_columns is table of c_table_columns%rowtype;
       l_column_name_tab  t_table_columns;
    Begin
        --Splitting comma seperated data
        Select  regexp_substr(p_table_name,'[^,]+{1}',1,level)
        bulk collect into  l_table_tab
        from  dual
        connect by level <= length(regexp_replace(p_table_name,'[^,]*'))+1;
        for k in 1..l_table_tab.count
        loop
         -- dbg_print(l_file_name,'***'||l_table_tab(k)||'***');   
          Begin
              l_tbl_str := 'Select count(*) from '||l_table_tab(k);
              execute immediate l_tbl_str into l_tab_count;
            --  dbg_print(l_file_name,'Overall Count of table '||l_table_tab(k)||' is '||l_tab_count);   
          End;
       -- dbg_print(l_file_name,'Column Name '||','||'Count'); 
        Open c_table_columns(l_table_tab(k));
        loop
          Fetch c_table_columns bulk collect into l_column_name_tab limit 50;
          exit when l_column_name_tab.count = 0;
          dbms_output.put_line('l_column_name_tab.count count is : '||l_column_name_tab.count);
            for i in 1..l_column_name_tab.count
            loop
            Begin
              l_str := 'Select count(*) ' ;
              l_str := l_str||' from  '||l_table_tab(k) ;
              l_str := l_str||' where '||l_column_name_tab(i);
              l_str := l_str||' is null'  ;
              Execute Immediate l_str into l_count;
            End;
            --dbg_print(l_file_name,l_column_name_tab(i)||','||l_count);
            end loop;
        end loop;
        Close c_table_columns;
      end loop;
          dbms_output.put_line('l_column_name_tab.count count is : '||l_column_name_tab.count);
    End;Even I'm not able to print l_column_name_tab(i) using dbms_output.
    (Later I came to know that this information can be achieved using user_tab_col_statistics table)
    But would like to know whats wrong with my code.???
    Plz help me .
    Edited by: 792353 on Dec 3, 2010 1:26 AM

    Hii RDB,
    when I comment this part of code
      --   l_str := l_str||' where '||l_column_name_tab(i);
           --   l_str := l_str||' is null'  ;
    SQL> Declare
      2 
      3 
      4      p_table_name  clob := 'CP_CA_DTLS' ;
      5 
      6      Type t_column_name_tab is table of varchar2(4000)
      7      index by binary_integer;
      8     
      9      l_table_tab      t_column_name_tab;
    10    
    11 
    12 
    13 
    14      l_file_name constant varchar2(5000) := 'column_counts';
    15      l_count      number;
    16      l_tab_count    number;
    17      l_str    varchar2(32000);
    18      l_tbl_str  varchar2(32000);
    19   
    20    Cursor c_table_columns(c_table_name user_tables.table_name%type)
    21    Is
    22      Select  column_name
    23      from  user_tab_cols
    24      where  table_name = upper(c_table_name);
    25     
    26     
    27    Type t_table_columns is table of c_table_columns%rowtype;
    28   
    29   
    30     l_column_name_tab  t_table_columns;
    31   
    32  Begin
    33      --Splitting comma seperated data
    34     
    35      Select  regexp_substr(p_table_name,'[^,]+{1}',1,level)
    36      bulk collect into  l_table_tab
    37      from  dual
    38      connect by level <= length(regexp_replace(p_table_name,'[^,]*'))+1;
    39     
    40      for k in 1..l_table_tab.count
    41      loop
    42       -- dbg_print(l_file_name,'***'||l_table_tab(k)||'***');   
    43       
    44        Begin
    45            l_tbl_str := 'Select count(*) from '||l_table_tab(k);
    46       
    47            execute immediate l_tbl_str into l_tab_count;
    48       
    49          --  dbg_print(l_file_name,'Overall Count of table '||l_table_tab(k)||' is '||l_tab_coun
    t);   
    50 
    51        End;
    52 
    53     -- dbg_print(l_file_name,'Column Name '||','||'Count'); 
    54 
    55      Open c_table_columns(l_table_tab(k));
    56      loop
    57        Fetch c_table_columns bulk collect into l_column_name_tab limit 50;
    58        exit when l_column_name_tab.count = 0;
    59        dbms_output.put_line('l_column_name_tab.count count is : '||l_column_name_tab.count);
    60          for i in 1..l_column_name_tab.count
    61          loop
    62          
    63          Begin
    64            l_str := 'Select count(*) ' ;
    65            l_str := l_str||' from  '||l_table_tab(k) ;
    66         --   l_str := l_str||' where '||l_column_name_tab(i);
    67         --   l_str := l_str||' is null'  ;
    68         
    69            Execute Immediate l_str into l_count;
    70 
    71          End;
    72         
    73          --dbg_print(l_file_name,l_column_name_tab(i)||','||l_count);
    74       
    75          end loop;
    76      end loop;
    77      Close c_table_columns;
    78    end loop;
    79 
    80        dbms_output.put_line('l_column_name_tab.count count is : '||l_column_name_tab.count);
    81  End;
    82  /
    PL/SQL procedure successfully completed.its running fine so the problem is l_column_name_tab(i) !!!!!!
    and there is nothing wrong with l_table_tab(k) and its declaration.
    Edited by: 792353 on Dec 3, 2010 2:17 AM

  • Installation error 29506 on SQL Management Studio...

    hai......
    I've several ways in tried to install SQL management studio including running of cmd prompt as admin.But the installer shows that "the installer has encountered an unexpected error installing this package.This may indicate a problem with this package.The
    error code is 29506" ...........
    Please help me.....

    allright here is the answer
     Burn the  program on CD.
    Now lauch   Command prompt as Administrator.     ( Right click on command prompt to Run as Admin )
    Then  in black screen ( for those computer challanged lol )     ,  Change directory  to Your  CD    drive   ( mine is  D: )    .      (   I am old school and know some Dos commands.
     Now   from   D:  in command prompt in that black screen  type the name of file   with extension
    D:\SQL blah blah.  MSI
    This will lauch installer.
    WORKS    !!
    (  you are welcome  )

  • Error executing Catproc.sql (URGENT!)

    I am trying to create a database on Oracle805 on Linux v6 and when I try executing the Catproc.sql, the script just stops halfway.
    I went in to execute each script in the Catproc.sql script systematically and found that the processing stops in the midst of the execution of prvtutil.plb.
    What could have gone wrong? I desperately need help. Will appreciate it if someone can help to advise me on this.
    Thank you.

    It would be interesting if you tell wheter there are any error messages?
    Make sure to run catproc as user SYS.
    Try re-running catalog.sql first.

  • Installation error during the sql server 2012 sp1 installation

    TITLE: Microsoft SQL Server 2012  Setup
    The following error has occurred:
    An error occurred during the installation of assembly 'policy.8.0.Microsoft.VC80.CRT,version="8.0.50727.1833",publicKeyToken="1fc8b3b9a1e18e3b",processorArchitecture="x86",type="win32-policy"'. Please refer to Help and
    Support for more information. HRESULT: 0x800736FD. 
    For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft%20SQL%20Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.5058.0&EvtType=0xDF039760%25401201%25401
    BUTTONS:
    OK

    This issue occurs because of a known issue in the Visual C++ 2005 runtime library setup.
    https://support.microsoft.com/en-us/kb/2688946?wa=wsignin1.0
    Cumulative update information
    SQL Server 2012
    The fix for this issue was first released in Cumulative Update 1 for SQL Server 2012. For more information about how to obtain this
    cumulative update package for SQL Server, click the following article number to view the article in the Microsoft Knowledge Base:
    2679368 Cumulative update 1 for SQL Server 2012
    For a stand-alone installation, follow these steps:
    Download the cumulative update from the Microsoft website, and install the downloaded update package in a folder that can be accessed by the server.
    Double-click the icon to run the Self-Extractor wizard. Extract the files to a folder on the server or on a UNC share.
    On the server, open an administrative command prompt, and change directory to the folder that contains the RTM SQL Server 2012 setup media. For example, run the following command:
    cd E:\SQLSetup\
    Run Setup.exe from the command line together with the /updatesource switch to direct the setup to the folder or share that was described in step 2. For example, run the following command:
    setup.exe /action=install /updatesource=C:\SQL2012CU
    The setup process will detect the cumulative update. After you accept the licensing agreement, on the Product Updates page in the setup process, select the "Include SQL Server product updates" check box to apply
    the cumulative update fixes to the RTM setup files.
    check and confirm.

  • XL Reporter Installation error

    Hi,
    I am attempting to install Xl Reporter PL 30 at a site that has SAP B1 2005 SP01 PL 31 and I am getting the following error message at one of the client machines 'SAP Business One DI SDK is required but not found !'
    This only occurs on one client all the rest have installed XL reporter OK.
    Kindly help.
    R.

    Hi,
    Please install DI API which is the same version of the client(get the package from PL31 package.) and try again.
    thanks,
    maggie an

  • XL Reporter - Installation Failed

    Hi all,
    I try to install XL Reporter Add-on but the installation failed. This is the message:
    XL Reporter - InstallShield Wizard
    Error Preparing Metadata Repository:
    Started: 5/30/2008 2:00:22 PM Logon to SONTV IXMetaSBOOEM
        Provider=SQLOLEDB.1;Data Source='SONTV';Initial Catalog='IXMetaSBOOEM';User ID='sa';Password='***' Creating SONTV/IXMetaSBOOEM
    Executing SQL script 'IXMetaProcs.sql' (Start: 5/30/2008 2:00:24 PM)
    ExitCode -1073741819
    !!! ERROR Error executing IXMetaProcs.sql ExitCode -1073741819
    !!! - Exit -
    OK  
    What 's happen? and How can I make the installation success?
    Pls, help me solve the issue.
    Thanks in advance.
    Son.
    Edited by: Son Tran Van on May 30, 2008 9:12 AM
    Edited by: Philip Eller on Jun 13, 2008 9:49 AM

    Dear ,
    kindly check whether the following information could solve your issue or not.
    1) Make sure XLR is uninstalled. To be sure of this, check the folder
    \AddOns\XLR in their Business One client installation folder and it
    should be empty.
    2) Go to the SQL Server, and delete the database IXMetaSBOOEM manually
    if it is there. After that, go to the default data file folder of
    SQLServer (if SQLServer is installed on c:\Program Files folder, the
    data file folder should be C:\Programas\Microsoft SQL Server\MSSQL\Data\
    by default). This folder is the default location for SQL Server to place
    data files. Make sure the files IXMetaSBOOEM.mdf and
    IXMetaSBOOEM_log.ldf does not exist.
    3) Go to Security->Logins in the SQL Server, delete the account xlruser
    if it exists.
    4) Try installing XLR again.
    Regards
    Apple

Maybe you are looking for

  • Exchange Server 2013 Edge Transport Role

    Dear,          I have a question regarding Exchange Server 2013 SP1 that, I have installed Edge Transport Server Role on separate box without Domain Joined. Obviously I installed Exchange CAS and Mailbox on Same box with Domain Joined in Corporate LA

  • Personas button does not appear in HTML

    Personas button does not appear in HTML Hi! I installed Personas 2.0 and finished most of the configuration. The Sliverlight component is working fine but when I switch to html component the personas button not appear. I did all the settings. User ha

  • Moving methods to a new class

    I have a class with my GUI and methods, but i want to move my methods to their own class. import java.awt.Container; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.awt.event.ActionEvent; import

  • Type of plastic used for the nano

    Does anyone know the type of plastic used for the front of the nano. I am just trying to find out so I could see if that Novus 2 scratch remover will work. Thanks

  • Why is the  finder copying before burning?

    I was just preparing my first dvd backup using the finder to burn the dvd and I was surprised that as I dragged items to the dvd disc to prepare for burning, it seemed to be actually copying these items to some location before I could burn the dvd. I