Limited records displayed in a view

Hello,
I'm trying to see the table contents of a view in DB connect. It only returns back 20 records. Is there any way to change it to show all the records that are present in the view. I'm trying to figure out some missing data in my ODS and CUBE.
When I see the view in SQL, it does show that the records are present and the total number of records as 100 (just a arbitary figure). When i check my ODS, it does show that 100 records were transferred, but when i do a check for some specific data, it fails to show it and i cannot get it when i run my query.
Any thoughts?
Sam

Arun,
I changed one of the data fields to Key fields in the ODS. I emptied the ODS and Cube. I then ran a full load process chain on the ODS and cube. This is what I'm getting:
ODS:
transferred records: 1326069 ( = to the number of records in SQL)
added records: 1325357 (712 records less)
cube:
transferred: 1325357
added: 805738
I'm running the query on my Cube. How do i find out the reason for just 805738 records being added instead of 1326069?
Regards,
Sam

Similar Messages

  • Record displaying twice in View

    Hai all,
    I created a view like this :
    create view xxail_task as select
    distinct(peo.EMPLOYEE_NUMBER) "Employee_Number"
    ,peo.FULL_NAME "Employee_Name"
    , pac.SEGMENT1 "BADGE"
    , pac.SEGMENT2 "Status"
    , pac.SEGMENT3 "Remarks"
    , pac.SEGMENT4 "Remarks1"
    , pac.SEGMENT5 "Remarks2"
    , pac.SEGMENT6 "Remarks3"
    , to_date(substr(pac.SEGMENT7,0,10),'yyyy-mm-dd') "I_Expiry_Date"
    , to_date(substr(pac.SEGMENT8,0,10),'yyyy-mm-dd') "Si_Expiry_Date"
    , to_date(substr(pac.SEGMENT10,0,10),'yyyy-mm-dd') "P_Expiry_Date"
    , to_date(substr(pac.SEGMENT11,0,10),'yyyy-mm-dd') "J_Expiry_Date"
    , to_date(substr(pac.SEGMENT12,0,10),'yyyy-mm-dd') "P_Expiry_Date"
    , to_date(substr(pac.SEGMENT13,0,10),'yyyy-mm-dd') "H_Expiry_Date"
    , to_date(substr(pac.SEGMENT14,0,10),'yyyy-mm-dd') "A_Expiry_Date"
    , to_date(substr(pac.SEGMENT15,0,10),'yyyy-mm-dd') "KExpiry_Date"
    to_date(substr(pac.SEGMENT16,0,10),'yyyy-mm-dd') "J2-South_Expiry_Date"
    , to_date(substr(pac.SEGMENT17,0,10),'yyyy-mm-dd') "J2-North_Expiry_Date"
    , pac.SEGMENT18 "EMP_On_Vacation"
    , to_date(substr(pac.SEGMENT19,0,10),'yyyy-mm-dd') "Vacation_Start_Date"
    , to_date(substr(pac.SEGMENT20,0,10),'yyyy-mm-dd') "Vacation_End_Date"
    from per_analysis_criteria pac
    ,per_all_people_f peo
    ,per_person_analyses ppa
    where pac.id_flex_num =50336
    aND ppa.ANALYSIS_CRITERIA_ID = pac.ANALYSIS_CRITERIA_ID
    AND peo.PERSON_ID = ppa.PERSON_ID
    when I give select * from xxail_task..
    records are coming twice.. once with empno and empname and other record with empname alone..
    anyidea where I went wrong ?
    Thanks
    Yusuf

    Yusuf,
    it looks like you forgot to include a datetrack condition in your query. Just add something like this:
    and TRUNC(SYSDATE) between peo.effective_start_date and peo.effective_end_date
    Use SYSDATE if you want to have the current situation, another date otherwise.
    Remember for the future that all the tables and views that end in "_F" require a datetrack condition when querying them, otherwise you will have multiple rows.
    If you have also rows without employee number, then it means that you may need also a filter on person types (applicants and contingent workers usually do not have an employee number).
    Paolo

  • Stacked Canvas and No. of records display on the block?

    Any coding to re-size the "Stacked" canvas and no.of records displays on the block?
    Please advice,
    Amy

    u can set the view port and Width and height of the Stack canvas at runtime but not No of Records display....
    set_view_property .....VIEW_SIZE or Width / Height
    for canvas size use SET_CANVAS_PROPERTY
    Baig
    [My Oracle Blog|http://baigsorcl.blogspot.com/]

  • MRP group field can not be displayed in MRP1 view

    Hi all
    MRP group field can not be displayed in MRP1 view
    please guide me
    thx

    Hi avinash
    consulte your MM guy material master screen group and selection is done by MM guys in general. There they can do setting for this.
    Also why you need MRP group. If it is maintained. It should be done properly otherwise it will create lot of problems.
    Regards
    J . Saravan

  • How to run report to show all the records in the form view of Siebel 8.1.1

    Hi.
    My template has "for-each" section and there are more than 1 records in the form view. But when generating report, there is only one record in the report. Can anyone offers help? Thanks a lot.
    Edited by: user11948585 on 2009-11-18 下午6:08

    Hi ,
    Could you generate a sample XML from BIP Administrator for the IO on which report is based , and apply it to RTF and see if you are getting the desired values.
    Thanks!!

  • Display a schematic view with icons (jpg, gif, etc).

    I'm trying to display a schematic view and use icons to represent the difference objects in this schematic view.
    For example: to show a 3 phones conference call. The description will be the phone number (or person's name) and the icon will be the person's face or company logo.
    I have tried to use JLabel, and JButton but then I have to use a Layout. Without a layout the are one-on-top of another.
    I tried to use setLocation and it doesn't look to have any effect on the location of JLabel or JButton.
    The following is my code:
    import java.awt.Container;
    import java.awt.Insets;
    import java.awt.Point;
    import java.awt.Dimension;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    * ShowIcons.java is a 1.4 application that requires no other files.
    * @author Benny Regev
    * @version 1.0.00.0000
    public class ShowIcons {
        public static void addComponentsToPane(Container pane) {
            ImageIcon iconHE, iconCPE, iconNode, iconDemo;
            Point point1, point2, point3;
            pane.setLayout(null);
            iconHE = createImageIcon(NODE_HE_ICON);
            iconNode = createImageIcon(NODE_ICON);
            iconCPE = createImageIcon(NODE_CPE_ICON);
            iconDemo = createImageIcon(NODE_CPE_ICON);
            JButton b1 = new JButton(HE_TEXT, iconHE);
            JButton b2 = new JButton(NODE_TEXT, iconNode);
            JButton b3 = new JButton(CPE_TEXT, iconCPE);
            point1 = new Point(0, 500);
            point2 = new Point(500, 0);
            point3 = new Point(500, 500);
            b1.setLocation( point1 );
            b2.setLocation( point2 );
            b3.setLocation( point3 );
            pane.add(b3);
            pane.add(b2);
            pane.add(b1);
    //        pane.add(iconDemo);
            Insets insets = pane.getInsets();
            Dimension size = b1.getPreferredSize();
            b1.setBounds(25 + insets.left, 5 + insets.top,
                         size.width, size.height);
            size = b2.getPreferredSize();
            b2.setBounds(55 + insets.left, 40 + insets.top,
                         size.width, size.height);
            size = b3.getPreferredSize();
            b3.setBounds(150 + insets.left, 15 + insets.top,
                         size.width + 50, size.height + 20);
        /** Returns an ImageIcon, or null if the path was invalid. */
        protected static ImageIcon createImageIcon(String path) {
            java.net.URL imageURL = ShowIcons.class.getResource(path);
            if (imageURL == null) {
                System.err.println("Resource not found: "
                                   + path);
                return null;
            } else {
                return new ImageIcon(imageURL);
        }   //  End of Method protected static ImageIcon createImageIcon(String)
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("AbsoluteLayoutDemo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Set up the content pane.
            addComponentsToPane(frame.getContentPane());
            //Size and display the window.
            Insets insets = frame.getInsets();
            frame.setSize(300 + insets.left + insets.right,
                          125 + insets.top + insets.bottom);
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
        public static final String NODE_HE_ICON = "images/shop_icon_esd_110.gif";
        public static final String NODE_CPE_ICON = "images/Default_feature1.gif";
        public static final String NODE_ICON = "images/icondesktop.gif";
        public static final String HE_TEXT = "Headent";
        public static final String CPE_TEXT = "CPE";
        public static final String NODE_TEXT = "10.0.0.10";
    }Anyone has an idea??

    Hi,
    This might help
    http://www.techonthenet.com/oracle/errors/ora01446.php
    Regards,
    Jari

  • Does anyone know if it is possible to change the display in week view to show 24 hours per day for those of us that work irregular hours

    Does anyone know if it is possible to change the display in week view to show all 24 hours per day for those of us that work irregular hours.
    Also is it possible to have all of the 'all day' entries showing, not just 3.5 of them.
    The app Week Cal HD was the perfect calendar until Apple removed it so could they please offer the same facilities that it offered.

    Does anyone know if it is possible to change the display in week view to show all 24 hours per day for those of us that work irregular hours.
    Also is it possible to have all of the 'all day' entries showing, not just 3.5 of them.
    The app Week Cal HD was the perfect calendar until Apple removed it so could they please offer the same facilities that it offered.

  • Change number of record displayed for a single item alone

    Hi,
    I have a single data block with few items. Is it possible to make one item in the block as non-database item and make the display of record in the item alone to show multiple lines.
    i.e. All other items in the Data block shows single record, whereas this particular item should shows 10 records.
    Is this achievable?
    Or should i have to put that item in a separate data block and choose the data block property to "Number of records displayed" as 10?
    Thanks,
    Yuvaraaj.

    983448 wrote:
    Hi,
    I have a single data block with few items. Is it possible to make one item in the block as non-database item and make the display of record in the item alone to show multiple lines.
    i.e. All other items in the Data block shows single record, whereas this particular item should shows 10 records.Yes you can. But i will say re-check your design.
    Hamid
    Mark correct/helpful to help others to get right answer(s).*

  • Multiple (not full) day events displaying in monthly view

    If I have an event that starts on 8:00 AM on Tuesday, and ends on 5:00 PM on Wednesday, It won't display in monthly view on Wednesday in iCal. It looks as though I have nothing scheduled on Wednesday.
    Is this "feature" something that Apple is working to eliminate?

    Ramone4130,
    The first and easiest troubleshooting step involves replacing/refreshing the com.apple.iCal.plist file.
    Quit iCal and find the com.apple.iCal.plist file in your Macintosh HD/Users/yourusername/Library/Preferences Folder. Drag the file to your Desktop, log out/in or restart and check iCal for normal behavior.
    ;~)

  • Can't display in Week View

    I just can't get iCal to display in week view (which is how I always use it). If I click on day view or month view the calendar window appears, but as soon as I click week view it disappears. I've tried deleting iCal and reinstalling the package from the OS X DVD. I've also tried deleting Library/Application Support/iCal. Any ideas?

    One possible issue is that the preferences have become corrupted. Try to throw out the plist for the calendars... found in your user home > library > preferences.
    Try trashing the com.apple.iCal.plist.
    Ted

  • Items to display in list view web part not showing the items setup

    Hi, I have the following issue. I have a list view web part, but the web part is showing more items that the ones setup in the: Number of items to display in list view web part for this view.
    It is because that works when using datasheet view and not a normal view? Is there any technical documentation from Microsoft supporting this?

    thank you for your answer. It is interesting that the mobile view with the items to show in the mobile view doesn't work in the webpart, but it works when you are using datasheet view, but if you uncheck to activate the mobile view, then, the webpart doesn't
    show information, so, it works partially because one part works and not the other.

  • Display a Calendar View in the Portale Server

    Hi, we use portal server 6.2 and we want to display a view of the calendar inside a channel of the portal.
    We know that portal have a calendar provider but we really didn't understand how can we use this provider to call a custom view of the calendar.
    Is it possible to display a custom view of the calendar inside a page of the portal ?
    Thanx

    Probably better to be posting this in the Calendar forum.

  • How to update or delete records in a Complex View in Forms?

    Hi,
    I have a requirement to create a Form by using Complex View. Insertion is possible but updation and deletion is not working properly . I got FRM-40501 Error. I need How to update or delete records in a Complex View in Forms?
    Thanks & Regards,
    Hari Babu

    Depending on how complex your view is, forms is not able to determine how to appropiately lock a record, when you try to update or delete a record.
    One approach to using complex views in forms:
    1. Set the Key-mode of the block to "Non-Updateable"
    2. Mark the column which can be used to build the WHERE-condition to uniquely identify a record with "Primary Key" = "Yes"
    3. For doing INSERT, UPDATE and DELETE, create an INSTEAD-OF-trigger on the view.
    4. Create your own ON-LOCK-trigger in forms which does the locking of the records to update.

  • How to set the number of records displayed at run time

    Is it possible to set the number of records displayed block property at run time? The built-in 'GET_BLOCK_PROPERTY' can retrieve the number of RECORDS_DISPLAYED. But I can't find SET_BLOCK_PROPERTY to set this property. Is there anyway I can set this property programmatically? Thanks for any suggestions!

    Bookmark Go to End
    goal: How to vary the number of records displayed in a block
    programmatically
    fact: Oracle Forms Developer
    fix:
    Block property 'Number of Records Displayed' can not be changed during runtime
    using SET_BLOCK_PROPERTY. However, it is still possible programmatically change
    the visual appearance of the form so that it creates effect of changing this
    property. To achieve such an effect follow these steps:
    1. in Forms Builder, in the multirecord block define the new set of items.
    The simplest way is to copy/paste the original item and rename created item.
    2. set properties of these new items so that they are the same as the properties
    of the original items. If these new items were copied from original items
    then properties are already the same. Modify following properties
    'Database item' on new items to value 'No'
    'Synchronize with item' to the value of the original item
    'Number of Items Displayed' to desired value.
    'Visible' to 'No'
    In other words, these new items are mirrors of original items.
    3. code event, which is meant to trigger the change in block appearance.
    This code should use SET_ITEM_PROPERTY built-in to set properties
    like 'VISIBLE', 'ENABLED', 'NAVIGABLE', 'UPDATE_ALLOWED' and others
    to desired value for items which are about to be displayed, then
    move cursor to one of these just displayed items with GO_ITEM built-in
    and then hide the previously displayed items.
    Example:
    Assume that the block is built on SCOTT.DEPT schema. Following will
    change the set of displayed items
    set_item_property('dept.mdeptno',visible,property_true);
    set_item_property('dept.mdname',visible,property_true);
    set_item_property('dept.mloc',visible,property_true);
    set_item_property('dept.mdeptno',enabled,property_true);
    set_item_property('dept.mdname',enabled,property_true);
    set_item_property('dept.mloc',enabled,property_true);
    set_item_property('dept.mdeptno',update_allowed,property_true);
    set_item_property('dept.mdname',update_allowed,property_true);
    set_item_property('dept.mloc',update_allowed,property_true);
    set_item_property('dept.mdeptno',navigable,property_true);
    set_item_property('dept.mdname',navigable,property_true);
    set_item_property('dept.mloc',navigable,property_true);
    go_item('dept.mdeptno');
    set_item_property('dept.deptno',visible,property_false);
    set_item_property('dept.dname',visible,property_false);
    set_item_property('dept.loc',visible,property_false);
    Regards,
    Monica

  • How to display a new view from a nib ?

    how to
    display a new view from a nib in the main window after clicking on a button.
    When I click a the button named for example "goToGokyo", the link to my procedure
    runs correctly because I see my NSLog message "goToGokyo button pressed".
    My nib, which name is "GokyoViewController" does exist.
    I did as follow for the moment but I'm stuck now, my nib  :
    - (IBAction)goToGokyo:(id)sender
        NSLog(@"goToGokyo button pressed");
      //[self stopSound];
      if (gokyoViewController == nil)
            GokyoViewController *aGokyoViewController = [[GokyoViewController alloc]
                                                         initWithNibName:@"GokyoViewController" bundle:nil];
            self.gokyoViewController = aGokyoViewController;
            //[aGokyoViewController release];
        [self GokyoView:gokyoViewController animated:YES completion: nil];
    Thanks in advance for your advice.
    Cheers

    I did that now :
    - (IBAction)btnLoadMyViewController:(id)sender
        NSViewController *viewController = [[NSViewController alloc] initWithNibName:@"MyView" bundle:nil];
        NSView *view = [viewController view];
        [_myWindowController.window setContentView:view];
        //view addSubview:view];
        //[self.myView addSubview:view];
    Using
    "_myWindowController.window setContentView:view];"
    or
    "[self.myView addSubview:view];"
    does not an error but does nothing !
    Would you help me one more times please ?
    Thanks in advance

Maybe you are looking for