Pl sql block runtime error

HII All,
I am 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 ignored
Version 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 - Production
My 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 if I am not able to print the l_column_name_tab (i) using the dbms_output.


(Later I came to know that this information can be done by using the user_tab_col_statistics table)

But I would like to know what's wrong with my code. ???


Please help me.

Published by: 792353 on December 3, 2010 01:26

Hello

l_column_name_tab is a collection of records, even if there is only one field in it.

For example, to access the value, you would do:

l_column_name_tab(i).column_name

Tags: Database

Similar Questions

  • ORA-06528: PL/SQL Profiler generator runtime error

    Version 11.2.0.3.  I have installad DBMS_PROFILER:

    SYS AS SYSDBA > @?/rdbms/admin/profload.sql

    SYS AS SYSDBA > @?/rdbms/admin/proftab.sql


    I tried to use dbms_profiler.start_profiler in PLSQL code with user NUFN and discovered that lacked the NUFN user privileges on the objects of the Profiler. So I ran the following grants:

    grant the update, insert and delete on plsql_profiler_units to NUFN;

    grant the update, insert and delete on plsql_profiler_runs to NUFN;

    Grant execute on DBMS_PROFILER to NUFN;

    But still no luck:

    SQL > START

    dbms_profiler.start_profiler ('test1');

    EXECUTE IMMEDIATE 'select max (STATS_UPDATE_TIME), owner of the DBA_TAB_STATS_HISTORY group from owner to owner.

    dbms_profiler.stop_profiler ();

    END;

    /

    BEGIN

    *

    ERROR on line 1:

    ORA-06528: PL/SQL Profiler generator runtime error

    ORA-06512: at "SYS." DBMS_PROFILER", line 123

    ORA-06512: at "SYS." DBMS_PROFILER", line 132

    ORA-06512: at line 2

    I can't find what is missing from my user NUFN for her to be able to run DBMS_PROFILER.  Help, please!

    Thanks Bella, I had not run @?/rdbms/admin/proftab.sql as my user NUFN but as sys.  But you know what?  Even after execution of @?/rdbms/admin/proftab.sql as NUFN, the problem persisted!

    So I traced my session, read the trace file and found nothing wrong (but I have no experience in finding fault with the workings of dbms_profiler).  But I found the SQL code executed by the dbms_profiler.start_profiler command, which is:

    PARSING IN CURSOR #4574691968 len = 155 dep = 2 uid = 155 oct 2 lid = 155 = tim = hv 530047132716 = ad 3718124591 = "7000000946da848" sqlid = "akx2pxvftw51g."

    INSERT INTO PLSQL_PROFILER_RUNS (RUNID, RUN_DATE, RELATED_RUN, RUN_OWNER) VALUES (PLSQL_PROFILER_RUNNUMBER. NEXTVAL,: B1,: B2, USER) RETURN RUNID IN: O0

    END OF STMT

    ANALYSIS #4574691968:c = 315, e = 844, p = 0, cr = 0, cu = 0, put = 1, r = 0, dep = 2, og = 1, plh = 0, tim = 530047132715

    I tried manually the same HOME, and bingo, I discovered the cause of my problem:

    INSERT INTO PLSQL_PROFILER_RUNS (RUNID, RUN_DATE, RELATED_RUN, RUN_OWNER) VALUES (PLSQL_PROFILER_RUNNUMBER. NEXTVAL, sysdate, 'manually', 'ME');

    ORA-01950: no privileges on tablespace execution times

    After performing ALTER USER NUFN QUOTA UNLIMITED ON STATES; the problem has been resolved.

    Conclusion: after DBMS_PROFILER installation for a user, make sure that the user can write in objects DBMS_PROFILER (SUBSIDIES and QUOTAS).

  • Ignore the error and continue the pl/sql block

    Dear all,

    Please help me to fix the script below.

    I had an obligation to write a pl/sql that will handle the update instructions.

    For example:
    A table that contains 10 rows of data. Through pl/SQL block, I update the 10 rows (or a smaller number of lines).
    Now, the scenario is by updating registration / line 4, oracle has met an error and then oracle leave pl/sql block and cancel the transaction.

    My requirement here is, by updating the records, if oracle encounters an error, it must raise an error or ignore the record and continue to process records. Oracle wouldn't pl/sql block.

    We are using oracle 10g.

    Thank you
    KODS

    As has already been suggested, you might check DML ERROR LOGGING

  • exception in PL/SQL block error

    Hello
    the following conditions in a PL/SQL block cause an exception error to occur?

    A Select statement - does not return a line.
    B - Select statement returns multiple lines.

    Thank you.

    If you talk to SELECT... IN... statement:

    A Select statement - does not return a line.

    Yes, the NO_DATA_FOUND exception is raised

    B - Select statement returns multiple lines.

    Yes, the TOO_MANY_ROWS exception is thrown

    Max
    [My Italian blog Oracle | http://oracleitalia.wordpress.com/2010/01/17/supporto-di-xml-schema-in-oracle-xmldb/]

    Published by: Massimo Ruocchio, January 19, 2010 17:04
    Added first line

  • OneDrive of browsing for the file of the company is blocking explorer.exe with visual c ++ runtime error

    I posted this in the OneDrive for business forums and was told to come here because they were not able to climb it - a few other people responded saying that they had exactly the same problem.  I copy + paste the original message here.

    OK, now let me preface this by saying: I was fix this for the better part of a week and I am puzzled.

    I work in the it Department for business (~ 200 employees) medium, we have recently migrated our the server local exchange to Exchange Online (we are now using a mixture of licenses Office 365 E1 and E3) and we have since then all members of society with their synchronizations of OneDrive.

    About 200 people, that we have put in place, there is a person who has this problem - when he opens the file Explorer and looks in his folder OneDrive @ company, less than a minute, it will get a Visual C ++ runtime error and explore crashes / restarts and is able to work again.  Of course, within a minute, the same thing happens. It is under windows 7 x 64.

    This particular user has a mixture of files .dwg-AutoCAD, PDF, word/excel files and jpg files on his onedrive for a total amount of approximately 7 GB.  It uses the preview in the Explorer pane, and I saw a similar problem during its use in the past, so I applied the patch and it did not help.  If I disconnect his onedrive and move his files back in its documents folder, it can browse its files without any problems whatsoever (including using the preview pane).

    want to hear the best part?  I set him up on a laptop quite different from ZERO and it does EXACTLY the same thing!  No one else in the company is having this problem, and almost every other laptop that we deployed using the same exact configuration.  I'm starting to think, it could be a problem with his records, but I'm not sure - go to synchronize its reader to my computer to see, even if I'm on windows 8.1.

    Everyone knows about this type of problem?

    Also, I already tried to delete the cache of records office and completely reinstalled onedrive on the original computer.

    This is clearly a problem inherent in the OneDrive itself.  Let me know if any kind of logs are needed.

    I could never get anyone to help me here so I ended up spending the user assigned to windows 8.1 and it helped.  Sometimes it happens again but windows 8 is much better at handling explore crashes, so it's just a quick blip and he is back at work.

    Good luck.

  • Error when you try to create a region of the page generated by the anonymous pl/sql block

    Hi guys I tried to create a region of the page which is the source and anonymous pl/sql block and I have been making a few mistakes. Basically what I want this region to do, is to give the current user of the application one summarized data compared to there user name which is: app_user the code I used was

    declare

    ven_ret varchar2 (15);

    BEGIN

    ven_ret: = (select u.vendor of USERS4ARCHITEC u )


    where

    u.e_mail = V ('APP_USER')

    and not exists (select null from arch_tbl I where u.vendor = i.vendor and user_id = V ('APP_USER'))

    order u.vendor in ven_ret);

    END;

    /

    the structure of the table to the USERS4ARCHITEC table is

    User varchar2 (15) vendor2 (20)

    ----------------------------------------------------------------------------------

    user@1                                                                          sap

    user@1                                                                          oracle

    user@1                                                                           IBM                                                            <---------sample data

    user@2                                                                          Oracle

    user@2                                                                          cisco

    the structure of the table to the arch_tbl table is

    user                                                     vendor

    --------------------------------------------------------------

    user@1                                                 sap

    So if user@1 logs in the application of the region using the pl/sql code code above should display oracle and IBM, because these two sellers are always under his username that he has already used a form to insert the sap into the arch_tbl table. Please tell me what I'm doing wrong here. Thank you guys

    Why would you build a type psedu at APEX report MANUALLY when you can just build a relationship with the same selection you use now for your pl/sql dynamic region?  What is the purpose of building your own report when the tool made for you?

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

  • Runtime error still CS5 &amp; blocks - HELP!

    Hello world

    I installed Encore CS5 with first Pro CS5 and used successfully to burn a DVD. Today, however, when I finish the tab new project with the name and location/project settings and click OK, there is a break of about 3 seconds, then a box pop up:

    Runtime error! Program: C:\.

    This application has requested the execution to end am unusual way.

    For more information, contact the application support team.

    I looked through forums, etc. and the only possible solution was to turn off DLA, but I don't see how to do this in Windows 7.

    If anyone can help, I would be more grateful, that I do not see why I was able to burn a DVD without this problem the last time.

    Thank you!

    Hello

    After many exhausting hours, of a similar problem, I have solved this problem.

    My problem exactly;

    I had CS4 Master Suite installed on a Machine Windows 7 64 with motherboard Asus P6T 12 GB, i7 RAM 1 GB GC 2xGTX285.

    I do not uninstall CS4 before installing the entire suite CS5.

    After that I installed CS5, I got the same run-time error at startup of the program on AF/still/PremierePro.

    Dynamic Link Manager error on startup also with only these programs, "dynamiclinkmanger has stopped working".

    How I fixed it:


    I completely removed the CS4 pragrams and features in the Control Panel, then restarted.


    I then used the removal tool from adobe CS4 on the adobe site and rebooted.


    I then uninstalled 3 programs send me errors via the Control Panel programs and features.


    I rebooted and installed the 3 programs through the original installation file/disc.

    Has not restarted, just ran the programs. All worked perectly without error.

    Dynamic link now works correctly also.

    Hope this helps, there is little info on this fix, as you already know.

  • Tried the FAQ help still getting a runtime error, server with a Web site error

    I tried several times to go on texags.com forums that I have in the past, but get the following message.

    In the Application Server error ' / '.
    Runtime error
    Description: An application error occurred on the server. The current settings of error customized for this application prevent the details of the error in the application being viewed remotely (for security reasons). It could, however, be read by browsers running on the local server computer.

    Details: To enable the details of this error message specific either visible on remote machines, please create a < customErrors > tag in a "web.config" configuration file located in the root directory of the current web application. The < customErrors > tag should have its attribute of 'mode' on 'Off '.

    <!-- Web.Config Configuration File -->
    
    <configuration>
        <system.web>
            <customErrors mode="Off"/>
        </system.web>
    </configuration>

    Note: The current error page, you see may be replaced by a custom error page by modifying the "defaultRedirect" of an application < customErrors > attribute tag configuration to point to a custom error page URL.

    <!-- Web.Config Configuration File -->
    
    <configuration>
        <system.web>
            <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
        </system.web>
    </configuration>

    Other people on the forum using firefox without problems and I did in the past. I'm moving to Chrome, but it is a huge block for me. I checked the updates and erased the history and cache as suggested in the FAQ. Any advice?

    Thank you. I tried only the part about the deletion of my story. Supposedly to forget this site or adjust my cookies solved the problem.

  • Microsoft Visual C++ Runtime Library Runtime Error!

    I am running Windows XP SP3, HP 2.8 GHz, Pentium 4 dual core, 2 GB of memory

    I installed the HRBlock2010 tax program and received the following message:

    Microsoft Visual C++ Runtime Library

    Runtime error!

    Program: c:\Program Files\HRBlock2010\Program\HRBLOCK2010.exe

    This application has requested the execution to terminate in an unusual way.

    For more information, contact the application support team.

    Signature of the error-

    AppName: hrblock2010.exe AppVEr: 2010.2.0.6402 ModName: msvcr90.dll

    ModVer: 9.0.30729.4148 Offset: 0005bea4

    What I tried:

    1 Ran System Restore to before that I installed the program

    2. ran Library Runtime reinstall

    3A contacted support HR block that have been blocked and

    suggested that I have contacted Microsoft.

    4 program installed on another computer - it worked.

    so I followed the file msvcr90.dll. Looks very good.

    5 uinstalled and reinstalled program 3 times. Always get the error message

    This only happens when I try to run this program. I have many others

    significant programs and I'm not the freedom to run the system recovery.

    I'm looking for a patch will install/correct the library dll for XP, SP3

    without having to replace the entire operating system

    Thank you

    It's really about HR Block, despite the fact that tech support is countered.  Perhaps could you call back and ask that the question be raised.

    What do you mean by you "ran Library Runtime reinstall?  Where did you got the runtime library to reinstall?

    I have 9 different instances of msvcr90.dll on my XP Pro system, each installed by a different application.  The interesting thing is that they are not all identical.  Most are version 9.0.21022.8, but I have also 2 instances of version 9.0.30729.1.

    Applications using Visual C++ are supposed to include the library runtime with their distributable package. Usually, the runtime library is installed in a subdirectory of the application directory in C:\Program Files.  For example, C:\Program Files\TurboTax\Deluxe 2010\32bit\msvcr90.dll I

    However, if another application that you have placed a different version of the msvcr90 in one of the system directories, for example, C:\Windows\system32, it is possible the executable HRBlock tries to use the wrong file.

    I do a search on your hard drive to msvcr90.dll and see if there is an instance in one directory other than the one clearly associated with an application.

  • Examples of error performance... ? Difference between the runtime error and the syntax error?

    Hello, I know that an implicit validation occurs before a runtime error.

    What is the difference between a runtime error and the syntax error (syntax error seems pretty obvious).

    Could you give me an example or 2 an error of execution'd. Should not be explained with statements etc. just a small example of first.

    Hello, I know that an implicit validation occurs before a runtime error.

    You do? How do you know that? What is the source of your information?

    What is the difference between a runtime error and the syntax error (syntax error seems pretty obvious).

    The syntax is checked at the time of the analysis/compile. Runtime errors occur to, of course, of execution time. You can NOT run sometimes that there are syntax errors.

    Could you give me an example or 2 an error of execution'd. Should not be explained with statements etc. just a small example of first.

    Ideally, Oracle has created an entire book of them. Make your choice.

    http://docs.Oracle.com/CD/B28359_01/server.111/b28278/TOC.htm

    The doc PL/SQL treats Exceptions language and everything that you always wanted to know about them. It also includes examples

    http://docs.Oracle.com/CD/B28359_01/AppDev.111/b28370/errors.htm

  • Adaaddls.pls in aidmcl() runtime error

    I'm moving to ebs 12.2. of 12.0.6.

    Docs used are: http://docs.oracle.com/cd/E26401_01/doc.122/e48839.pdf

    Oracle E - Business Suite Guide upgrade

    After completing the upgrade of pre and post installation, I got to the step:

    9 apply AD 12.2 update driver (required) download and unzip the Patch to upgrade the AD to 12.2 (patch 10117518). Follow the instructions in the patch readme file for use AutoPatch for run from the Run 12.2 file system. Important: AD Upgrade Patch for 12.2 (patch 10117518) patch readme contains information about the last consolidated Upgrade Patch (CUP) for AD. You must follow the patch 10117518 readme and apply it after the merger with the last consolidated AD Upgrade Patch (CUT), by following the instructions in the readme file. ATTENTION: Make sure that the file system files RUN 12.2 environment comes before you apply this hotfix.

    When executing adpatch of new software, I get:

    sqlplus-s APPS_NE / * @/u02/oracle/DESE/fs1/EBSapps/appl/ad/12.0.0/patch/115/sql/adsqlwrapper.sql ' /u02/oracle/DESE/fs1/EBSapps/appl/ad/12.0.0/patch/115/sql/adaddls.pls * APPS_NE *'

    SP2-0642: SQL * more internal error state 2165, context 4294967295:0:0

    Impossible to continue

    An error occurred during the execution of SQL * more script.

    Continue as if it was successful [No.]: Yes

    sqlplus-s APPS_NE / * @/u02/oracle/DESE/fs1/EBSapps/appl/ad/12.0.0/patch/115/sql/adsqlwrapper.sql ' /u02/oracle/DESE/fs1/EBSapps/appl/ad/12.0.0/patch/115/sql/adaaddls.pls * APPS_NE *'

    SP2-0642: SQL * more internal error state 2165, context 4294967295:0:0

    Impossible to continue

    An error occurred during the execution of SQL * more script.

    Continue as if it was successful [No.]: No.

    Adaaddls.pls in aidmcl() runtime error

    You must check the file

    /U02/Oracle/dese/FS1/EBSapps/appl/Admin/dese/log/u_10117518_cup5.log

    Could someone give me a sollution for this?

    Thanks in advance.

    Problem solved after using FNDCPASS and APPS_NE internally to change the password.

  • "Declaration of execution" and anonymous PL/SQL blocks

    I often use control - enter to execute the statement that the cursor is currently over.  Normally, this works very well.  But it's a little twisted once I added an anonymous PL/SQL block to the worksheet.  As long as the anonymous block is the last thing on the spreadsheet, I can "run statement" as usual.  But if I add a SQL queries after an anonymous block and try to run the statement, rather than just the running query, SQL Developer aims apparently to compile everything since the beginning of the first anonymous block until the current as a block statement.

    For example, if I have a spreadsheet as follows:

    SELECT 1 FROM DUAL;  --run statement on this line works as expected, running just this query
    
    BEGIN  --run statement anywhere within this block works as expected, running just this block
      DBMS_OUTPUT.PUT_LINE('X');
    END;
    
    SELECT 1 FROM DUAL; --run statement on this line goes back to the "BEGIN" on line 3 and gives a compilation error
    

    It is a nuisance major for me, as I have often a mixture of SQL and anonymous blocks on a worksheet.  I know that I can point out that the code I want and execute statement in this way, but I'd rather not have to do.  I was expecting that developer SQL would be smart enough to know where each block begins / ends and realize my current statement is not part of the block above him. Is there a setting that can change this behavior?  Or is it the way it is supposed to work?

    Whatever it is, thanks for the excellent tool.

    Add a ' / ' at line 5 and line 5 to line 6 bump

  • How to truncate the table in a pl/sql block

    Hello guys, I'm trying to truncate a table that includes data using a pl/sql block, so if the table has even a single row then the truncate should run. to do this, I wrote the following code


    declare
    number num.
    Start
    Select count (*) in the num from table_name;
    If num > 0 then
    truncate table table_name;
    end if;
    end;

    Now, when I execute the pl/sql block, I get the following error.

    PLS-00103: encountered the symbol "TABLE" when the expected in the following way:

    When I run the truncate without pl/sql command, it runs very well.

    Can someone please where I'm wrong.

    Thank you

    Published by: 969224 on April 23, 2013 08:08

    969224 wrote:
    Hello guys, I'm trying to truncate a table that includes data using a pl/sql block, so if the table has even a single row then the truncate should run. to do this, I wrote the following code

    declare
    number num.
    Start
    Select count (*) in the num from table_name;
    If num > 0 then
    truncate table table_name;
    end if;
    end;

    Now, when I execute the pl/sql block, I get the following error.

    PLS-00103: encountered the symbol "TABLE" when the expected in the following way:

    When I run the truncate without pl/sql command, it runs very well.

    Can someone please where I'm wrong.

    Thank you

    Published by: 969224 on April 23, 2013 08:08

    DDL is not allowed directly within PL/SQL procedures.

    You must (ab) use EXECUTE IMMEDIATE issuing the DDL

  • Select the query within the PL/SQL block.

    Hello Experts,

    I'm just a beginner with PL/SQL.
    If I write a select query of client like fire against a database and SQL dev, it gives me result.
    For example: select * from employee;

    Now suppose that when I use the same query within a PL/SQL block:
    Declare
    Start
    Select * from employee;
    end;
    /
    It gives error during execution, by mentioning that an INTO should etc...
    I have my doubts here:
    1. is it impossible to use a simple select statement within a PL/SQL block (If yes why?)

    I know it's a very basic question, I tried to search it on the forum but could not find the thread, please redirect me to the link if it is already the answer.

    Please read this first. may ask why?

    http://docs.Oracle.com/CD/B28359_01/AppDev.111/b28370/TOC.htm

  • SGD 12 c Upgrade blocked this error in invoking target ' client_shared

    Hi all

    We are upgrading WHO 11.1 to 12 c
    blocked this error after invoking runInstaller
    Suite 1 system upgrade. (graphics mode).


    INFO: Starting the process generated output:
    INFO: ----------------------------------
    INFO:

    INFO: / opt/app/wls/oms12c/who/bin/genclntsh

    NEWS: make: execvp: / opt/app/wls/oms12c/who/bin/genclntsh: permission denied

    NEWS: make: * [client_sharedlib] error 127

    INFO: End of the generated process exit.
    INFO: ----------------------------------
    INFO: Exception thrown from action: do
    Exception name: MakefileException
    Exception string: error in the call to target 'client_sharedlib' of makefile ' / opt/app/wls/oms12c/oms/rdbms/lib/ins_rdbms.mk'. See ' / opt/app/oraInventory/logs/installActions2012-08-02_06-38-02-PM.log ' for details.
    The exception severity: 1
    INFO: POPUP of WARNING: error in invoking target 'client_sharedlib' of makefile ' / opt/app/wls/oms12c/oms/rdbms/lib/ins_rdbms.mk'. See ' / opt/app/oraInventory/logs/installActions2012-08-02_06-38-02-PM.log ' for details.

    Click 'Retry' to try again.
    Click "Ignore" to ignore this error and continue.
    Click 'Cancel' to stop this installation.

    Please notify

    Published by: TechAdmin on 2 August 2012 16:09

    Published by: TechAdmin on 2 August 2012 16:11

    The question that you are running is known to us and we have depreciation in our next release ( bug 14050320 I do not know if you can see the details of the bug). The issue here is you have exported/imported from the DB and then created the DB for this upgrade. While this import/export, the materialized view "SYSMAN." "MGMT_ECM_MD_ALL_TBL_COLUMNS in the DB gets converted into a table. The upgrade code EM tries to remove the "SYSMAN." "MGMT_ECM_MD_ALL_TBL_COLUMNS view, but it fails (as his table now).

    To resolve this issue, you must run sql in your db and service/retry the upgrade by using the repmanager command. Since a public forum that I won't share the sql code in this forum. You can e-mail me or provide me with a SR so that I can give you more detailed instructions.

Maybe you are looking for

  • Satellite A210 (PSAELE) - output VGA does not

    Hello everyone, I have an A200 PSAELE and I'm trying to connect it to an external monitor via VGA.The external monitor is a Medion 19 '' Widescreen with a resolution of 1440 x 900. The problem is that I'm not able to get the external display to work.

  • How to reverse the action of the vi PID control?

    I want to control a starter that regulates pressure in a pump application. The application has already exists, but the customer wants the software to automatically control the strangler around a pressure setpoint. The operator controls manual, output

  • Update 3/3 does not

    My mobile son works on vista professional and he did an automatic update, the other day, however, when he started the next time he did updates 1 and 2 but got to 3 and a 0% complete and guard just starting and stopping down.  For the hard drive light

  • How can I add a computer vista laptop runningwindows to a homegroup in windows 7

    I have a HP PC, the laptop and the laptop running Windows 7. Compaq laptop of my wife is running vista.  I can add to Windows 7 homegroup, or is it easier to upgrade your computer to windows 7?

  • Parameters of Holster for blackBerry Smartphones

    I have a BB case. When I receive a new message and leave BB as soon as I get the message, he opens it. If I wait a few minutes, I can open the messages manually. I wonder if there is a setting replace automatically opening messages. I want to open my