Table resize failing

I do an insert table and a 2x2 table appears. If I attempt to
resize it by placing the mouse over the right-most grid line,
clicking, and dragging, it gives me an error dialog with the title
Adobe Flash Player 9. The text inside is:
An Actionscript Error has occurred
Assertion failed: in is not a recognized units value
at global/vu.core.util::Assert()
at vu.editor.app.util::UnitsFormatter/formatForUnits()
at vu.editor.app.util::UnitsFormatter/format()
at vu.editor.display.drag::SizeReport/updateLabel()
at vu.editor.display.drag::SizeReport()
at vu.editor.display.drag::TableResizeHandler()
at vu.editor.display::MouseHandler/onMouseDown()
Any idea what I'm doing wrong? This occurs both on Firefox 3
and Internet Explorer 6. Version is 9,0,115,0.
Thanks.

Welcome to Buzzword, we hope you enjoy using Buzzword as much
as we do.
I am glad to hear that the problem was resolved once you
updated Flash.
Yes, table columns can be easily resized, and a good
reference for explaining this can be found in the Buzzword Help
under
Using
Tables.
Let us know how you make out with tables.

Similar Messages

  • I am trying to resize disk space on parallels 6 for windows XP under configure Hardrive and I get the error resizing failed unable to resize last volume the file system of this volume might be damaged or not supported?  I am on a Mac using Parallels 6

    I have been trying to increase my disk space for windows xp on my Imac and I am running parallels 6.  before opening windows I go into configure in parallels and open the hard drive and try to move the allotted disk space from 32 gig to 64 or any other increased gig and then apply and I get the error message: resizing failed unable to resize last volume.  The file system of this volume might be damaged or not supported.  How do I increase the size??  I just also did a disk repair utility with Apple on the Apple side of my IMAC.  Please Help!!   I had uninstalled SQL server on the windows side and needed to uncompress files to install this and then I ran short on disk space.

    This sounds to me that your Parallels XP file system is corrupted and not the OSX file system.
    Have you checked the XP file system while running the Parallels XP yet ?
    However, it would be better to ask such question in the Parallels Forum http://forum.parallels.com/
    Stefan

  • Creation of secondary indexes for table "RSBATCHCTRL_PAR" failed

    Hi ,
    We have installed EHP1 on our BI7.0 system successfully, later we are trying to apply SPS01 for this EHP but we got the follwoing error during TBATG conversion.
    2 EGT092 Conversion of table "RSBATCHCTRL_PAR" was restarted
    2 EGT241 The conversion is continued at step "6"
    2 EGT246 Type of conversion: "T" -> "T"
    2 EGT240XBegin step "RSBATCHCTRL_PAR-STEP6":
    4 EGT281 sql:
    4 ED0314 CREATE
    4 ED0314 INDEX [RSBATCHCTRL_PAR~DB] ON [RSBATCHCTRL_PAR]
    4 ED0314 ( [JOBNAME] ,
    4 ED0314 [JOBCOUNT] ,
    4 ED0314 [SERVER] ,
    4 ED0314 [HOST] ,
    4 ED0314 [WP_NO] ,
    4 ED0314 [WP_PID] ,
    4 ED0314 [PROCESS_TYPE] )
    4 ED0314 WITH ( ONLINE=OFF )
    4 ED0314 ON [PRIMARY]
    2 ED0314 Line 1: Incorrect syntax near '('.
    3 EDA093 "DDL time(___1):" ".........6" milliseconds
    2EEGT236 The SQL statement was not executed
    2EEDI006 Index " " could not be created completely in the database
    2EEGT221 Creation of secondary indexes for table "RSBATCHCTRL_PAR" failed
    2EEGT239 Error in step "RSBATCHCTRL_PAR-STEP6"
    2 EGT253XTotal time for table "RSBATCHCTRL_PAR": "000:00:00"
    2EEGT094 Conversion could not be restarted
    2 EGT067 Request for "RSBATCHCTRL_PAR" could not be executed
    1 ED0327XProcess..................: "ferrari_12"
    1 ED0302X=========================================================================
    1 ED0314 DD: Execution of Database Operations
    1 ED0302 =========================================================================
    1 ED0327 Process..................: "ferrari_12"
    1 ED0319 Return code..............: "0"
    1 ED0314 Phase 001................: < 1 sec. (Preprocessing of TBATG)
    1 ED0314 Phase 002................: < 1 sec. (Partitioning)
    1 ED0309 Program runtime..........: "< 1 sec."
    1 ED0305 Date, time...............: "03.06.2009", "12:47:21"
    1 ED0318 Program end==============================================================
    1 ETP166 CONVERSION OF DD OBJECTS (TBATG)
    1 ETP110 end date and time   : "20090603124721"
    1 ETP111 exit code           : "8"
    1 ETP199 ######################################
    System properties:
    SAP - BI7.0 with EHP1
    Database - MSSQL 2000
    OS - Windows2003
    Please suggest.
    Thanks in advance,
    Pavan.

    > We have installed EHP1 on our BI7.0 system successfully, later we are trying to apply SPS01 for this EHP but we got the follwoing error during TBATG conversion.
    > 2 ED0314 Line 1: Incorrect syntax near '('.
    > 3 EDA093 "DDL time(___1):" ".........6" milliseconds
    > 2EEGT236 The SQL statement was not executed
    This is a known problem with SQL Server 2000, see
    Note 1180553 - Syntax error 170 during index creation on SQL 2000
    I highly suggest upgrading to SQL Server 2005 or 2008.
    Markus

  • Cell editor removed when table resized

    I'm using Java 1.5.0_06 in my application. I have a JFrame which contains a JTable. I use FormLayout (which is like GridBagLayout). When the frame resizes, the table resizes too.
    When I enter edit mode in a cell of the table and resize the frame (and the table), the cell exits edit mode. The editor of the cell is removed when the table is resized which causes the value that I had entered in the cell to be lost.
    Is there a way to stop cell editing when the frame is resized instead of the cell just exiting edit mode.
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.table.DefaultTableModel;
    import com.jgoodies.forms.factories.FormFactory;
    import com.jgoodies.forms.layout.CellConstraints;
    import com.jgoodies.forms.layout.ColumnSpec;
    import com.jgoodies.forms.layout.FormLayout;
    import com.jgoodies.forms.layout.RowSpec;
    public class ResizableTableTest extends JFrame {
         final JScrollPane _scrollPane;
         public static void main(String[] args) {
              ResizableTableTest frame = new ResizableTableTest();          
                frame.addWindowListener(new WindowAdapter() {
                     public void windowClosing(WindowEvent e) {
                          System.exit(0);
                frame.setSize(451, 340);
                frame.setVisible(true);
         public ResizableTableTest() {
              super();
              getContentPane().setLayout(new FormLayout(
                   new ColumnSpec[] {
                        new ColumnSpec("default:grow(1.0)"),
                        FormFactory.RELATED_GAP_COLSPEC,
                        FormFactory.DEFAULT_COLSPEC},
                   new RowSpec[] {
                        new RowSpec("default:grow(1.0)"),
                        FormFactory.RELATED_GAP_ROWSPEC,
                        FormFactory.DEFAULT_ROWSPEC,
                        FormFactory.RELATED_GAP_ROWSPEC,
                        FormFactory.DEFAULT_ROWSPEC,
                        FormFactory.RELATED_GAP_ROWSPEC,
                        FormFactory.DEFAULT_ROWSPEC,
                        FormFactory.RELATED_GAP_ROWSPEC,
                        FormFactory.DEFAULT_ROWSPEC}));
              _scrollPane = new JScrollPane();
              getContentPane().add(_scrollPane, new CellConstraints(1, 1, CellConstraints.FILL, CellConstraints.FILL));
              addTableToScrollPane();
         private void addTableToScrollPane() {
               JTable table = new JTable();
             DefaultTableModel model = (DefaultTableModel)table.getModel();
             table.setRowSelectionAllowed(false);
             table.setCellSelectionEnabled(true);
             //Add some columns
             model.addColumn("column A");
             model.addColumn("column B");
             model.addRow(new Object[]{"item1", "apple"});
             model.addRow(new Object[]{"item2", "banana"});
             model.addRow(new Object[]{"item3", "carrot"});
             model.addRow(new Object[]{"item1", "grape"});        
             _scrollPane.setViewportView(table);          
    }thanks,

    I would assume that on the resize of the table the
    editing cancelled event is being fired...
    You could try overriding the method in the JTable and
    when it gets fired, fire the editing stopped method
    instead... not sure whether that will work thoughI tried that, but it didn't help. On searching for this problem, I saw a bug report on this very problem.
    Here's info on a related bug in java:
    Cell editing does not complete when JTable loses focus
    Lost newly entered data in the cell when resizing column width
    And here's an interesting article:
    Why Editable Table Cells Are Evil
    Message was edited by:
    petes1234

  • ODI-1228: Task PRD-create-populate-table (Procedure) fails on the target

    I get this error when trying to run PRD-create-populate-table from Oracle by example ODI
    ODI-1228: Task PRD-create-populate-table (Procedure) fails on the target ORACLE connection ODI_DATA_SERVER.
    Caused By: java.sql.SQLSyntaxErrorException: ORA-02264: name already used by an existing constraint
    ODI-1228: Task PRD-create-populate-table (Procedure) fails on the target ORACLE connection ODI_DATA_SERVER.
    Caused By: java.sql.SQLSyntaxErrorException: ORA-02264: name already used by an existing constraint
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:91)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1035)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:953)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1224)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3467)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1350)
         at com.sunopsis.sql.SnpsQuery.executeUpdate(SnpsQuery.java:665)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.executeUpdate(SnpSessTaskSql.java:3218)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execStdOrders(SnpSessTaskSql.java:1785)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java:2805)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2515)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:534)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:449)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1954)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:322)
         at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:224)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:246)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:237)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:794)
         at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:114)
         at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
         at java.lang.Thread.run(Thread.java:662)

    the specified constraints name is still used. Please check if you are having the order correctly ie drop table , create and insert and check if the table is dropped , if still the constraints is there then drop it from database

  • Is there a way to stop table resizing? 

    Is there a way to prevent Dreamweaver from resizing tables
    automatically, even after you've told it that you want the table to
    be only, say, 800 pixels wide? Currently, if you make a mistake and
    you paste a long URL in a table, it resizes the table, rather than
    just cutting it off or otherwise prompting you about what it
    intends to do. Likewise, if you insert a graphic that's too big for
    the table, rather than just cropping the graphic and letting you
    know you need to make adjustments, it screws up the table
    permanently. Likewise, anytime you insert anything in a column, it
    resizes all the other columns, even if what you inserted fits
    perfectly and does not require resizing. Lately, the only thing I
    use Dreamweaver for is editing HTML. I find that, because of its
    automated "features" that screw everything up and make it
    impossible to fix, it's actually faster in the long run, to write
    the code by hand and avoid the Design mode like the plague. It's
    like throwing a firecracker into your HTML. Here's to hoping
    someone can tell me how to make Dreamweaver tables behave.

    Nope. The closest you can get is border-spacing, but it's
    poorly supported.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "crash" <[email protected]> wrote in message
    news:[email protected]...
    > can't you set that with margins? I'm kinda wincing when
    I say that,
    > but.....unless you're using borders, in which padding
    would work, margins
    > *might* do the trick.
    >
    > sounds like a hack, though, even if it works. i bet it'd
    break under
    > stress...
    >
    > good call..
    >
    > "Murray *ACE*" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> Cellspacing is one....
    >>
    >> --
    >> Murray --- ICQ 71997575
    >> Adobe Community Expert
    >> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >> ==================
    >>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >> ==================
    >>
    >>
    >> "crash" <[email protected]> wrote in
    message
    >> news:[email protected]...
    >>> IMO, it sure is.
    >>>
    >>> I don't think there's an attribute you can set
    in a table in HTML that
    >>> you can't set via CSS, and in several cases
    there's more.
    >>>
    >>> I did a quick workup not long ago as an example
    for somebody at work. I
    >>> had no problem controlling the tables with CSS,
    and by doing that I
    >>> allowed myself to develop new looks for the site
    by just editing one
    >>> file and changing the CSS link. (or re-naming my
    other files).
    >>>
    >>>
    http://cdcdigital.com/two/index-table.php
    >>>
    >>> HTH,
    >>>
    >>> Jon
    >>>
    >>> BTW - I *did* see a wdith=100 in there when I
    was just checking, so
    >>> please forgive any other mistakes.
    >>> "Alan Smithee Jr." <[email protected]>
    wrote in message
    >>> news:[email protected]...
    >>>>> yup, CSS. ;o)
    >>>>
    >>>>
    >>>> Thanks for that informative reply. :.)
    >>>>
    >>>> But seriously...Yes, CSS is ANOTHER way but
    why is it a SUPERIOR way?
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • DML error table intermittently fails to generate error handling in package

    Hi!
    In OWB 11gR2 (11.2.0.1), we're seeing an issue when setting the DML Error table name on a target table. Sometimes, mostly on older and complex mappings, the error handling logic does not get generated when we deploy the mapping, and nothing is populated in the error tables for error conditions, though the errors display as warnings in the OWB UI.
    When I create a new mapping that is very simple - one table loading another - setting the DML Error table name always results in errors being put in the error table. That's great, but that doesn't help us with our more-complex mappings that aren't logging errors.
    We can't determine the cause of the issue. I can't see a difference in the configuration of the mappings that work and don't work. Generation Mode is All Operating Modes. Default Operating Mode is Set based fail over to row based. We've generated the error table using DBMS_ERRLOG.CREATE_ERROR_LOG. The target tables do not have primary keys.
    I've tried synchronizing the target table operator in the mapping as another forum thread suggested. No change.
    Has anyone else seen this issue or know of a workaround?
    Thanks,
    Jayce

    Which logic did you talk about ?
    For the version 10, you will find the error table more on the insert statement such as:
    INSERT INTO "TSALES"
      ("PROD_ID",
      "SALES"."AMOUNT_SOLD" "AMOUNT_SOLD"
    FROM
      "SALES"  "SALES"
    LOG ERRORS INTO TSALES_ERR (get_audit_detail_id) REJECT LIMIT 50;Come from here:
    http://blogs.oracle.com/warehousebuilder/2007/08/set_based_errors_dml_error_log.html
    Then check the insert SQL generated.
    Cheers
    Nico

  • Maintain Multi-Lingual Tables Option Fails On Cznlins.Sql

    Hi all.
    I am trying to install Albanian language in a 11.5.10.2 fresh installation.
    I applyed all the neccesary patches to come to the NLS apply patch stage.
    I followed the link
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=316804.1
    for applyeing NLS Patch. I have to run the AD Utility Maintain Multi-Lingual Tables ,before applying NLS.
    But the workers fail on Cznlins.Sql.
    The worker's log shows:
    Start time for file is: Wed Jun 18 2008 14:13:08
    sqlplus -s APPS/***** @/oracle/prodappl/cz/11.5.0/sql/CZNLINS.sql
    PL/SQL procedure successfully completed.
    MESG
    LANGUAGE = AMERICAN
    PACKAGE= CZ_LOCALIZED_TEXTS_PKG
    SQLERRM= ORA-01400: cannot insert NULL into ("CZ"."CZ_LOCALIZED_TEXTS"."CREATED_
    BY")
    select to_date('ERROR')
    ERROR at line 1:
    ORA-01858: a non-numeric character was found where a numeric was expected
    Time when worker failed: Wed Jun 18 2008 14:13:08
    My question are:
    1.) Has anyone encountered this problem before.On the specific Cznlins.Sql file?
    2.) Shall i skip Maintain Multi-Lingual Tables, install the NLS, and run Maintain Multi-Lingual Tables after the installation?Do you recommend me to do this?
    Thanks in advance, Soni

    Hi hsawwan
    i am sending you the Road Map of patches i have applied,in my OEL 4 server enviroment.
    1.     Apply patch 4320012
    2.     Apply patch 6502082
    3.     Apply patch 6323691
    4.     Apply patch 6831988
    5.     Apply patch 4948577
    6.     Apply patch 5713544
    7.     Apply patch 4261542
    8.     Apply patch 5216496
    9.     Apply patch 5753922
    10.     Apply patch 6195759
    11.     Apply patch 5938515
    12.     Apply patch 3830807
    13.     Apply patch 4586086
    14.     Apply patch 4888294
    15.     Apply patch 5989593
    16.     Apply patch 3218526
    17.     Apply patch 3761838
    18.     Apply patch 4206794
    19.     Apply patch 5903765
    20.     Apply patch 3865683
    21.     Apply patch 4619025
    22.     Apply patch 6372396
    23.     Apply patch 4653225
    24.     Installation of Oracle 10g R2 database,software only(different home).
    25.     Installation of Oracle 10g R2 companion cd products.
    26.     Installation of Oracle 10g R2 pachset2
    27.     Apply patch 5257698
    28.     Upgrading to Oracle 10g R2
    29.     Configuring AutoConfig on db tier
    30.     Apply patch 5753621
    31.     Prepare for NLS(failed on AD Maintain Multi-Lingual Tables on CZNLINS.sql file)
    Is this the right way, before applying NLS, for albanian language?
    Do you think i have any conflicts in my list of patches?
    Thanks, Soni

  • Probelm with InDesign CS5 table resize

    I am having problems resizing tables in InDesign CS5.
    The width can be in- and decreased, however the height just won't move up nor down when pulling in the lower right corner nor anywhere else on the columns baseline.
    Anybody else having this problem?
    Is it a bug or maybe just me not understanding things correctly in the help section...?
    Any input is appreciated so knock yourselves out. :-)

    Hey again!
    I figured it out. Just made a complete new document and tried again.
    This time everything works as it's supposed to.
    I assume the problem has something to do with the fact that I overtook the job I am currently working on from a colleague and thus there was some form for corruption or similar.
    At least when starting from a fresh it's all working fine again.
    But you just gave me the idea to check this possibility so I rated your answer as helpful.
    However I have no clue what to do with the old document in order to change that. I guess it's one of those InDesign mysteries that so often occur but I also assume that copying and pasting will be sort of a solution..., well here and now at least.
    So unless you know what could be the reason for the corruption I'll thank you very much for your time and kind help.

  • Import Schema with tables resized

    I've created a new database and would like to import a schema from another database. I want everything from the schema I'm importing however I want to resize the tables.
    I was wondering what would be the best way to handle this. I can create the tables first with the new specs and then import the schema with the "ignore=yes" option. I'm not sure however if this will cause errors. Any suggestions?
    Thanks.

    Hi,
    If you exported data with "compress=y" option (which is the default) tables would be automatically reorganized (import create one extent = total actual size).
    Anyway, if you need a different size for your tables, the procedure you posted is correct.
    Paolo

  • Table Statistics failed during Import

    Hi All,
    I am trying to import an existing schema in Oracle 10g.
    I am using the impdp utility.
    The export dump consists of the complete schema (metadata and data).
    But it failed with the following logs.
    Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    ORA-39125: Worker unexpected fatal error in KUPW$WORKER.PUT_DDLS while calling DBMS_METADATA.CONVERT []
    ORA-06502: PL/SQL: numeric or value error
    LPX-00007: unexpected end-of-file encountered
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPW$WORKER", line 6235
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    1945A21C 14916 package body SYS.KUPW$WORKER
    1945A21C 6300 package body SYS.KUPW$WORKER
    1945A21C 12279 package body SYS.KUPW$WORKER
    1945A21C 3279 package body SYS.KUPW$WORKER
    1945A21C 6889 package body SYS.KUPW$WORKER
    1945A21C 1262 package body SYS.KUPW$WORKER
    1CD814AC 2 anonymous block
    Job "THHIS"."SYS_IMPORT_FULL_02" stopped due to fatal error at 11:47:38
    I had then used the parameter EXCLUDE=STATISTICS and then the import was successful.
    I would like to the significance of this STATISTICS.
    I mean would EXCLUDE=STATISTICS always be ok?
    I have exported and imported the scheme as a user and not as sysdba. Does this make any difference?
    any suggestion would be highly appreciated.
    Thanks,
    Tanuja

    Hi,
    See related threads here:
    ORA-39125 & DBMS_METADATA
    Error ORA-39125 and ORA-04063 during export for transportable tablespace
    ORA-39125: Worker unexpected fatal error in string while calling string [string]
    Cause: An unhandled exception was detected internally within the worker process for the Data Pump job while calling the specified external routine. This is an internal error. Additional information may be supplied.
    Action: If problem persists, contact Oracle Customer Support.
    Hope this helps . . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference"
    http://www.rampant-books.com/book_2005_1_awr_proactive_tuning.htm

  • Get data source schema - List tables has failed

    Hi, I am trying to expose tables from a SQL Azure Database to OData feed on power bi's data source setting and I got the following alert:
    Get data source schema - List tables and views has failed.  Please check Windows Event Log for Gateway Instance (InstanceName1) errors.
    Thanks in advance.

    Hi,
    Thank you for your question.
    I am trying to involve someone familiar with this topic to further look at this issue.
    In the meantime please have a check on the below link and check if it helps.
    http://whitepages.unlimitedviz.com/2013/09/power-bi-working-with-the-data-management-gateway/
    https://support.office.com/en-us/article/Create-a-Data-Source-and-Enable-OData-Feed-in-Power-BI-Admin-Center-9dbd3091-8961-4564-adf6-2a3aeff0b2b4?ui=en-US&rs=en-US&ad=US
    Regards,
    Mekh.

  • Setup tables ,load failed . Please help !!!

    Hi, I have newly created a setup for sd infocube and have completed 5 delta loads from BI. But now my 6th delta load fails, and the data in my cube is lost. I have a queued delta setup .So now
    1) delete the init flag.
    2) delete all the setup table data with LBWG.
    3) FILL the setup tables again OLI7BW newly.
    4) Now if i do a full upload so will i get all my previous data ( all data till my 5th delta load)
    5) by doing a full upload will my 6th delta load also be included in the setup tables, since im refilling the setup  tables.
    What should I do if its an ODS , is it the same case for ODS also ?

    Hi.......
    Are u sure data is lost.......hav u repeated the failed load.........look if u delete the failed request from the target after making the QM status forcefully red in the IP Monitor>> Status tab..........then the init pointer will set back........after that if u repeat the load...........then the system will ask u for Repeat delta...........means that it will pick all the missed records.........that were not loaded due to the failed load........
    Now if u hav deleted the failed load without making the QM status red..........but have'nt repeated the load.........then nothing to worry about..............just make the QM status forcefully red........then repeat the load..............system will ask u for repeat delta................but if u hav deleted the request without making the QM status red......and also hav repeated the load..............then ur delta mechanism will get corrupted and data will be lost.........
    In that case......
    1)) delete the init flag.
    2) delete all the setup table data with LBWG.
    3) FILL the setup tables again OLI7BW newly........with selection...........to get the lost records....
    4) After that either do full upload......followed by init without data transfer.................or simply do init with data transfer........it will pick records.as well as set the init pointer...........in that case........no need to do full upload......
    In case of ODS............never do full upload.........bcoz an ODS does'nt support full upload and delta upload parrallely.......then ur ODS activation will fail............in this case instead of full upload..........u hav to do full repair........same thing.........just go to IP scheduler >> Scheduler tab >> Repair full request>>check the box.............then go ahead.......as u do in case of full upload...........schedule the load..................if u do full upload....then again u hav to convert the full upload request to full repair request....using the program :RSSM_SET_REPAIR_FULL_FLAG .......
    Hope this helps......
    Regards,
    Debjani....

  • Java EE5 Tutorial -  'ant create-tables' BUILD FAILED

    Hi,
    Appologies, this is quite a begineers question, hopefully it's an easy one to answer. I've searched for the last few hours regarding this issue,
    trying things and searched the forums here at sun with no similar issue. As you can see below, I cannot create the tables for the bookstore1 application using 'ant'.
    I am getting a FileNotFoundException however the delete.sql and tutorial.sql files are at this location C:\javaee\javaeetutorial5\examples\common\sql\javadb\
    I have also made sure that the files have read and write access. I know their could be some permissions issues using vista if I installed at C:/ProgramFiles, so everything is in C:/
    Another thing I have tried is using the ant command directly even though the PATH is in my enviroment variables, just incase another version was conflicting, as I read about people having such issues.
    "C:\Sun\AppServer\lib\ant\bin\ant create-tables" => This gave the same error as below. Im not sure what other information may help you help me here, so just ask.
    Annoying thing is, this example worked fine when I set up the environment on my work laptop (which I have no access to now) earlier, I didn't have this issue.
    Thanks for your help.
    /Paul.
    c:\javaee\javaeetutorial5\examples\web\bookstore1>ant create-tables
    Buildfile: build.xml
    -pre-init:
    init:
    check:
    tools:
    start-db:
         [exec] Database already started on host localhost, port 1527.
         [exec] Command start-database executed successfully.
    delete-tables:
          [sql] Executing file: C:\javaee\javaeetutorial5\examples\web\bookstore1\=C:\javaee\javaeetutorial5\examples\common\sql\javadb\delete.sql
    BUILD FAILED
    C:\javaee\javaeetutorial5\examples\bp-project\database-ant.xml:48: java.io.FileNotFoundException: C:\javaee\javaeetutorial5\examples\web\bookstore1\=C
    :\javaee\javaeetutorial5\examples\common\sql\javadb\delete.sql (The filename, directory name, or volume label syntax is incorrect)
    Total time: 21 seconds
    c:\javaee\javaeetutorial5\examples\web\bookstore1>

    Hi,
    This is due to the path problem that u specified in build.properties file for javaee.tutorial.home= variable. Use / instead of \. Problem will solved.
    Thanks
    Amalka

  • Holding tables resizing occasionally

    So I've been building this website and my main tables keep
    changing sizes. It's not even usually due to my content expanding
    it either as far as I know.
    Sometimes it will happen simply from my stretching all three
    of my main tables downward to make more space to work with. I can
    even strech the main/root table just fine, but then I'll expand the
    second embedded one to meet the height of the root table and viola,
    my whole site gets wider by about 3 pixels, destroying my uniform
    look I've spent so many hours trying to achieve.
    It's kind of hard to describe exactly what it looks like, so
    if you want to take a look at it and give me advice that would be
    wonderful. Also, what your looking at is the border around the
    edge, if you go to each site and quickly go back and forth between
    them you can see one's border is a little different than the other.
    This is what I don't want.
    The good one
    http://randycorman.com/WLTfiles/5-7-07/aboutus_employment.php
    The off-set one
    http://randycorman.com/WLTfiles/5-7-07/aboutus_localizationNEW5.php
    Any thoughts on how I might be able to resize it so that it
    looks the same? Dreamweaver won't let me resize the tables smaller
    and just keeps giving me errors saying it's an "invalid
    value"

    > The good one
    >
    http://randycorman.com/WLTfiles/5-7-07/aboutus_employment.php
    After looking at what you call the good page I was afraid to
    look at the
    other one. The so-called good page is a disaster:
    1. You have multiple DTDs (DOCTYPE declarations) and they are
    all
    incomplete.
    2. You used DW's infamous and severely flawed Layout mode. It
    creates
    inflexible, fragile pages.
    3. You have hrefs pointing to your hard drive
    4. Multiple <head></head> tags.
    This page is beyond repair. The only smart approach is to
    start over but
    only after you fully understand why all the problems I listed
    are, in fact,
    problems. Otherwise you are destined to just replace a
    disaster with a
    catastrophe.
    Walt
    "Sillyrabbi" <[email protected]> wrote in
    message
    news:f1o42f$ato$[email protected]..
    > So I've been building this website and my main tables
    keep changing sizes.
    > It's
    > not even usually due to my content expanding it either
    as far as I know.
    >
    > Sometimes it will happen simply from my stretching all
    three of my main
    > tables
    > downward to make more space to work with. I can even
    strech the main/root
    > table
    > just fine, but then I'll expand the second embedded one
    to meet the height
    > of
    > the root table and viola, my whole site gets wider by
    about 3 pixels,
    > destroying my uniform look I've spent so many hours
    trying to achieve.
    >
    > It's kind of hard to describe exactly what it looks
    like, so if you want
    > to
    > take a look at it and give me advice that would be
    wonderful. Also, what
    > your
    > looking at is the border around the edge, if you go to
    each site and
    > quickly go
    > back and forth between them you can see one's border is
    a little different
    > than
    > the other. This is what I don't want.
    >
    > The good one
    >
    http://randycorman.com/WLTfiles/5-7-07/aboutus_employment.php
    >
    > The off-set one
    >
    http://randycorman.com/WLTfiles/5-7-07/aboutus_localizationNEW5.php
    >

Maybe you are looking for

  • Macbook Pro speakers fade in and out, speaker to speaker

    I have an early 2011 15" Macbook Pro, using Mac OX Mountain Lion 10.8.3 The last few weeks I have noticed my speakers fading in and out. It does it in various players an browsers (youtube, blip.tv, quicktime, etc.,.) I tried this solution, but I cann

  • Acrobat Pro 11.0.10 cannot print

    When I want to print a pdf in Acrobat Pro 11.0.10 I got the warning (in dutch) "The document cannot be printed" and then "There are no pages selected for printing". You understand that I have my printer selected (Acrobat sees the printer) and have se

  • MACBOOK DON'T CONNECT WITH LG FLATRON LCD DISPLAY

    Hi friends! I bought a LG FLATRON LCD DISPLAY Model M1994A. My Macbook 13" have a 10.5.6 Leopard. The fact is when connect de Macbook with LCD screen thru VGA cable and miniDVI adapter. Plug the miniDVI adapter, and the screen of Macbook blinking for

  • Property Meta data fixing

    Hi, I am created a one property meta data. if i am adding in all groups it reflects all the groups. But my requirement is i want show the property in a perticular floder only. Ex:/documents/Test. And next thing what is use of Floder validity pattern

  • The application pages is not loading

    The application page of apple store is not loading in my iPad,why?