Look up query

i have 2 queries. one has all customers info and another has manager info and list of customer belonging into. both are using diferent cubes
now i want to get customer from first cube and then his manager if any in another cube and display in cube . i am not allowed to have multi cube..
is there any way to achieve this?
query1: customer a
query 2: manager 1 --customer a
final query:  customer a , manager 1
please do help me

Well .. I guess that you have good reason to not use multiprovider, but, since this is THE solution for your problem ... I don't see any good way to do so without a MP. Maybe an infoset ?
You can also insert 2 queries int one workbook, with both sheets hidden, and rebuild the query result by the way of VBa, using VLOOKUP-like functions.

Similar Messages

  • JDBC look Up query taking more time to process

    Hi all,
      I am using JDBC Look Up in my project to retreive data from multiple tables.But the problem here is it is taking 10-12 minutes for processing the query which has around 770 records.So my question is there any way that i can reduce the time of processing query.
    Ex:Select EmpId from EmpTable where EmpId>500 and EmpName="Arun"
    Here I have 770 records and it is taking 12 minutes to retreive results.
    Is there any database tuning technique that we can use in JDBC Look up in PI?
    Thanks in Advance.
    Regards,
    Yeshwanth

    >   I am using JDBC Look Up in my project to retrieve data from multiple tables.But the problem here is it is taking 10-12 minutes for processing the query which has around 770 records.So my question is there any way that i can reduce the time of processing query.
    This is happening since you are executing the Query (Select F1 from tablename where segment1='X', segment2='Y',segment3='X1',segment4='Y1',segment5='X2',segment6='Y2') for each record. So, the execution is 770 times in your case, which means it is opening and closing DB Accessor channel 770 times which is basically causing performance.
    Better pass all fields in one Context as input to JDBCLookUP UDF and logically iterate by opening only one DB accessor.
    I am just providing a rough UDF code, so it might not work at first shot. Change it according to your requirement.
    Note: UDF should be advanced in nature (context or Queue)
    Sample Code
    Channel channel = null;
    Map rowMap = null;
    DataBaseAccessor accessor = null;
    DataBaseResult resultSet = null;
    try
              //Determine a channel, as created in the Configuration
              channel = LookupService.getChannel("<BUSINESSYSTEM>","<CHANNELNAME>");// give your service and channel
              //Get a system accessor for the channel. As the call is being made to an DB, an DatabaseAccessor is obtained.
              accessor = LookupService.getDataBaseAccessor(channel);     
    catch (Exception e1)
         e1.printStackTrace();
    for (i=0; i<a.length;i++ )
         //Query = "Select F1 from tablename where segment1='X', segment2='Y',segment3='X1',segment4='Y1',segment5='X2',segment6='Y2'";
         Query = "Select " + a<i> + " from tablename where segment1='X', segment2='Y',segment3='X1',segment4='Y1',segment5='X2',segment6='Y2'";
         try{
                   resultSet = null;
                   //Execute Query and get the values in resultset
                   resultSet = accessor.execute(Query);
                   for(Iterator rows = resultSet.getRows();rows.hasNext();)
                        rowMap = (Map)rows.next();
                        result.addValue((String)rowMap.get(a<i>)); //this statement might not be correct as your query is already fetching F1, so make some adjust in this statement accordingly
              catch(Exception e2)
                   //result.addValue(ex.getMessage());
                   e2.printStackTrace();
    try{
              if (accessor!=null)
                   accessor.close();
         catch(Exception e3)
              e3.printStackTrace();
    Let us know the outcome.......
    Regards,
    Praveen Gujjeti.
    Edited by: Praveen Gujjeti on Jun 29, 2010 10:38 PM

  • Looking for Query..

    sno name price date
    1 a 200 jan 2012
    2 b 300 feb 2012
    3 c 400 sep 2012
    4 d 260 dec 2012
    Output need:
    sno jan feb mar apr may jun jul aug sep oct nov dec
    1 200
    2 300
    3 400
    4 260
    I tried query like this. But for every month i have to write decode. Instead of this is there any alternative way. I need to design in Oracle Reports 6i.
    SELECT sno,
    MAX(DECODE(date,jan, price))Jan,
    MAX(DECODE(date,feb, price))feb,
    MAX(DECODE(date,apr, price))mar,
    MAX(DECODE(date,dec, price))dec
    FROM PRODUCTS
    Is ther any other way to write this sql
    DB:9i
    Thanks & Regards
    pallis

    Hi, Pallis,
    pallis wrote:
    sno name price date
    1 a 200 jan 2012
    2 b 300 feb 2012
    3 c 400 sep 2012
    4 d 260 dec 2012Always post CREATE TABLE and INSERT statements for your sample data.
    See the forum FAQ {message:id=9360002}
    Output need:
    sno jan feb mar apr may jun jul aug sep oct nov dec
    1 200
    2 300
    3 400
    4 260That looks like the feb-dec columns are always NULL. Is that what you meant, or did you mean something like this:
    sno   jan   feb   mar   apr   may   jun   jul   aug   sep   oct   nov   dec
      1   200                                 
      2         300
      3                                             400
      4                                                                     260? The same forum FAQ page explains how to use \ tags to post formatted text on this site.
    I tried query like this. But for every month i have to write decode. Instead of this is there any alternative way. I need to design in Oracle Reports 6i.
    SELECT sno,
    MAX(DECODE(date,jan, price))Jan,
    MAX(DECODE(date,feb, price))feb,
    MAX(DECODE(date,apr, price))mar,
    MAX(DECODE(date,dec, price))dec
    FROM PRODUCTS DATE is not a good column name.
    How are you defining variables such as jan that are used in the DECODE expressions?  You can use the SYSDATE and ADD_MONTHS functions to dynamically set them relative to today's date.  For the column aliases, you may need dynamic SQL.  (In SQL*Plus, this is fairly easy, using substitution variables.)  When you post the sample data, give a couple of different examples of output you would want from the exact same data.  E.g. "If I run the query today, or any time in January 2013, then I should get this output: ...  but if I run it in February 2013, then I want ..."
    Is ther any other way to write this sqlYes, therres another forum FAQ page on this topic. {message:id=9360005}
    Do you need 12 separate columns for the months, or would you accept one big string column, formatted to look like 12 columns?  String aggregation (which does *not* require dynamic SQL) might be an option.
    DB:9iAre you saying you're database version is Oracle 9?  What is the actual version number, e.g. 9.2.0.6.0?
    I don't know if Oracle Reports can pivot data.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Looking for Query Help

    Hello all
    I am having a problem and I hope you guys could help me with it. Essentially, I have to create a query. This essentially what my db tables look like.
    | Name | Status|
    |First | 1 |
    |First | 2 |
    |Second| 3 |
    |Second| 2 |
    |Third | 1 |
    From this table, I have to get the following table:
    |Name |Count Total|Count 1|Count 2|Count 3|
    |First | 2 | 1 | 1 | 0 |
    |Second | 2 | 0 | 1 | 1 |
    |Third | 1 | 1 | 0 | 0 |
    Here, "Count Total" is the total number of entries for each name, "Count 1" is the total number of entries with the Status 1 for each name, "Count 2" is for status 2, and so on.
    I have a feeling that this quiry can be done fairly easily, but I cannot envision it. Any help you guys could give would be great.
    Thank you in advance.

    Hi,
    How different value have you for status ?
    Only three ?
    SQL> select * from rk;
    NAME           STATUS
    First               1
    First               2
    Second              3
    Second              2
    Third               1
    SQL> ed
    Wrote file afiedt.buf
      1  select name, count(*), nvl(sum(decode(status,1,1)),0) count_1,
      2                         nvl(sum(decode(status,2,1)),0) count_2,
      3                         nvl(sum(decode(status,3,1)),0) count_3
      4  from rk
      5* group by name
    SQL> /
    NAME         COUNT(*)    COUNT_1    COUNT_2    COUNT_3
    First               2          1          1          0
    Second              2          0          1          1
    Third               1          1          0          0
    SQL> Or you can see an other post from today : Re: need query
    Nicolas.

  • Looking collection query for WMI Issue and obsolete computer list

    Hi 
    I want to create collection based on client having below issue.
    WMI Issue and obsolete 
    in one query.
    Kindly paste it

    hi Gokul,
    If you install the client status reporting tool on your environment its easy to find out the client health issues with a report and  for the obsolete entry query
    Client status reporting tool use http://technet.microsoft.com/en-us/library/cc161853.aspx
    http://rajsavi.wordpress.com/2012/08/20/installation-and-configuration-of-client-status-reporting-tool-for-sccm/
    WQL for duplicate entry:
    http://eskonr.com/2012/10/sccm-collectionreport-duplicate-computer-names-with-different-resource-id/
    Kamala kannan.c| Please remember to click “Mark as Answer” or Vote as Helpful if its helpful for you. |Disclaimer: This posting is provided with no warranties and confers no rights

  • Looking for query for below output?

    Hello Experts,
    I have couple of master tables and those are linked with my audit table.
    For example, below are 2 master tables,
    CREATE TABLE MASTER1 (MASTER1_UID INT IDENTITY(1,1) PRIMARY KEY, MASTER1_VAL VARCHAR(10))
    INSERT INTO MASTER1 (MASTER1_VAL) VALUES ('VAL1'), ('VAL11'), ('VAL111')
    --SELECT * FROM MASTER1
    CREATE TABLE MASTER2 (MASTER2_UID INT IDENTITY(1,1) PRIMARY KEY, MASTER2_VAL VARCHAR(10))
    INSERT INTO MASTER2 (MASTER2_VAL) VALUES ('VAL2'), ('VAL22'), ('VAL222')
    --SELECT * FROM MASTER2
    Now, I have a audit table like below,
    CREATE TABLE AUDIT(BOOK_ID INT, FIELD_NAME VARCHAR(10), OLD_VAL VARCHAR(10), NEW_VAL VARCHAR(10))
    INSERT INTO AUDIT VALUES (10, 'FIELD1', 'TEST-1', 'TEST-2'), (10, 'FIELD2', '1', '2'), (10, 'FIELD3', '1', '2')
    --SELECT * FROM AUDIT
    Here,
    1. "FIELD2" data (1 & 2) linked with "MASTER1" table
    2. "FIELD3" data (1 & 2) linked with "MASTER2" table
    Now, I need to query on "AUDIT" table JOIN with master tables "MASTER1" & "MASTER2"and need below output,
    Note - I having 15 master table and data in audit table with relation with those master tables.
    Please suggest some query on this? Thanks!
     

    CREATE TABLE MASTER1 (MASTER1_UID INT IDENTITY(1,1) PRIMARY KEY, MASTER1_VAL VARCHAR(10))
    INSERT INTO MASTER1 (MASTER1_VAL) VALUES ('VAL1'), ('VAL11'), ('VAL111')
    --SELECT * FROM MASTER1
    CREATE TABLE MASTER2 (MASTER2_UID INT IDENTITY(1,1) PRIMARY KEY, MASTER2_VAL VARCHAR(10))
    INSERT INTO MASTER2 (MASTER2_VAL) VALUES ('VAL2'), ('VAL22'), ('VAL222')
    --SELECT * FROM MASTER2
    CREATE TABLE AUDIT(BOOK_ID INT, FIELD_NAME VARCHAR(10), OLD_VAL VARCHAR(10), NEW_VAL VARCHAR(10))
    INSERT INTO AUDIT VALUES (10, 'FIELD1', 'TEST-1', 'TEST-2'), (10, 'FIELD2', '1', '2'), (10, 'FIELD3', '1', '2')
    --SELECT * FROM AUDIT
    --select * from MASTER1
    --select * from MASTER2
    ;with mycte as (
    select * from Audit
    cross apply (values(Cast(Old_Val as varchar(50))),(Cast(New_Val as varchar(50)))) d(val)
    ,mycte1 as (
    Select BOOK_ID,FIELD_NAME, val, MASTER1_VAL, MASTER2_VAL
    , row_number() Over(Partition by FIELD_NAME Order by val ) rn from mycte m0
    Left join Master1 m1 on m0.val=Cast(m1.MASTER1_UID as varchar(50)) and m0.Field_NAME='FIELD2'
    Left join Master2 m2 on m0.val=Cast(m2.MASTER2_UID as varchar(50) ) and m0.Field_NAME='FIELD3'
    Select BOOK_ID, FIELD_NAME, [1] as OLD_VAL,[2] as NEW_VAL from
    (Select BOOK_ID,FIELD_NAME, rn,coalesce(MASTER2_VAL, MASTER1_VAL, val) as val from mycte1) src
    pivot (max(val) For rn in ([1],[2],[3])) pvt
    drop table MASTER1,MASTER2,AUDIT

  • Override a Look Up SQL Query

    Is it possible to override the look up SQL query in the Key Look Up Operator?
    Suppose I want to run the following query
    select customer, max(revenue) from CUSTOMER group by customer_id and then look up the customer id and get the max revenue from the look up and populate the target table.
    Is it possible with a Key Look Up operator or we need to use an aggregator and join it with the main flow.

    You are spot on. Thats what I have experienced while working with OWB for the last couple of months.
    1.The look up is actually a join. Dont understand then why it is called a look up. It should have been called a pseudo joiner.
    2. The second irritating part is - there is nothing called a multiple look up match policy. If more than one records are matched,then the records loaded to the target are also increased. You dont have something called " Select first match " or "Select last match" etc etc.
    3. You dont have the facility to override the look up query, which can at times be required and can be a very smart way of doing a mapping.
    3. Due to this poor functionality of the key look up operator, I was myself compelled to split a single innocent looking mapping to two parts, which is painful.
    An ETL tool having this kind of look up functionality, I am afraid is pathetic.
    I am eager to see what changes they make in 10g R2 if at all.#
    regards
    -Arnab

  • Multiple executions of a query found in the ADDM Report

    Hi,
    I generated an ADDM Report on my DB for the time when the DB performance was very slow. Below are some lines from it:
    RECOMMENDATION 1: SQL Tuning, 15% benefit (28820 seconds)
    ACTION: Run SQL Tuning Advisor on the SQL statement with SQL_ID
    "725bgkkhqs73v".
    RELEVANT OBJECT: SQL statement with SQL_ID 725bgkkhqs73v and
    PLAN_HASH 2688602638
    select column1,column2 from table1;
    ACTION: Investigate the SQL statement with SQL_ID "725bgkkhqs73v" for
    possible performance improvements.
    RELEVANT OBJECT: SQL statement with SQL_ID 725bgkkhqs73v and
    PLAN_HASH 2688602638
    select column1, column2 from table1;
    RATIONALE: SQL statement with SQL_ID "725bgkkhqs73v" was executed 32 times and had an average elapsed time of 900 seconds.
    Can anyone help me out with the reason behind these repeated executions of the SQL query thus resulting in a avg elapsed time of 15 mins. Also, I could see that some queries ran on the DB even for 145,445,335 times, however the total time elapsed for executing these queries was only 0.000048 seconds.
    COuld it be because there was exclusive locks on those tables during the times there queries were getting executed or do I need to look at query tuning here? Kindly help.

    yeah. posting it here:
    select column1,column2 from table1;
    Plan hash value: 2688602638
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | | | 4 (100)| |
    | 1 | HASH GROUP BY | | 1 | 77 | 4 (25)| 00:00:01 |
    | 2 | TABLE ACCESS BY INDEX ROWID| column1 | 1 | 18 | 1 (0)| 00:00:01 |
    | 3 | NESTED LOOPS | | 1 | 77 | 3 (0)| 00:00:01 |
    | 4 | TABLE ACCESS FULL | column2 | 1 | 59 | 2 (0)| 00:00:01 |
    | 5 | INDEX RANGE SCAN | x_abc | 1605 | | 1 (0)| 00:00:01 |
    SQL_ID 725bgkkhqs73v
    select column1, column2 from table1;
    Plan hash value: 2947532035
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | | | 4 (100)| |
    | 1 | HASH GROUP BY | | 41 | 1476 | 4 (50)| 00:00:01 |
    | 2 | TABLE ACCESS BY INDEX ROWID | column1 | 14 | 252 | 1 (0)| 00:00:01 |
    | 3 | NESTED LOOPS | | 50 | 1800 | 2 (0)| 00:00:01 |
    | 4 | TABLE ACCESS BY INDEX ROWID| column1 | 3 | 54 | 1 (0)| 00:00:01 |
    | 5 | INDEX RANGE SCAN | X_abc| 1602 | | 1 (0)| 00:00:01 |
    | 6 | INDEX RANGE SCAN | XAK_def| 14 | | 1 (0)| 00:00:01 |
    Does this shed any light?
    Thanks in advance for all your help!

  • How to check the sql:query is return null value

    I have use :
    <sql:query var="sql1" dataSource="${db}">
    select col_name from table_name
    where a=<c:out value="${row.test1}"/>
    and b='<c:out value="${row.test2}"/>'
    </sql:query>
    So, how can I check this statement return null value which is no record within this table?

    The Result should never be null but can be empty. You can check if the Result is empty using an if tag and checking the rowCount property:
        <sql:query var="books"
          sql="select * from PUBLIC.books where id = ?" >
          <sql:param value="${bookId}" />
        </sql:query>
         <c:if test="${books.rowCount > 0}">
         </c:if>http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSTL7.html#wp84217
    Look for query Tag Result Interface

  • How to find query/program/rdf behind EBS default XML reports

    There is a report in Purchsing Module "Standard Purchase Order " its data group name is "Standard Purchase Order Data Source" and Code is "PO_STANDARD_PO". i couldn't find its concurrent program. I am looking for query behind this report. how can i find this.

    You can find it using sql trace...
    refer this article..
    http://prasanna-adf.blogspot.com/2009/01/sql-trace.html
    Note: post these questions in EBS general discussion.
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                           

  • Equipment count incorrect in query

    Hello BI Gurus,
    We are facing the following problem. I have a report requirement in the following format.
                         Sep-07     Oct-07     Nov-07     Dec-07
    Total No of Machines      11     11     12     12
    Machines relate to Equipment here. I am extracting this data from 0equipment_attr. This report is for a given Region, Plant and for a particular type of machine.
    The problem here is as follows.
    Let us suppose that equipment moves from plant X  to another plant Y in September and later to plant Z.
    Equipment should reflect the changes in Total number of machines.
    Currently, Equipment has "From" and "To" date. Based on this, I am getting this value in calmonth,
    let us say for example for
    Equipment                 From date                 To Date                  Calmonth     Plant
    400000          17.07.2008     01.01.1000     
    400000          24.12.2008     18.07.2008     07.2008     1101
    400000          31.12.9999     25.12.2008     12.2008     1103
    Though, I am getting Calmonth correctly to indicate the status of the equipment present for that month..
    I have 2 problems, first of all, at query level, it just shows 1 record with the latest month that is in this case , Dec 2008. but incase of equipment master i do see both the records..
    In my reporting requirement, It needs to have history data over 12 months, so a given equipment will not indicate the status correctly..
    As we see in the above example, equipment 400000 is moved from plant 1101 to 1103, when i look at query, it just shows me one record which is the latest..
    I believe the problem here is with time dependency. calmonth is time dependent attribute in 0equipment, if i turn it time independent, all the values in calmonth will be same, i.e 12.2008 which should not be the case..
    So in short there are 2 problems, how do i get the correct status of equipment at monthly level with the current scenario and second one will be for the months where there is no movement of equipment, it should show the correct count of equipment.,.
    Please advice..
    Thanks in advance,

    Hi Vipul,
                 Check this url.....
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/009819ab-c96e-2910-bbb2-c85f7bdec04a
    Thanks,
    Vijay.

  • Subject: Cannot see the characteristic/variable in a query

    I am in a query designer. I am looking at query 0TCT_MC21_Q404. It sees under Characteristic Restriction,
    A characteristic 0CALWEEK which is restricted by the variable 0CWEEK-26-0CWEEK which is last 26 weeks.
    My problem is I do not see this any where under Dimensions->Time->0CALWEEK->Chacateristic Value Variables why? Where can I find this variable and drag and drop to set another query.
    Thanks a lot,

    I still do not see them. As I said it is SAP exit variable.
    What is intestesrting, it is for a characteristic 0CALWEEk [Week}
    but if you look under Dimensions, there is no chacateristic like that, instead it 0CALWEEK [Calendar Year/Week|. Why two descriptions are different even though technical namse is the same.

  • Problem in populating lookup values based on the lookup query from database

    HI all
    I have problem of population look-up values based on look-up query
    I am giving the details what i am trying
    I need to populate the values from the UD_LDAP_USR table into the field of UD_USRGRPC_NisNetTriple of type lookup
    i planned to set the properties of lookup as like this
    look up query as select UD_LDAP_USR_COMMON_NAME as NisNetTriple from UD_LDAP_USR
    ColumnNames as UD_LDAP_USR_COMMON_NAME
    Column captions as UD_LDAP_USR_COMMON_NAME
    Column width as 30
    Lookup Column Name as UD_LDAP_USR_COMMON_NAME
    But when i try to add ColumnName as wht i mentioned above i m getting invalid property exception,update failed
    I am not sure about that are we able to use other Connector table prefix with UD into the another processFrom
    Let me give update on this issue
    Urgent,struck my work here
    thanks
    Nagaraj

    Thanks for the reply raghav
    I tried but it was not working
    I gave like what u specified but no use
    It is throwing exception like set look-up query for the field
    Any one help me out on this issue
    Edited by: Nagaraju Chowdary on Jan 21, 2013 3:41 AM
    Edited by: Nagaraju Chowdary on Jan 21, 2013 3:42 AM

  • Steps involved in Query execution

    Can anyone please suggest the exact steps that take place in a query execution. I know on the broad level. But I want to know to basic level. For example we would like to know all the steps that an OLAP processor does to get the data, process it and then send it for display.
    Also, say the total time taken for the query execution is xx msec, we would like to know the complete break up of this time for all the activities that are completed from the time of query execution till the display of result.
    Thanks

    Hi Suchitra,
    Please go through these links:
    /people/vikash.agrawal/blog/2006/04/26/in-what-147sequence148-olap-processor-look-for-query-relevant-data
    /people/prakash.darji/blog/2006/01/26/query-optimization
    Assign points if helpful
    Thanks,
    Amith

  • I need to know the proper syntax for my SELECT query, please.

    Hello All,
    Quick one for you:
    Let's say that I have several columns in a table with names such as subject_1, subject_2, subject_3, etc. The table's name is subject_names.
    The number in each of the three column name examples is also a value passed along a query string, the user can select choices, 1, 2 or 3. That query string's variable is $qs.
    So, what I want is a SELECT query that uses the query string value as follows (KEEP IN MIND, I know this is not the proper syntax):
    "SELECT subject_[$qs]
    FROM subject_names";
    I have tried all sorts of cominations of quotes (single and double), dots, brackets, braces and parenthesis. I just want to know how to include such a variable within this code.
    Any and all help is sincerely appreciated!
    Cheers,
    wordman

    Well, I did give you the syntax though.
    $query = 'SELECT ' . $qs . ' FROM tbl_name';
    I put spaces between the periods this time to make it more clear.
    If you put the actual word 'subject' in there and just want your form to name it's options as the numbers available you could do this:
    $query = 'SELECT subject_' . $qs . ' FROM tbl_name';
    In PHP you can use either single or double quotes around your query string, I always just use single quotes. I see a lot of other use double quotes.
    Double quotes would look like:
    $query = "SELECT subject_' . $qs . ' FROM tbl_name";
    Or when using double quotes you can actually just place the variable right in the string without having to concatenate multiple strings like above.
    Since you mentioned that you are good with passing variables I probably don't have to mention that you need to set the value attribute of your option tags (if you are using a select) to the value you want them to pass.
    Ex:
    <select name="choices">
         <option value="1">1</option>
         <option value="2">2</option>
         <option value="3">3</option>
    </select>
    If you have that part all figured out then you can use the syntax above for your query string.
    Good luck.

Maybe you are looking for

  • Desktop Manager 4.3 fails to Launch

    Hi all Just upgraded to DTM 4.3, and it fails to show any icons on the screen just a blank white box. Currently running XP SP2 on my PC, had no problems with the older versions of DTM. I've tried removing it and installing it again, but the same prob

  • Connecting laptop to desktop

    Can I connect my macBook to my iMac, sort of like an external hard drive, so I can pull large files off it? If so, what cable/port should I use? iMac G5   Mac OS X (10.4.5)   iMac G5   Mac OS X (10.4.5)  

  • Landscape and Portrait command

    Hello, can u give me a help? How can we send by command the layout to the report. I have this report in portrait layout disposicton but i want to send the landscape command to printer.... There is anything for that....???'

  • RDBMS 11.1.0.7 on Linux

    Hi to Everyone, Do you know how is it the status of 11.1.0.7 release for Linux? Its expectancy was for late August, which year? Thanks a lot. Best Regards, Nazzareno

  • Cache performance issues

    I was able to add indexes to a cache. This cache holds objects which contain all the rows in one of our database tables. I run a sql query using hibernate on the database table, and then run the same query using filters on the cache. I am not noticin