Logical standby error with export dump

oracal 10g have a setup logical standby and when i am running export dump from logical i got this error.
EXP-00008: ORACLE error 16224 encountered
ORA-16224: Database Guard is enabled
EXP-00000: Export terminated unsuccessfully
can someone help me out how can it posibal to take export dump and datapump from logical standby.
thanks

16224, 00000, "Database Guard is enabled"
// *Cause: Operation could not be performed because database guard is enabled
// *Action: Verify operation is correct and disable database guard                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Logical Standby Database with 10g+ASM on both sides??

    Hi out there,
    is there a known way to establish a logical standby database on 10g, if both
    sides are running with an ASM setup?
    I've tried to create one out of a physical standby database (which is set up
    and running w/o any problems), like a book suggested me to do.
    The procedure was:
    1. switch on supplemental logging
    2. prepare initiation parameters (for archive logging etc.) on both sides for
    logical stb.
    3. shut down the phyiscal standby
    4. alter database create logical standby controlfile as '<path>'; on the
    primary, transfer the controlfile to the standby db. Here I had to use RMAN
    to copy the controlfile into the ASM System, and modify the initfile/spfile
    in order to use the controlfile. No problem so far.
    5. mount the standby database, alter database recover managed standby database
    disconnect; -> At this point, the alert log complained about non-available
    datafiles.
    6. alter database activate standby database; --> fails ("needs recovery") due
    to last point.
    The trouble is, the controlfile created at point 4 cointains wrong paths to
    the datafiles. Since I can not have the same disk group name on the standby
    system, and since ASM renames the stored datafiles by its own, the complaints
    of point 5 are comprehensible, but nevertheless annoying.
    I tried to backup a controlfile to trace and change the paths, but at after
    mounting the standby with this controlfile and proceeding at point 5, the
    system says "<path> is not a standby controlfile"
    Is there a different way of creating a "Logical Standby Database with 10g+ASM
    on both sides"? Metalink said nothing about LogStby and ASM.
    Best regards and thanks in advance,
    Martin

    I'm not sure if this will work but try:
    1. create trace control file (you did it)
    2. change paths (you did it)
    3. recrate control file (you did it)
    ... there was error occured during mount before
    so mount database (not as standby)
    4. create standby control file (from recreated control file)
    5. shutdown instance, replace control file with new standby control file or replace the control filename in parameter file.
    6. mount as standby
    What happend?
    Update: Tested on my side and it has worked fine... How about you?
    Message was edited by:
    Ivan Kartik

  • Logical standby failed with LOGSTDBY status: ORA-01281: SCN range specified

    My logical standby datbase on 11gR2 failed with the above message.
    A search on the error says
    Error: ORA-01281 (ORA-1281)
    Text: SCN range specified is invalid
    Cause: StartSCN may be greater than EndSCN, or the SCN specified may be
    invalid.
    Action: Specify a valid SCN range.
    does any one have an idea as to how to specify a Valid SCN Range
    appreciate you help.

    When you got to DBMS_LOGSTDBY
    http://www.morganslibrary.org/reference/pkgs/dbms_logstdby.html
    What did you do when you saw the procedure MAP_PRIMARY_SCN?

  • Error With Export/Print from Crystal Report Viewer

    Hello there,
    I've searched through the web and SAP discussion boards with not much luck with this issue.
    After working through this for some days now I've decided to look here for help.
    Environment:
    I have created a web Crystal Report viewer application(Developed with SBOP BI Platform 4.0 SP06 .NET SDK Runtime) that communicates with a managed Cyrstal Server 2011 SP4 (Product 14.0)
    I am able to connect and authenticate with the server, retrieve a token for communication and display reports in the Crystal report Viewer successfully.
    Problem:
    When I attempt to export, I receive the prompt to select format and pages.
    When I click export after selections most times I receive an error with the text
    Unable to cast COM object of type 'System.__ComObject' to interface type 'CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{74EEBC42-6C5D-11D3-9172-00902741EE7C}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).
    Other times the page simply refreshes on export.
    When I click to print, no print dialog is displayed the page always refreshes and no error is displayed.
    No Print or Export document is ever created.
    As many print/export issues seems to be related, I'm guessing this two issues are as well.
    Notes:
    I am utilizing the ReportClientDocument model
    I am storing this in session to use as the crystal report viewer report source on postbacks
    I am assigning a subset of export formats to the crystal report viewer
    I am setting particular parameters as well on the report source
    At this point I would appreciate every assistance I may receive on this issue
    Thanks in advance,
    Below is the pertinent code
    Code:
    <aspx>
       <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
       AutoDataBind="true" EnableDatabaseLogonPrompt="False"
       BestFitPage="False" ReuseParameterValuesOnRefresh="True"
      CssClass="reportFrame" Height="1000px" Width="1100px" EnableDrillDown="False"
      ToolPanelView="None" PrintMode="Pdf"/>
    <Codebehind>
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using CrystalDecisions.Enterprise;
    using CrystalDecisions.ReportAppServer.ClientDoc;
    using CrystalDecisions.ReportAppServer.CommonObjectModel;
    using CrystalDecisions.ReportAppServer.Controllers;
    using CrystalDecisions.ReportAppServer.DataDefModel;
    using CrystalDecisions.ReportAppServer.ReportDefModel;
    using CrystalDecisions.Shared;
    namespace ClassicInternalReportPage
        public partial class Reports : System.Web.UI.Page
            protected override void OnInit(EventArgs e)
                base.OnInit(e);
                if (!String.IsNullOrEmpty(Convert.ToString(Session["LogonToken"])) && !IsPostBack)
                    SessionMgr sessionMgr = new SessionMgr();
                    EnterpriseSession enterpriseSession = sessionMgr.LogonWithToken(Session["LogonToken"].ToString());
                    EnterpriseService reportService = enterpriseSession.GetService("RASReportFactory");
                    InfoStore infoStore = new InfoStore(enterpriseSession.GetService("InfoStore"));
                    if (reportService != null)
                        string queryString = String.Format("Select SI_ID, SI_NAME, SI_PARENTID From CI_INFOOBJECTS "
                           + "Where SI_PROGID='CrystalEnterprise.Report' "
                           + "And SI_ID = {0} "
                           + "And SI_INSTANCE = 0", Request.QueryString["rId"]);
                        InfoObjects infoObjects = infoStore.Query(queryString);
                        ReportAppFactory reportFactory = (ReportAppFactory)reportService.Interface;
                        if (infoObjects != null && infoObjects.Count > 0)
                            ISCDReportClientDocument reportSource = reportFactory.OpenDocument(infoObjects[1].ID, 0);
                            Session["ReportClDocument"] = AssignReportParameters(reportSource) ? reportSource : null;
                            CrystalReportViewer1.ReportSource = Session["ReportClDocument"];
                            CrystalReportViewer1.DataBind();
                //Viewer options
                // Don't enable prompting for Live and Custom
                CrystalReportViewer1.EnableParameterPrompt = !(Request.QueryString["t"] == "1" || Request.QueryString["t"] == "4");
                CrystalReportViewer1.HasToggleParameterPanelButton = CrystalReportViewer1.EnableParameterPrompt;
                CrystalReportViewer1.AllowedExportFormats = (int)(ViewerExportFormats.PdfFormat | ViewerExportFormats.ExcelFormat | ViewerExportFormats.XLSXFormat | ViewerExportFormats.CsvFormat);
            protected void Page_Load(object sender, EventArgs e)
                if (IsPostBack && CrystalReportViewer1.ReportSource == null)
                    CrystalReportViewer1.ReportSource = Session["ReportClDocument"];
                    CrystalReportViewer1.DataBind();
            private bool AssignReportParameters(ISCDReportClientDocument reportSource)
                bool success = true;
                if (Request.QueryString["t"] == "1" || Request.QueryString["t"] == "2" || Request.QueryString["t"] == "4" )
                    reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "STORE", Session["storeParam"]);
                    if (Request.QueryString["t"] == "2")
                        reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "FromDate", Request.QueryString["fromdate"]);
                        reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "ToDate", Request.QueryString["todate"]);
                else if (Request.QueryString["t"] == "3")
                    reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "SKU", Request.QueryString["sku"]);
                else
                    //Unknown report type alert
                    success = false;
                return success;

    Thanks Don for your response,
    I'm new to the SCN spaces and my content has been moved a couple of times already.
    In response to your questions
    The runtime is installed on the web application server, if by that you mean the machine hosting the created .NET SDK application.
    My question was whether it was also required on the Crystal Server 2011 (I.E. the main enterprise server with CMS and Report management and I guess RAS and all that). I figured this would remain untouched and queries would simply be made against it to retrieve/view reports e.t.c
    If install of the SDK on Crystal Server 2011 is indeed required should I expect any interruption to any of the core services after a restart. I.E. I'm hoping that none of the SDK objects would interfere with the existing server objects (in SAP Business Objects)Reason I ask is I note that much of the SDK install directories are similar to the existing Crystal Enterprise Server 2011 (Product 14.0.0)
    Is this temp folder to be manually created/configured or is it created by the application automatically to perform tasks. Or are you referring to the default C:\Windows\Temp directory and so saying that the application would try to use this for print and export tasks?Once I'm sure which I'd give the app pool user permission
    Printing is to be client side but I figured by default (with the Crystal Report Viewer) it would simply pool and print from the user's printer. This is how it works with the previously used URL reporting approach (viewrpt.cwr). Therefore a user can print the document from wherever they are with their own printer.We don't intend on printing from the server machine, but are you suggesting that a printer must be installed on server (which one web or enterprise server) for any client side printing to work.
    App pool is running in 32 bit mode
    Initially didn't get anything useful from fiddler but I'd try and look closer on your suggestion.
    It's also possible that some of my questions are a misunderstanding of APP vs RAS vs WEB, so please feel free to clarify. Currently I see the Web server as simply the created .NET SDK Application and RAS (Crystal Server 2011 e.t.c) as the existing fully established Application server which I simply pool for information.
    Thank you for your patience and advice,

  • Syntax Error with EXPORT statement in ECC 6

    Hi All,
    I have one issue with EXPORT statement syntax.
    I have declared data like below:
    DATA: BEGIN OF mem_id,
              mandt LIKE sy-mandt,
              uname LIKE sy-uname,
              modno LIKE sy-modno,
            END OF mem_id.
    export the memory id
        EXPORT E_VBKOK XANZPK TEXTTAB XBOLNR TO MEMORY ID MEM_ID.
    When I am checking the syntax error i am getting like "MEM_ID" must be a character-type field (data type C, N, D or T). by "INTERFACE". by "INTERFACE". "INTERFACE". by "INTERFACE". by "INTERFACE".
    I know this statement would be like IMPORT ITAB TO JTAB FROM MEMORY ID 'table'. So I have written like below
    EXPORT E_VBKOK XANZPK TEXTTAB XBOLNR TO MEMORY ID 'MEM_ID'. But still it is throwing an error.
    Can you please let me know how can I resolve this?
    Regards,
    Jyothi CH.

    Hi Jyothi,
    data: l_var type string.
    concatenate '6' '8' into l_var separated by space.
    export l_var to memory id 'BB'.
    Here we have to declare the type(structure) for l_var not for BB
    and in another program
    data:l_var type string.
    import l_var from memory id 'BB'.
    write : l_var.

  • Logical standby DB with unsupported datatype

    Hello,
    Has anyone setup the following Data Guard Configuration, although it is not recommended by Oracle:-
    Setup a logical standby DB from a Primary DB with unsupported Data Types. I'm need (and want) to save time and effort to configure a database for the purpose of Reporting and avoid Oracle Streams or Change Data Capture or even the new middleware Product Data Integrator
    Data is sent from the Productive DB, and with logical standby DB, I (hope) can still get it to run even with unsupported data types using DBMS_LOGSTDBY.SKIP procedure, to skip unwanted and unsupported attributes in the primary DB.
    I would appreciate any comments and experience using Logical Standby DB for Reporting Purposes.
    regards
    Sahba

    Hello Anantha,
    thanks for your reply.
    unfortunately the Productive database uses dartatypes such as DMSYS.SDO_GEOMERTY.
    these datatypes are not supported by the Logical standby DB.
    I thought, i could skip those tables with such datatypes when applying redodata in the logical standby db, dbms_logstdby.skip procedure allow such mechanism.
    the reason why i need logical stndby db ist due to READ/WRITE during apply process. as I mentioned, i need an up-to-date replica of the productive db for reporting purposes, without such tables with unsupported datatpes. because these are tables are not part of the reporting procedure, i thought of skipping them from appling in logical stndby db .
    so, has anyone have had any complications with Logical stndby db even when using dbms_logstdby.skip procedure?
    are there any other problems encountered with logical stndby db to share here?
    thanks
    regards
    Sahba

  • Logical Standby recover with RMAN

    Hi All,
    I have a test environment with Primary DB Server, Physical Standby and Logical Standby.
    The Logical Standby DB (cur_log_stdb) is backed up every evening by RMAN and I have a question:
    If I recover my Logical Standby DB from backup and switch replication to new Logical Standby DB (new_log_stdb) it will work or not?
    My steps e.g.:
    1. Make a new server for my new_log_stdb and repair structure of catalogs;
    2. Repair listener.ora and tnsnames.ora files from cur_log_stdb to new_log_stdb;
    3. Restore DB with RMAN from backup to new_log_stdb;
    4. On cur_log_stdb execute "alter database stop logical standby apply";
    5. Change a DNS name from cur_log_stdb to new_log_stdb;
    6. On new_log_stdb execute "alter database start logical standby apply immediate";
    I'm not sure that archivelogs will apply to the new_log_stdb for period since rman backup was created.
    But if this plan won't work how can I restore Logical Standby DB from RMAN backup and resume replication from Primary?
    Configuration:
    Oracle Linux 6.4
    Oracle Database 11.2.0.3
    Primary and Physical with Data Guard

    Hello;
    The only way to know for sure is to test it. You are asking somebody you don't know to confirm a recovery test for you. You have to perform the test yourself to be certain.
    If your plan does not work you can always rebuild the Standby.
    Best Regards
    mseberg

  • Flash CC error with exported mov

    I'm trying to export my animation as a mov file and it does so successfuly. Then when I try to open it with Quicktime it says there is an error and can not open it. The error states "The movie can't be opened because the file is not in a format that QuickTime Player understands."
    On top of that, when Adobe Media Encoder CC opens up it also states there is an error with the file.
    I am exporting as a video and haven't chosen any settings that are out of the ordinary. Why is the export not working?
    D

    Hi Sarah,
    I have just tried the Video Export of the file that you have provided vincecamuto-600x150-2.fla and it looks like it is working as expected.
    I have used Flash CC 2014 and Windows 7 and QuikTime Player 7.7.2
    Please let me now your Flash version and OS details if they are different from the one mentioned above.
    Have posted the exported video at http://adobe.ly/1m3CYpf
    Thanks!
    Mohan

  • Error with export | ORA-4063

    Hi all,
    I am facing an issue with export backup of oracle database version 10.2.0.1 on RHEL 5 server.
    export terminates with warnings and the export log shows following error:
    EXP-00008: ORACLE error 4063 encountered
    ORA-04063: package body "SYS.DBMS_CDC_UTILITY" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "SYS.DBMS_CDC_UTILITY"
    However, the tables get exported and this error is thrown only while exporting procedural objects and actions:
    DBA registry shows component OLAP and OLAP catalog are invalid.
    Alert log repeatedly shows the following errors:
    ORA-12012: error on auto execute of job 42568
    ORA-04063: ORA-04063: package body "SYS.DBMS_LOCK" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "SYS.DBMS_LOCK"
    ORA-06512: at "EXFSYS.DBMS_RLMGR_DR", line 2907
    ORA-01403: no data found
    ORA-06512: at line 1
    Have tried reinstalling OLAP by using the following method:
    deinstall:
    SQL> conn / as sysdba
    ----> Remove OLAP Catalog
    SQL> @?/olap/admin/catnoamd.sql
    ----> Remove OLAP API
    SQL> @?/olap/admin/olapidrp.plb
    SQL> @?/olap/admin/catnoxoq.sql
    ----> Deinstall APS - OLAP AW component
    SQL> @?/olap/admin/catnoaps.sql
    ----> Recompile everything
    SQL> @?/rdbms/admin/utlrp.sql
    reinstall:
    SQL> conn /as sysdba
    SQL> @?/olap/admin/olap.sql SYSAUX TEMP;
    Still OLAP and OLAP catalog are invalid.
    There are only 6 objects invalid under sys schema(including dbms_lock package) and 4 objects invalid under
    olapsys schema.
    Is this got something to do with sequences?
    However there is no issue on the application level and no complaints from users.
    Any help would be appreciated.
    Thanks in advance!!
    Rahul Singh.

    Have you run utlirp.sql and utlrp.sql ? These MOS Docs may help
    762658.1 - How To Resolve ORA-39127 "ORA-29532: Java Call terminated" During Datapump Export
    296187.1 - How To Manually Install Oracle OLAP into a 9i, 10g or 11g database After the DB Has Been Created
    Srini

  • [HELP] How to solve this error on export dump file?

    Dearsir,
    I run oracle 9.2.0.4 on RHEL3 update 2. I always had this error messege when I 'm trying to make dump file from client using windos 2000.
    this message is also apprear when I try to make dump file from linux as well.
    hope somebody tell me the way to solve this, coz I'm knew on linux world...
    C:\>exp test/test@tesdb file=tesdb11072006.dmp
    Export: Release 9.2.0.1.0 - Production on Tue Jul 11 18:20:55 2006
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    server uses WE8ISO8859P1 character set (possible charset conversion)
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user TEST
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user TEST
    About to export TESTs objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    EXP-00056: ORACLE error 19206 encountered
    ORA-19206: Invalid value for query or REF CURSOR parameter
    ORA-06512: at "SYS.DBMS_XMLGEN", line 83
    ORA-06512: at "SYS.DBMS_METADATA", line 345
    ORA-06512: at "SYS.DBMS_METADATA", line 410
    ORA-06512: at "SYS.DBMS_METADATA", line 449
    ORA-06512: at "SYS.DBMS_METADATA", line 1156
    ORA-06512: at "SYS.DBMS_METADATA", line 1141
    ORA-06512: at line 1
    EXP-00000: Export terminated unsuccessfully
    C:\>
    I'm waiting..
    take care
    Regards
    ER

    Seems to be a "known" problem. Check for invalid views. See Metalink Note:206313.1

  • Impact on import if there is a block corruption error in exported dump file

    Hi All
    I got an exported file(exp utility) from production database and in the log it is showing the error
    EXP-00056: ORACLE error 1578 encountered
    ORA-01578: ORACLE data block corrupted (file # 29, block # 387036)
    ORA-01110: data file 29: '+ORAFILES/prod/datafile/data.1750.715846723'
    ORA-26040: Data block was loaded using the NOLOGGING option
    There were two such errors. At the end of the export it is giving the message "Export terminated successfully with warnings"
    I want to if I do an import using imp will there be any issues with the import.
    will the import complete successfully.
    The database version is 10.2.0.2.0
    Regards,
    Samrat
    Edited by: Samrat Kumar on May 18, 2010 11:23 PM

    You may try the import and hope it works out, but you and your DBA should address the ORA-26040 error message. Identify the segments that relate to both errors you encountered (using file id and block number) and figure out the what you may want to do if those are not index segments. Here is a link to a similar issue:
    ORA-26040: Data block was loaded using the NOLOGGING option
    Good Luck

  • Error while Exporting dump using Expdp

    Hi Guru's
    When i started to export schema by giving the following command
    staging/********@XXXXX schemas=abcdirectory=DUMPDIR dumpfile=tnfhc_291210.dmp logfile=exp_tnfhc_291210.log schema is not exported successfully. it started to give the following error.
    ORA-31694: master table "STAGING"."SYS_EXPORT_SCHEMA_10" failed to load/unload
    ORA-19502: write error on file "/home/oracle/dumpdir/tnfhc_291210.dmp", blockno 263773 (blocksize=4096)
    ORA-27072: File I/O error
    Additional information: 4
    Additional information: 263773
    Additional information: 131072
    Job "STAGING"."SYS_EXPORT_SCH
    {code}
    Kindly help to take backup..
    Thanks & Regards
    Sami.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    ORA-19502: write error on file "/home/oracle/dumpdir/tnfhc_291210.dmp", blockno 263773 (blocksize=4096)
    ORA-27072: File I/O error
    Additional information: 4some sort of Operating System error; like volume is 100% full
    what clues exist in OS log files?

  • Generating error with export to PDF action

    Hi,<br>
    After we have implemented Nakisa OrgChart Accelerated (live solution) successfully, we installed export pack 3.0 correctly. If we want to export an OrgChart to PDF a message pops up saying that an error occurred while generating the file.<br>
    What is/can causing this?<br>
    Thanks in advance,<br>
    Bruno

    Hi Bruno,
    I know that the PDF functionality only works after Service Pack 1.0 has been installed because of some content in the CSS files in the Themes folder. I am unsure if implementing this element or the whole of Service Pack 1.0 would fix this for Accelerated because of potential style changes, but you could try it. I believe the files are orgChartTheme.css and NOMSStyle1.css.
    I hope that helps.
    Luke

  • Error with Export Scorecard Functionality

    All -
    When I try to utilize the 'Export' scorecard functionality in SSM 7.0, I get the following error message:
    "Error opening Excel Automation Server can't create object.  This can be cause by:
    -Application is not installed on your machine
    -Browser security does not allow ActiveX scripts
    -You were prompted to run ActiveX and you said No,
    If that is the case, close all browser instances and reopen"
    Does anyone know why?  Are there specific internet explorer settings that I should look at for fixing this issue?
    Jason

    Jason,
    Active X is required to run certain functions of SSM. In Outlook > Tools > Internet Options > Security (tab) > Internet > Custom Settings
    There are a number of different Active X settings. Change all of them to ENABLE - EXCEPT FOR THE FOLLOWING:
    - Download signed Active X controls - change to PROMPT
    - Download unsigned Active X controls - change to PROMPT
    - Initialize and script Active X controls not mark as safe - leave as DISABLE
    They other possible issue would be not having Excel installed. Just to mention that if  you are working at the server level, there would have to be Excel installed at the server as well. Probably not your issue, but bring it up since often server won't have the full compliment of supporting applications installed at that level.
    Regards,
    Bob

  • EA1 - Error with exporting output to xls

    Hi,
    I've experiencing error when I try to export output to xls format.
    Error data showed below.
    OS Win XP Pro SP2
    DB Oracle 11g
    Export Data -> xls
    Output -> Clipboard or File
    java.lang.NumberFormatException
         at java.math.BigDecimal.<init>(BigDecimal.java:368)
         at java.math.BigDecimal.<init>(BigDecimal.java:647)
         at oracle.dbtools.raptor.format.ExcelFormatter.printColumn(ExcelFormatter.java:170)
         at oracle.dbtools.raptor.format.ui.TableFormatterWrapper.print(TableFormatterWrapper.java:114)
         at oracle.dbtools.raptor.format.ResultsFormatter.print(ResultsFormatter.java:173)
         at oracle.dbtools.raptor.format.ResultsFormatter$1.doWork(ResultsFormatter.java:133)
         at oracle.ide.dialogs.ProgressRunnable.run(ProgressRunnable.java:161)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:615)
         at java.lang.Thread.run(Thread.java:595)
    Message was edited by:
    msutic

    This bug was logged and fixed last week, but did not make the build you have. This fix will be in the next Early Adopter drop. I am unable to give you the bug number at this point.
    Regards
    Sue

Maybe you are looking for