webMethods

webMethods

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
Expand all | Collapse all

How to limit the number of rows returned from Siebel......

  • 1.  How to limit the number of rows returned from Siebel......

    Posted Tue February 28, 2006 04:07 AM

    Hi,
    I have IS 6.0.1 and also i have recently installed Siebel Adapter 6.0. I have made a Siebel Java Connection. I want to know that whether we can limit the no. of rows while retrieving data from siebel server like we can set Max. rows in JDBC adapter.
    Actually my purpose is to make a small code that uses data from siebel server but the server being on on a different geography and network takes more than 2 hrs. to run a simple select query that returns more than 8000 records. I just want to limit the no. of records to say 10-20 in order to test my code.
    Please suggest me a solution to this.

    Thanks & Regards,
    Vijit J


    #Adapters-and-E-Standards
    #Integration-Server-and-ESB
    #webMethods


  • 2.  RE: How to limit the number of rows returned from Siebel......

    Posted Tue February 28, 2006 12:06 PM

    I’m not familiar with Sieble SQL, but there should be a syntax option to limit the number of retrieved rows.

    For example,

    [SQL Server] select top 10 * from my_table

    [Oracle] select * from my_table where rownum <= 10

    Howard


    #Adapters-and-E-Standards
    #webMethods
    #Integration-Server-and-ESB