Can OGG extract from a View to Table

Dear guru,
We have an view to get data from many table. And now we need to get synchronize data from that view to other table.
So, can OGG extract data from a view ? I try use VIEW schema.Viewname in extract file but not success.
Many thanks guy
Ch

chuongnh wrote:
Dear guru,
We have an view to get data from many table. And now we need to get synchronize data from that view to other table.
So, can OGG extract data from a view ? I try use VIEW schema.Viewname in extract file but not success.
Many thanks guy
ChNo, a view is just a stored query. Goldengate Extract will capture the changes happening to data on tables.

Similar Messages

  • How to get the Minum Grade level from the view cluster table V_T710CL_B

    Hi Guys,
    I want to fetch the Minum Grade level from the view cluster table V_T710CL_B
    kindly help me
    Regards
    Rusidar.

    HI Siggi,
    Thank you for your reply..
    I am also planning to do FM to get the data. But it is saying that the Cluster table ZES does not exist (ZES is the the standard table, in SE11 also).
    How can I use the Fields from the that table.?
    What can I do now, can you please explain me about this point.
    Waiting for your reply.
    Thanks and Regards
    Rajesh
    Message was edited by:
            rajesh

  • Data Extraction from SAP R/3 Table View in BW

    Dear All,
    I am trying to create a BW query from SAP R/3 Table View.
    Till now i have created a table view
    Extracted Data source in R/3 Useing Tcode : RSA3
    In BW Side
    1. I have replicated the data source in Source system
    2. Created  info object
        and info object catalog
        and assigned it
    Now i am little confused over what to do next
    wheather to create ODS object in info cube,
    Please guide me with rest of steps to follow.
    Regards,
    Gaurav

    Hi,
    After replicating DS in BW, you have to maintain ODS or Cube for maintaining data in BW.
    After loading data into Data Targets you can create Reports based on those Data Targets.
    For better reporting performance you can create Cube rather ODS.
    Info Source(After Creating info Objects, you have to create a Transfer Structure to map the Fields.)
    Then create a Data Target ODS/Cube.
    Update rules
    Info Package
    Hope it helps you .
    Let us know if you still have any issues.
    Reg
    Pra

  • Extracting from maintenance view

    Hello Experts,
    There is a maintenance view in R/3 which I have to extract. When I try to enter this view in the RSA2 for the creation of generic datasource I get an error "Only transparent tables and database views can be extracted"
    Do i have to create a Database view based on the same definetion?
    Is there any direct way to converting this maintenance view to database view?
    Is there any other alternative to create datasource for a maintenance view?
    Any suggestions appreciated.
    Thanks a bunch,
    BWer

    Hi BWer,
    1st option: make a copy of the view to a z-view and change the view type to database view.
    2nd option: create a fm using the view as extract structure and select data from it in the fm.
    regards
    Siggi

  • Extraction from R/3 generated Table

    Hi,
    I have a situation that i have to extract from a table in ECC R/3 and that table name changes and changes mainly during transports as it is a SAP generated table containing the Fund and Fund Center.
    but i need to extract the data  but not able to use it as the table name changes.
    Anyone please can throw some light  on this how to use the extractor in this situation and how to work around with this table ????
    Thanks,
    GG

    It is generated when it goes to the target system, right?
    This table name would be stored somewhere, trace the R/3 programs associated with the table to figure out how it finds the table name.
    Have an FM based extractor which will follow the same logic to dynamically select from the table (by finding the table name in the same way as SAP programs do).

  • Selecting from a view when tables are in more than one schema problem

    I give up where am I missing it. Why is the ORA-01031 error being generated on the view u1.bv1. In testing even if I give object access to u3 I still get the same errors:
    SQL>
    SQL> drop user u1 cascade;
    drop user u1 cascade
    ERROR at line 1:
    ORA-01918: user 'U1' does not exist
    SQL> drop user u2 cascade;
    drop user u2 cascade
    ERROR at line 1:
    ORA-01918: user 'U2' does not exist
    SQL> drop user u3 cascade;
    drop user u3 cascade
    ERROR at line 1:
    ORA-01918: user 'U3' does not exist
    SQL> drop role aRole;
    drop role aRole
    ERROR at line 1:
    ORA-01919: role 'AROLE' does not exist
    SQL>
    SQL>
    SQL> select user from dual;
    USER
    SYS
    1 row selected.
    SQL>
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for Solaris: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    5 rows selected.
    SQL>
    SQL> create user u1 identified by u1 default tablespace users
    2 quota unlimited on users;
    User created.
    SQL>
    SQL> create user u2 identified by u2 default tablespace users
    2 quota unlimited on users;
    User created.
    SQL>
    SQL> create role aRole;
    Role created.
    SQL>
    SQL> create user u3 identified by u3 default tablespace users;
    User created.
    SQL>
    SQL> grant aRole to u3;
    Grant succeeded.
    SQL>
    SQL> alter user u3 default role all;
    User altered.
    SQL>
    SQL> grant create session to u3;
    Grant succeeded.
    SQL>
    SQL> create table u1.t1(c1 number);
    Table created.
    SQL>
    SQL> create table u2.t1(c1 number);
    Table created.
    SQL>
    SQL> grant select on u2.t1 to u1;
    Grant succeeded.
    SQL>
    SQL> create or replace view u1.bv1 as
    2 select u1.t1.c1 as c1 ,u2.t1.c1 as c2
    3 from u1.t1, u2.t1 where u1.t1.c1 = u2.t1.c1;
    View created.
    SQL>
    SQL> grant select on u1.bv1 to aRole;
    Grant succeeded.
    SQL>
    SQL> create or replace view u1.gv1 as select * from u1.t1;
    View created.
    SQL>
    SQL> grant select on u1.gv1 to aRole;
    Grant succeeded.
    SQL>
    SQL> connect u3/u3
    Connected.
    SQL>
    SQL> select * from u1.bv1;
    select * from u1.bv1
    ERROR at line 1:
    ORA-01031: insufficient privileges
    SQL>
    SQL> select * from u1.gv1;
    no rows selected
    SQL>
    SQL> spool off

    User u1 cannot do a grant on a view to other user if the view uses tables from other schemas unless you do a "with grant option" grant.
    You need to do the following to make it work:
    SQL> grant select on u2.t1 to u1 with grant option;
    Grant succeeded.
    SQL>

  • Extraction from sap r/3 tables to flatfile

    hello Guru's
    i am new to this feild. we have a requirement that we need to extract data from hr feilds of different hr tables in sap to flat file. we have a flatfile structure. we don't have some of feilds in sap R/3 compared to flatfile. we need to fill those feilds also with logic.
    plz show me rigth direction with example code so that i can slove the problem.
    thanks
    rad

    Hi, 
    Check this sample program.
    REPORT  zdownempdata                                         .
    INFOTYPES: 0000, 0001, 0007, 0008, 0121, 0615.
    NODES: pernr.
    TABLES: t001p.
    TYPES: BEGIN OF t_employee,
           INCLUDE STRUCTURE hrms_biw_io_occupancy.
      begda     TYPE begda,
      endda     TYPE endda,
      pernr     TYPE pernr_d,
      rfpnr     TYPE rfpnr,
      bukrs     TYPE bukrs,
      werks     TYPE persa,
      btrtl     TYPE btrtl,
      persg     TYPE persg,
      persk     TYPE persk,
      orgeh     TYPE orgeh,
      stell     TYPE stell,
      plans     TYPE plans,
      kokrs     TYPE mast_coar,
      kostl     TYPE mast_cctr,
      abkrs     TYPE abkrs,
      molga     TYPE molga,
      trfar     TYPE trfar,
      trfgb     TYPE trfgb,
      trfkz     TYPE trfkz,
      trfgr     TYPE trfgr,
      trfst     TYPE trfst,
      bsgrd     TYPE bsgrd,
      ansal     TYPE ansal_15,
      ancur     TYPE ancur,
      empct     TYPE empct,
      stat2     TYPE stat2,
      ncsdate     TYPE hiredate,
      sltyp     TYPE p_sltyp,
      slreg     TYPE p_slreg,
      slgrp     TYPE p_slgrp,
      sllev     TYPE p_sllvl,
      ansvh     TYPE ansvh,
      vdsk1     TYPE vdsk1,
      sname     TYPE smnam,
    END OF t_employee.
    DATA: it_employee TYPE STANDARD TABLE OF t_employee INITIAL SIZE 0,
          wa_employee TYPE t_employee.
    TYPES: BEGIN OF t_emptexts,
           INCLUDE STRUCTURE hrms_bw_txt_employee.
      DATEFROM     TYPE RSDATEFROM,
      DATETO     TYPE RSDATETO,
      PERNR     TYPE PERSNO,
      TXTMD     TYPE EMNAM,
    END OF t_emptexts.
    DATA: it_emptexts TYPE STANDARD TABLE OF t_emptexts INITIAL SIZE 0,
          wa_emptexts TYPE t_emptexts.
    TYPES: BEGIN OF t_contract,
           INCLUDE STRUCTURE pa0615.
      pernr TYPE p0615-pernr,
      begda TYPE p0615-begda,
      endda TYPE p0615-endda,
      aedtm TYPE p0615-aedtm,
      ctype TYPE p0615-ctype,
      cbeg  TYPE p0615-cbeg,
      cend  TYPE p0615-cend,
    END OF t_contract.
    DATA: it_contract TYPE STANDARD TABLE OF t_contract INITIAL SIZE 0,
          wa_contract TYPE t_contract.
    DATA: it_tabemp TYPE filetable,
          gd_subrcemp TYPE i,
          it_tabempt TYPE filetable,
          gd_subrcempt TYPE i,
          it_tabcont TYPE filetable,
          gd_subrccont TYPE i.
    DATA: gd_downfile TYPE string.
    SELECTION-SCREEN BEGIN OF BLOCK block1 WITH FRAME TITLE text-001.
    PARAMETERS: p_emp   LIKE rlgrap-filename,
                p_empt  LIKE rlgrap-filename,
                p_cont LIKE rlgrap-filename.
    SELECTION-SCREEN END OF BLOCK block1.
    *at selection-screen
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_emp.
      REFRESH: it_tabemp.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title      = 'Select File'
          default_filename  = '*.xls'
          initial_directory = 'C:\'
          multiselection    = ' '  "No multiple selection
        CHANGING
          file_table        = it_tabemp
          rc                = gd_subrcemp.
      LOOP AT it_tabemp INTO p_emp.
      ENDLOOP.
    *at selection-screen
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_empt.
      REFRESH: it_tabemp.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title      = 'Select File'
          default_filename  = '*.xls'
          initial_directory = 'C:\'
          multiselection    = ' '  "No multiple selection
        CHANGING
          file_table        = it_tabempt
          rc                = gd_subrcempt.
      LOOP AT it_tabempt INTO p_empt.
      ENDLOOP.
    *at selection-screen
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_cont.
      REFRESH: it_tabcont.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title      = 'Select File'
          default_filename  = '*.xls'
          initial_directory = 'C:\'
          multiselection    = ' '  "No multiple selection
        CHANGING
          file_table        = it_tabcont
          rc                = gd_subrccont.
      LOOP AT it_tabcont INTO p_cont.
      ENDLOOP.
    *START-OF-SELECTION.
    START-OF-SELECTION.
    GET pernr.
    Selecting the latest infotype record
      rp_provide_from_last p0000 space pn-begda pn-endda.
      rp_provide_from_last p0001 space pn-begda pn-endda.
      rp_provide_from_last p0007 space pn-begda pn-endda.
      rp_provide_from_last p0008 space pn-begda pn-endda.
      rp_provide_from_last p0121 space pn-begda pn-endda.
      rp_provide_from_last p0615 space pn-begda pn-endda.
      MOVE-CORRESPONDING p0001 TO wa_employee.
      wa_employee-rfpnr = p0121-rfp01. "?????
      MOVE-CORRESPONDING p0007 TO wa_employee.
      MOVE-CORRESPONDING p0008 TO wa_employee.
      MOVE-CORRESPONDING p0000 TO wa_employee.
      SELECT SINGLE molga
        FROM t001p
        INTO wa_employee-molga
       WHERE werks EQ p0001-werks AND
             btrtl EQ p0001-btrtl.
      SELECT SINGLE trfkz
        FROM t503
        INTO wa_employee-trfkz
       WHERE persg EQ p0001-persg AND
             persk EQ p0001-persk.
      CALL FUNCTION 'HR_ENTRY_DATE'
        EXPORTING
          persnr                     = pernr-pernr
      RCLAS                      =
      BEGDA                      = '18000101'
      ENDDA                      = '99991231'
      VARKY                      =
       IMPORTING
          entrydate                  = wa_employee-ncsdate
    TABLES
      ENTRY_DATES                =
    EXCEPTIONS
       ENTRY_DATE_NOT_FOUND       = 1
       PERNR_NOT_ASSIGNED         = 2
       OTHERS                     = 3
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    append employee data
      APPEND wa_employee TO it_employee.
      CLEAR: wa_employee.
      wa_emptexts-datefrom = p0001-begda.
      wa_emptexts-dateto   = p0001-endda.
      wa_emptexts-pernr    = p0001-pernr.
      wa_emptexts-txtmd    = p0001-ename.
    append employee texts data
      APPEND wa_emptexts TO it_emptexts.
      CLEAR: wa_emptexts.
      MOVE-CORRESPONDING p0615 TO wa_contract.
    append employee contract data
      APPEND wa_contract TO it_contract.
      CLEAR: wa_contract.
    *END-OF-SELECTION.
    END-OF-SELECTION.
    download employee data
      IF NOT p_emp IS INITIAL.
        gd_downfile = p_emp.
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            filename              = gd_downfile
            filetype              = 'ASC'
            write_field_separator = 'X'
          TABLES
            data_tab              = it_employee.
        IF sy-subrc EQ 0.
          WRITE:/ 'Employee file downloaded to',
                  gd_downfile.
        ELSE.
          WRITE:/ 'There was an error downloading Employee file to',
                  gd_downfile.
        ENDIF.
      ENDIF.
    download employee texts data
      IF NOT p_empt IS INITIAL.
        gd_downfile = p_empt.
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            filename              = gd_downfile
            filetype              = 'ASC'
            write_field_separator = 'X'
          TABLES
            data_tab              = it_emptexts.
        IF sy-subrc EQ 0.
          WRITE:/ 'Employee text file downloaded to',
                  gd_downfile.
        ELSE.
          WRITE:/ 'There was an error downloading Employee text file to',
                  gd_downfile.
        ENDIF.
      ENDIF.
    download contract data
      IF NOT p_cont IS INITIAL.
        gd_downfile = p_cont.
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            filename              = gd_downfile
            filetype              = 'ASC'
            write_field_separator = 'X'
          TABLES
            data_tab              = it_contract.
        IF sy-subrc EQ 0.
          WRITE:/ 'Employee contract file downloaded to',
                  gd_downfile.
        ELSE.
          WRITE:/ 'There was an error downloading Employee contract file to',
                  gd_downfile.
        ENDIF.
      ENDIF.
    - Selvapandian Arunachalam

  • Can't get jlist to view in table

    HI Everyone,
    Im a newbie at java swing and I was attempting to put a jlist in a column however it is just showing me the position. Can anyone help on this, its fairly simple probably. I just been looking at this all day however, lol...
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    public class TableRowColumn extends JFrame
         private final static String LETTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
         JTable table;
         DefaultTableModel model;
         JPanel buttonPanel;
         JButton button;
    Vector tmp=new Vector();
    JList some=new JList();
         public TableRowColumn()
              // Create table
    tmp=new Vector();
    String[] sdata2={"stock1","stock2"};
    //tmp.addElement(sdata2);
    some=new JList(sdata2);
              Object[][] data = { {"1",some }, {"2", "C"}, {"3", "D"} };
              String[] columnNames = {"Number","Letter"};
              model = new DefaultTableModel(data, columnNames);
              table = new JTable(model);
              table.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
              // Add table and a Button panel to the frame
              JScrollPane scrollPane = new JScrollPane( table );
              getContentPane().add( scrollPane );
              buttonPanel = new JPanel();
              getContentPane().add( buttonPanel, BorderLayout.SOUTH );
              button = new JButton( "Add Row" );
              buttonPanel.add( button );
              button.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        model.addRow( createRow() );
                        int row = table.getRowCount() - 1;
                        table.changeSelection(row, 0, false, false);
                        table.requestFocusInWindow();
              button = new JButton( "Insert Row" );
              buttonPanel.add( button );
              button.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        model.insertRow( 0, createRow() );
                        table.changeSelection(0, 0, false, false);
                        table.requestFocusInWindow();
              button = new JButton( "Empty Row" );
              buttonPanel.add( button );
              button.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        model.setRowCount( model.getRowCount() + 1 );
                        int row = table.getRowCount() - 1;
                        table.changeSelection(row, 0, false, false);
                        table.requestFocusInWindow();
              button = new JButton( "Add Column" );
              buttonPanel.add( button );
              button.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        String header = "Col" + (table.getColumnCount() + 1);
                        model.addColumn( header );
                        table.requestFocusInWindow();
              button = new JButton( "Add Column & Data" );
              buttonPanel.add( button );
              button.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        String header = "Col" + (table.getColumnCount() + 1);
                        int rows = table.getRowCount();
                        String[] values = new String[rows];
                        for (int j = 0; j < rows; j++)
                             values[j] = Integer.toString(j);
                        model.addColumn( header, values );
                        table.requestFocusInWindow();
              button = new JButton( "Add Column - No Reordering" );
              buttonPanel.add( button );
              button.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        // Use this method when you don't want existing columns
                        // to be rebuilt from the model.
                        // (ie. moved columns will not be reordered)
                        table.setAutoCreateColumnsFromModel( false );
                        String header = "Col" + (table.getColumnCount() + 1);
                        model.addColumn( header );
                        // AutoCreate is turned off so create table column here
                        TableColumn column = new TableColumn( table.getColumnCount() );
                        column.setHeaderValue( header );
                        table.addColumn( column );
                        // These won't work once setAutoCreate... has been set to false
                        buttonPanel.getComponent(3).setEnabled( false );
                        buttonPanel.getComponent(4).setEnabled( false );
                        table.requestFocusInWindow();
              button = new JButton( "Remove Last Column" );
              buttonPanel.add( button );
              button.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        int columns = model.getColumnCount();
                        if (columns > 0)
                             if (!table.getAutoCreateColumnsFromModel())
                                  int view =
                                       table.convertColumnIndexToView(columns - 1);
                                  TableColumn column =
                                       table.getColumnModel().getColumn(view);
                                  table.getColumnModel().removeColumn( column );
                             model.setColumnCount( columns - 1 );
                        table.requestFocusInWindow();
         private Object[] createRow()
              Object[] newRow = new Object[2];
              int row = table.getRowCount() + 1;
              newRow[0] = Integer.toString( row );
              newRow[1] = LETTERS.substring(row-1, row);
              return newRow;
         public static void main(String[] args)
              TableRowColumn frame = new TableRowColumn();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
              frame.pack();
              frame.setLocationRelativeTo( null );
              frame.setVisible(true);
    }

    Yes, but you forgot to extend JList or JBoxList (whatever that is).
    You would return this from the getTableCellRendererComponent method.
    Of course, you would have to initialize the JList to whatever.
    You also need to keep in mind that a cell renderer is just that: a renderer. It's like taking a screenshot of the component and drawing it into the table cell. It doesn't put an actual list component in the cell. So you aren't going to be able to just click on list items. You'd have to swap for a cell editor that is the same list to do that. Or do some fancy mouse event handling tricks.
    It's a royal pain, but you might want to rethink doing it.

  • What can I extract from PS7, and should I?

    I have an older mac which runs PS7, It's old and slow like me but I've read that its possible to extract stuff from the guts of the programme and save it to PE8 which I'm using on a newer faster upgraded macbook, which can't run PS7. What can I use, I'm immediately thinking of Actions, and should I do anything of the sort. Pointers to books or advice gladly accepted.

    I was using PS7 on an old iMac when I started building my brush set, and I learned to make custom shapes.
    Since then I've learned to make gradients, and have built a collection of 1200 brushes, shapes and gradients combined. I also have a font library of nearly 5,000, and all of this stuff is on a DVD-R that I've used to move my "personal set" from the iMac to a G5 iMac (CS2 & CS3), three PCs (CS2, CS3 & CS4), a MacMini (CS3, then back to CS2), and most recently my new MacBook (CS4).
    I don't know about "deterioration" of these items as much as something in the files themselves that is simply no longer compatible as PS or PSE goes from one build to another.
    It's not even apparent until I go to use a brush (or set) and get an error message. I have to delete it then. It doesn't happen so often with shapes or gradients, but I've seen a shape or two that simply won't work with CS4 where it did with CS3. I have three PCs running XP and CS3 and they all work fine. On Vista or OS 10.6 and CS4 they don't. Same applies to PSE6 and PSE8. Some styles, actions and shapes that work in PSE6 don't in PSE8.
    I've not been able to find any rhyme or reason as to what causes it. I think it's just changes in the code when applications are upgraded.
    I have found dozens of sites where people have created their own actions and put them up for others to download though.
    My advice would be to pull what you feel you will need from PS7 and put it on a CD-R or DVD-r, or flash drive and once you have CS4 running on the Mac, copy it all into the right folders. Then, using PSE will show you which itms are compatible or not. They don't "break" the application, but you will get an error that "The (acton/brush/shape/etc.) couldn't be loaded due to a Program Error". When you see that, you'll know the particular item is not compatible. PSE will still run, it just won't use that item.

  • Update turbotax 2013 error can't extract from archive  on install and launch

    I installed my turbotax 2013. Then it said to update. I downloaded the update. Then it said install and relaunch. Up comes this message, "An error occurred while extracting the archive. Please try again later. No matter what I try. It comes up with same error message. I was online with intuit techs and they haven't solved it yet. Any ideas?

    First off, you are not seeing a kernel panic but an inability to load the kernel file "mach_kernel," which is damaged or missing.
    This is apparently because of a file system error (Invalid Key Length), a serious error Disk Utility is not designed to repair, since the repair usually involves loss of data & that app is very conservative about such things.
    It is almost impossible that the update itself is responsible for creating this error but very common for one to exacerbate it if it already exists. This is because file system errors corrupt files when the OS writes files to the disk, & updates write a lot of files to the disk.
    If you have implemented a backup strategy, the fix is straightforward, if a little time consuming: reformat the drive, do a new install of the OS from the installer disks, & restore your data from your backups.
    If you have not implemented a backup strategy, you now know why one is essential: no data you cannot afford to lose should reside only in one place like your internal hard drive. Data is lost every day because of human error, theft, hardware failure, or a host of other reasons. Only a good backup strategy can prevent this.
    Assuming the second situation applies to you, your best bet is to purchase a more powerful disk repair utility like DiskWarrior to see if it can repair the file system damage with minimal data loss. Be sure you read & heed the app's manual before using it! Failure to do so, or attempting to use the computer before the errors are repaired, will almost certainly result in more data loss.

  • Can't Edit from Code View?

    For some reason one of my components seems to have an empty "array" as it's called describing a *filter* that doesn't exist.  In other words:
    <s:filters>
                    </s:filters>
    This is causing me to get on error when I try to compile.  I can take it into flex, make the change, and then compile... but after I do that FC won't accept my exported fxp.  Sooo...... I would love to just delete those two pointless lines of code... but for some reasons it's locked or... won't let me delete it.
    Not sure why.  :-/

    To be honest it could be a number of things.  I've probably been making this too hard on myself, but I started with a swf, in Flash.  Its primary purpose was to play an introduction upon entering the site.  You can see this at garrettremes.com
    I've since made changes in Catalyst but can no longer compile/export.  I had started a project in catalyst before, but had to retrace my steps again and again which was very tedious, because I was playing with different options and bg swfs among other things.  I decided to put that part on hold and work in Flash for a while.
    What happened probably started with me importing the library from my other Catalyst project and that had god knows what in it, I lost track after a while since it renames things all the time it got to be confusing.  After importing that library to my new Catalyst project I located the custom components I needed and tried to recreate some of the work I had done before.
    The next step involves adding coverflow, and I remember seeing this done in Flex quite some time ago, so I figured it would be best to import into Flash Builder 4, and make the changes, and then go back to Catalyst to designate the navigation a bit better.  Catalyst makes this part very easy, and I love it, but the whole process is not very streamline at all.  Of course this is partially my fault, because I don't know any better way to do this.  I don't know enough AS3 to do all Flash -- Catalyst seems to limit my options, and I only know enough with Flex Builder to follow tutorials and primarily work in the "Design" workspace.
    Anyway -- as for the error, the first compile error I got was something to the effect of "duplicate symbol name."  I don't know how to edit this property.  I see there's a user designated id, and the id in the library, and apparently another id used by the program.  Apparently there was a conflict.  I was able to solve this by figuring out where 'rect0' was and deleting it and recreating it.
    I suppose in my deleting it I caused the empty array.  I compiled in Flex and it's as simple as deleting that line of code, but I don't know where the debug code is stored on my hard drive and I can't delete it in Catalyst so I'm at sort of an impasse.  Not sure what to do.
    I'm attaching whatever I can find that might be useful.
    Flash Catalyst cannot run this project because of an error in the code.
    To find the error, switch to the Code workspace and look in the Problems panel.
    I did that and found that there was an empty tag in one of my components.  Perhaps I should just delete that component and remake it?  That would probably work....
    **EDIT**
    I know it's not ideal, but I solved this problem by just applying some filter so there wouldn't be an empty array, and then compiled... then I "un-applied" it and it seems that it properly removed it from code.  I'm really not sure how this might have happened...

  • ORA-01776: I can't insert on a view comprised by two tables

    Good morning:
    I'm trying to do an insertion on a view comprised by the join of two tables (departments and employees) and it failed.
    The view is this one:
    CREATE OR REPLACE FORCE VIEW "EMPDPTO" ("EMPLOYEE_ID", "LAST_NAME", "EMAIL", "HIRE_DATE", "JOB_ID", "DEPARTMENT_ID", "DEPARTMENT_NAME") AS
    SELECT employee_id, last_name, email, hire_date, job_id, d.department_id, department_name
    FROM employees e, departments d
    WHERE e.department_id = d.department_id
    My insertion command
    INSERT INTO empdpto
    VALUES(743, 'Bermejo', '[email protected]', '12/12/09', 'IT_PROG', 10, 'Administration');
    throws a ORA-01776: it's not possible to modify more than one base table through a join union.
    On the other side I've seen in documentation that in certain circunstances is possible to do an insertion on a complex view.
    Is it possible to do an insertion on a view comprised by two tables?. Under what circunstances?.
    Thanks

    From SQL Reference CREATE VIEW section Notes on Updatable Views http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_8004.htm#i2065510
    >
    If you want a join view to be updatable, then all of the following conditions must be true:
    The DML statement must affect only one table underlying the join.
    For an INSERT statement, the view must not be created WITH CHECK OPTION, and all columns into which values are inserted must come from a key-preserved table. A key-preserved table is one for which every primary key or unique key value in the base table is also unique in the join view.
    For an UPDATE statement, the view must not be created WITH CHECK OPTION, and all columns updated must be extracted from a key-preserved table.
    >
    The first condition is not true for the view you have created.
    Edited by: P. Forstmann on 26 janv. 2010 20:17

  • How to see deleted records in delta extraction from view

    Hi folks,
    i am currently reflecting about delta extraction from a view:
    The view contains a date field (change date) which is used to identify new or changed records.
    So the delta extraction of new and changed records works without problems.
    But what is happening with records that are deleted in the source system?
    My current understanding is that deleted records will not be shown in the view. Therefore the deletion is not visible in the extraction.
    - Is there a workaround for this problem?
    - How is deletion of records normaly handled in generic extractors? 
    - Is it impossible to extract a deletion when using views?
    any suggestions and help will be appretiated...
    bye

    Hello Florian,
    Generally records will not be deleted (until if you physically delete it from table) but will have a status deleted.
    So it doesn't matter whether you use view or tables the deleted records will be extracted through the view to update the BW data targets.
    Thanks
    Chandran

  • How can I get the logoff time of each db user from system view?

    I can get the logon_date from gv$session.
    Now,I want to get the logoff_date from some view or table.
    I know that I will get it with trigger.
    But,I am not will to user trigger for it.
    Who can tell me which view or table will show the info?

    But,I am not will to user trigger for it.Are you saying you are not willing to fire a trigger to gather this information?
    I don't know of a table, if one exists, someone will know.
    I say until you find a table, just write a SYSTEM TRIGGER on LOGOUT and place this information in your own table.
    Eric

  • How can I extract data from a sound file in carbon

    hello,
    I am a student and I start recently learning carbon. I have to do a application which can read and extract data from a sound file and use that data to do some kind of visual representation of the file. I would like to know if someone can give some directions, tutorial,some code sample etc.
    thank you for your help
    chenita7

    hello orangekay
    My idea is to create an application that can read a sound file( AIFF, MP3 or other) in order to extract some kind of data ( numbers or any values) and use that data to represent the sound file visually.
    I dont know which kind of data can be extract from a sound file, and in which way i can manipulate that data to became a visual representation of the sound file. this is what I want to do as my second assignment for a subject at school, introduction to programming. has to be done based in carbon.
    regards
    chenita7

Maybe you are looking for

  • My ipad does not find my air printer all the time.

    Why is it that my mini ipad intermittently find my air printer ?

  • Checkbox in Tabular Form

    Hi, I am fairly new to APEX and need some help please. I am nrunning Apex 4.1 on 11g database. I have a tabular formrunning off the rowid which needs to show a checkbox for several columns which contain Y or N. When I set the field type to simple che

  • My media was deleted how do i get it back?

    my media was deleted how do i get it back?

  • Extremely slow file server performance

    I have a Time Capsule (1TB, late 2008) which I use as a file server. The client of interest is a Mac mini, slightly newer. The connection is 802.11n at 100+ MB/s. I can see no evidence of interfering networks. Anyway, dragging largeish (350MB) files

  • Missing SSIS related products

    I'm not sure if I'm in the right place, but here goes.  I have SQL Server MGMT Studio 2008 and Visual Studio Professional Edition 2008 installed already. I do not have the installed products of SQL Server Analysis Services, SQL Server Integration Ser