Request for map lookup table

I would like to map table with look up table B, how can I write a query on ORACLE 10 G?

Table A

ID SITE_ID NAME
112345THE, switch
124567HONG KONG, switch
136789TOKYO, 2

Table B

SITE_ID NETWORK
2345MPLS
2345NORTH AMERICA
4567ASIA
6789ASIA
6798MPLS

Output

ID SITE_ID NAME NETWORK
112345THE, switchMPLS, AMERICA, NORTH
124567HONG KONG, switchASIA
136789TOKYO, 2ASIA, MPLS

Here the metadata

create table A

(Identification number,

Number SITE_ID,

NAME varchar2 (20)

);

insert into one

Select 11, 2345, ' THE switch ' double

UNION ALL

Select 12, 4567, 'HONG KONG, switch' double

UNION ALL

Select 13, 6789, 'TOKYO, 2' the double '.

create table B

(

Number SITE_ID,

NETWORK varchar2 (20)

);

Insert into B

Select 2345, "MPLS" of the double

UNION ALL

Select 2345, "Northern AMERICA" double

UNION ALL

Select 4567, 'ASIA' double

UNION ALL

Select 6789, 'ASIA' double

UNION ALL

Select 6789, "MPLS' from dual

Maybe

with

A, as

(select 11 ID: 2345 SITE_ID ", switch" NAME of double UNION ALL)

Select 12, 4567, 'HONG KONG, switch' from dual UNION ALL

Select 13, 6789, 'TOKYO, 2' the double '.

),

B as

(select 2345 SITE_ID, "MPLS" dual UNION ALL NETWORK

Select 2345 'NORTH, AMERICA' from dual UNION ALL

Select 4567, 'ASIA' double UNION ALL

Select 6789, 'ASIA' double UNION ALL

Select 6789, "MPLS' from dual

)

Select a.id, a.site_id, b.SID, b.network

a,.

(select site_id, min (substr (sys_connect_by_path (network,'; 3)) network))

of (site_id, network, row_number () select on rn (partition by site_id) arrested by network

b

)

where connect_by_isleaf = 1

connect prior rn + 1 = rn

and prior site_id site_id =

and prior sys_guid() is not null

Site_id group

) b

where a.site_id = b.site_id

order by id

ID SITE_ID NAME NETWORK
11 2345 THE, switch MPLS; NORTH AMERICA
12 4567 HONG KONG, switch ASIA
13 6789 TOKYO, 2 ASIA; MPLS

Concerning

Etbin

Tags: Database

Similar Questions

  • How to create the formula with the lookup table

    Hi, I would like to convert formula in the below format of labview, no idea how this could be done more easy way?

    I intend to use the node form, but I'm not sure how to use the table of choice within the formula not or is that even possible?

    BR, Jani

    Dim dblLookUp (-) As Double = New Double (3, 1) {{4, 4}, {10, 200}, {60, 3000}, {100, 7000}}
       
    If dblAbsValue > = 0 and dblAbsValue<= dbllookup(0,="" 0)="">
    USB = dblLookUp (0, 1) / dblLookUp (0, 0)
    dblAbsValue = dblValue * USB
    ' lblMode.Text = 1
    ElseIf dblAbsValue > dblLookUp (0, 0) and dblAbsValue<= dbllookup(1,="" 0)="">
    USB = (dblLookUp (1, 1) dblLookUp (0, 1)) / ((1, 0) - dblLookUp dblLookUp (0, 0))
    dblValue = USB * dblAbsValue - USB * dblLookUp (0, 0) + dblLookUp (0, 1)
    ' lblMode.Text = 2
    ElseIf dblAbsValue > dblLookUp (1, 0) and dblAbsValue<= dbllookup(2,="" 0)="">
    USB = (dblLookUp (2, 1) dblLookUp (1, 1)) / (dblLookUp (2, 0) - dblLookUp (1, 0))
    dblValue = USB * dblAbsValue - USB * dblLookUp (1, 0) + dblLookUp (1, 1)
    ' lblMode.Text = 3
    ElseIf dblAbsValue > dblLookUp (2, 0) and dblAbsValue<= dbllookup(3,="" 0)="">
    USB = (dblLookUp (3, 1) dblLookUp (2, 1)) / (dblLookUp (3, 0) dblLookUp (2, 0))
    dblValue = USB * dblAbsValue - USB * dblLookUp (2, 0) + dblLookUp (2, 1)
    ' lblMode.Text = 4
    On the other
    dblValue = dblLookUp (3, 1) ' * Math.Sign (dblValue)
    ' lblMode.Text = 5
    End If

    Return dblValue * intSign

    Hello janijt,

    You can certainly use formula node for it. What you would do is to create a constant for the lookup table.

    Here is an implementation in MathScript node

  • Best way to parse a string for use in a lookup table?

    I am trying to create a system by which users can create a premade simulation and store simulations in order to easily load at their convenience. The way it works now is that when the user creates a simulation, information on the characteristics of the simulation are condensed down to a 12 string, which is written in a text file with the same name as its content. This string is then read, and ideally, I would have some sort of lookup table to convert characters in the information they have been condensed to. For example, a variable X can have possible values {650,720,851} who gets the mapping to {A, B, C} during the creation process. When loading, I would be able to send in a Sub C - VI and took her out in 851, group in a cluster. How can I perfectly realize this in LV? So far the best I have is this messy thing:

    Basically, who runs the string character by character and includes the appropriate value for the character at the given offset.

    You want to use the configuration VI palette.

    These screws makes it stupid simple save and load the values in the file by using Sections and keys.

    You can use the keys 'A', 'B' or 'C' and section 'X' to complete your example.

  • Request for collection of statistics table

    Hey there,

    I'm currently get training in Oracle and one of the questions I have been create a table, insert 1 million rows and try to find the number of lines in there. I tried the following steps to resolve this,

    First create the table
    SQL> create table t1(id number);
    
    Table created.
    Inserting data
    SQL> insert into t1 select level from dual connect by level < 50000000;
    
    49999999 rows created.
    Gathering statistics
    SQL> exec dbms_stats.gather_table_stats('HR','T1');
    
    PL/SQL procedure successfully completed.
    At last count the number of lines
    SQL> select num_rows from user_tables where table_name='T1';
    
      NUM_ROWS
    ----------
      49960410
    
    SQL> select count(*) from t1;
    
      COUNT(*)
    ----------
      49999999
    My version of the database is,
    SQL> select * from v$version;
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    I would like to know why there are two different for the same table results when you use "num_rows' view 'user_tables' and the 'count()' during the same aggregate function table. Please keep in mind that I am student oracle and it comes from a conceptual point of view only. I would like to know how to collect statistics on table works by using dbms_stats package works.

    Thank you
    Vishal

    Normally, Yes, statistics collection is intended to provide the optimizer with estimates that are good enough to allow the optimizer make informed decisions on what query to choose plans. Statistics are also a snapshot of a particular moment - you would expect that the actual number of rows in the table will change over time, while statistics remain constant until the next call to DBMS_STATS.

    You can force DBMS_STATS to do more work to collect more detailed statistics by doing things like specifying a sample size of 100%. It is rarely necessary or appropriate, however, to do this.

    Justin

  • Where we use lookup table?

    Hello

    Where we use lookup table?

    Thank you

    POOJA

    Hi Pooja,

    Look up table stores data. Look up table data is automatically updated with other data.

    It is used in the "update rule". Look up table has two columns, one for the original values for the changed values.

    Here is a link where you can get more help on implementing of lookup table:

    "If this, then that"-a Guide to create Lookup Tables in Eloqua

    The link "update rule:

    How to run an update rule set with a Table of choice on a shared list

    I hope this helps.

    Kind regards

    Eloqua Experts Edynamic

  • Field in a lookup table values

    Hello

    A lookup table must contain all the values in a field, or can he communicate with a small selection you want to normalize.

    I want to test a small set of data before starting a washing machine coordinate complete, mainly to prove the simplicity for power.

    Thank you

    Hi James,

    You can include values as little or as much as you want in the Lookup Table. You have the complete control on which you will find the values and what the replacement values will be.

    Brad

  • Date of max from the entire lookup table

    Hello people:

    I hope that this discussion finds you well.  I have 2 tables (MED_IMMUNO and LU_MED_IMMUNO).  "MED_IIMMUNO" is the base table, and "LU_MED_IMMUNO" is the lookup table for the column 'IMM_REC '.  Please see CFDS below:

    TABLE: MED_IMMUNO

    CREATE TABLE 'MED_IMMUNO' ('ID', 'EMP_ID' NUMBER, NUMBER OF "IMM_REC", "IMM_DATE" DATE, VARCHAR2 (255) 'IMM_NOTES', 'IMM_APPLICABLE' NUMBER, NUMBER OF "IMM_REFUSED")

    /

    INSERTION of REM in MED_IMMUNO

    TOGETHER TO DEFINE

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (55,8474,5,to_date('12-JAN-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (56,8474,6,to_date('26-JUN-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (57,8474,8,to_date('10-JAN-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (58,8474,9,to_date('13-FEB-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (59,8474,10,to_date('26-JUN-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (60,8474,22,to_date('10-JAN-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (61,8474,4,to_date('10-JAN-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (62,8474,16,to_date('10-JAN-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (63,8474,17,to_date('10-JAN-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (64,8474,11,to_date('10-JAN-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (65,5900,1,to_date('19-JUN-11','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (66,5900,2,to_date('17-JUL-11','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (67,5900,3,to_date('20-DEC-11','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (68,5900,22,to_date('19-JAN-11','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (69,5900,4,to_date('19-JAN-11','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (70,5900,14,to_date('19-JAN-11','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (71,5900,17,to_date('19-JAN-11','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (72,5900,16,to_date('19-JAN-11','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (73,10069,5,to_date('16-JAN-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (74,10069,6,to_date('24-FEB-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (75,10069,8,to_date('16-JAN-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (76,10069,9,to_date('24-FEB-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (77,10069,22,to_date('05-DEC-11','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (78,10069,4,to_date('02-JAN-12','DD-MON-RR'),null,null,null);

    Insert into MED_IMMUNO (ID, EMP_ID, IMM_REC, IMM_DATE, IMM_NOTES, IMM_APPLICABLE, IMM_REFUSED) values (79,10069,16, null, null, null, null);

    Try this:

    WITH max_date AS

    (

    SELECT emp_id, imm_rec, max (imm_date) imm_date

    OF MED_IMMUNO M

    GROUP BY emp_id, imm_rec

    )

    DIS_MED_IMMUNO AS

    (

    SELECT DISTINCT M.emp_id

    OF MED_IMMUNO M

    )

    tmp AS

    (

    SELECT *.

    OF DIS_MED_IMMUNO

    CROSS JOIN LU_MED_IMMUNO

    )

    Tmp.emp_id SELECT emp_id, tmp.ID, tmp. IMM_DESC, M.imm_date

    OF tmp LEFT OUTER JOIN max_date M

    ON tmp.emp_id = M.emp_id

    AND tmp.ID = M.IMM_REC

    ORDER BY tmp.emp_id, tmp.ord

  • Tree of the University campus solutions 9.0 organization and Lookup Table question

    People,

    Hello. I'm creating 9.0 Solution Campus of a college. I confront the issue as below:

    Implement AWAR > Foundation Table > academic Structure > academic organization

    I implemented the academic organization of these data Table: in addition to academic departments, I also type in academic institutions and academic groups.

    Then I create academic organization tree using the tree Manager. The tree is verified and valid a date of entry into force.

    Then I put in place the 2 tables below:

    Implemented AWAR > Foundation Table > academic Structure > program academic table

    Implemented AWAR > Foundation Table > academic Structure > Table of different disciplines

    Table of research of the academic organization developed in the 2 above table successfully. But when I put in place the other 2 tables below, search for academic organisation table does:

    Implement > AWAR > Security > secure Administration of the student > user ID > Security academic organization

    Curriculum management > Catalogue > Catalogue courses > tab offer

    I understand that the 2 tables above are based on the tree of academic organizations and not on the academic organization Table. I see no error in the tree.

    Because the search for academic organisation table can't happen in the tab 'Offers' course catalogue, the course cannot be saved.

    My question is:

    Any folk can help resolve the issue of the "academic organization lookup table cannot mount security academic organization and in the tab catalog of courses'? Or any suggestion on the tree of the academic organizations?

    Thanks in advance.

    Perform the following procedure:

    Home > ACSS configuration > Security > secure Administration student > process > security update - Acad Orgs

    After the execution of the process, check the lookup tables.

  • API: get the contents of a lookup table?

    Hello

    I have a small application that automates the deployment of applications. He, among others, should be able to make calls in VSM.

    I used a previous version of the API with infraEnterpriseAPI.asmx as an entry point, so I'm not totally familiar with that.

    Now, to make a call, the user of my application needs to fill out some information:

    -Call description

    Status - IPK

    -The group in support of the appeal must be sent to

    And that's all. There is another piece of information that is too full, but I put all those automatically.

    Now, I want to give my menus drop down users about the status of the IPK and the "Forward To" field, because I want to choose what type of call, it should be and who to send it to. They don't know the names or the refs of the IPK statutes or support groups, and they shouldn't have to.

    Problem is that I have no idea how to do to get the content of the API lookup tables. Is it possible to do? Or should I (as I did for the previous version) that information straight out of the database?

    Best regards

    Kris

    I think I'll just query the database directly... which seems quite a lot easier.

  • Lookup tables

    I'm new to BC.  I use the CRM Web Service API.  The OrderList_Retrieve method returns data contains it statusTypeID and orderType.  Y at - it any documentation that contains the possible values for these fields or all the other lookup tables that uses BC?

    My eyes meet right now with all the documentation I read so I hope that's not look me in the face.  Any help finding this information is greatly appreciated.

    I found this thread.  It seems the status and StatusTypeID list is different for each site.  I have to write a quick and dirty program see the codes associated with the status text.

    What are the values and the meaning of PaymentStatusID and statusTypeId of the API

  • View object database lookup Table

    Hello

    I use JDeveloper 11.1.1.6.0.

    Reading Guide of Fusion Developer's for ADF on the sharing of the application module, I found the following note in Section 10.3.1

    Note:

    While the view read-only objects that you create to access lookup tables are ideal for inclusion in a module of the shared application, if you want to share the view object in an instance of shared application module, you must create the view object in the same package as the module of the shared application.

    My question is, why the view object must be in the same package as the module of the shared application? What are the consequences if it is not respected?

    Thank you.

    Kind regards

    Tim

    Hello

    to me, this looks like a bug in the documentation. I think that its meant to say that both, I and VO must be in the same project structure (the application package should not serious). However, I haven't run a physical test, so do not know if there would be a class path search problem (but why should there be). Probably best for you just run a test.

    Frank

  • How to prevent "a request for the item is now underway."

    Hello guys,.

    Im getting this error very often, is there a solution to this?

    Error: Requested Item is not available. A request for the item is now underway.
    at mx.data::ConcreteDataService/resolveReference() [C:\depot\DataServices\trunk\frameworks\pr ojects\data\src\mx\data\ConcreteDataService.as:2203]
    at mx.data.utils::Managed$/getProperty() [C:\depot\DataServices\trunk\frameworks\projects\dat a\src\mx\data\utils\Managed.as:183]
    to sgrh::_Super_Empresa/actividade() [C:\wlcds\sgrh\src\sgrh\_Super_Empresa.as:198] get
    at mx.data.utils::Managed$/internalCompare() [C:\depot\DataServices\trunk\frameworks\projects \data\src\mx\data\utils\Managed.as:648]
    at mx.data.utils::Managed$/arrayCompare() [C:\depot\DataServices\trunk\frameworks\projects\da ta\src\mx\data\utils\Managed.as:696]
    at mx.data.utils::Managed$/internalCompare() [C:\depot\DataServices\trunk\frameworks\projects \data\src\mx\data\utils\Managed.as:608]
    at mx.data.utils::Managed$/ http://www.adobe.com/2006/Flex/MX/Internal: Compare () [C:\depot\DataServices\trunk\framewor ks\projects\data\src\mx\data\utils\Managed.as:522]
    to mx.data::ConcreteDataService / http://www.Adobe.com/2006/Flex/MX/internal:getDataListWithFillParams ([C:\depot\DataServi ces\trunk\frameworks\projects\data\src\mx\data\ConcreteDataService.as:3751])
    at mx.data::ConcreteDataService/internalFill() [C:\depot\DataServices\trunk\frameworks\projec ts\data\src\mx\data\ConcreteDataService.as:7178]
    function / < anonymous > () [C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\data\C oncreteDataService.as:1317]
    at mx.data::ConcreteDataService/fill() [C:\depot\DataServices\trunk\frameworks\projects\data\ src\mx\data\ConcreteDataService.as:1336]
    at mx.data::DataManager/fill() [C:\depot\DataServices\trunk\frameworks\projects\data\src\mx\d ata\DataManager.as:1560]
    to _Super_FuncionarioService / getByEmpresa () [C:\wlcds\sgrh\src\sgrh\_Super_FuncionarioService .as:341]
    at mz.mysoft.sgrh.telas::ListaFuncionarios/reset_clickHandler() [C:\wlcds\sgrh\src\mz\mysoft\ sgrh\telas\ListaFuncionarios.mxml:58]
    at mz.mysoft.sgrh.telas::ListaFuncionarios/__reset_click() [C:\wlcds\sgrh\src\mz\mysoft\sgrh\ telas\ListaFuncionarios.mxml:84]

    Kind regards

    Marie Pierre

    Errors of ItemPending means that the customer of data services will look for an item that has been marked as lazy or load on request.  This should be an event waited and managed by the code of any ACE that touches a collection of table who has lazy elements in it.  Eg the AsyncListView in Flex component automatically manages these errors, as the DataGrig Halo (mx:DataGrid).

    See the documentation on the mistakes of ItemPending here: http://help.adobe.com/en_US/LiveCycleDataServicesES/3.1/Developing/WSc3ff6d0ea77859461172e 0811f00f6f6de - 7ffcUpdate.html #WSc3ff6d0ea77859461172e0811f00f7045b-7f4aUpdate

    Tom

  • text for the AF:table filter selection

    Another niggle, this time with af:table filters user interface. I don't know if they are designed to behave this way, but it's a problem for us. Happens in IE, Firefox, Chrome, and probably others.

    In the table on the following page:
    http://jdevadf.Oracle.com/ADF-richclient-demo/faces/components/table/filterableTable.JSPX

    Click in one of the column filters, type something like SIMPSAN. Now, I want to fix my fault for obvious typo to SIMPSON. If I click on the text I typed, everything is selected. I can delete and retype my filter text. However, I just want to change a character, I find it quite impossible to not have this behavior 'select all' - i.e. I can't click on 'in' the word, or use cursor left keys to the right to navigate to the fault of strike.

    It is not the end of the world to type a name again, but if you made a mistake on a 12 characters ID...  :-)

    Is this a feature? If so, how can I disable it?

    Kind regards
    Barry.

    Hello

    Since it is not impossible to keep the string is entered, I filed this as a request for improvement, not a bug. The ideal behavior would be that a click sets the cursor where you clicked on to. If the user wants to replace the entire entry it can press ctrl + click after.

    Frank

  • ORCL:lookup - table problem

    Hi all

    I try to use the orcl: lookup-table of a view, where I pass an id and return the model No.

    ORCL:lookup - table("CCS_DFLT_TEMP_BY_PERSON","emplid",ns0:EmplId,"UP_TEMPLATE_NO","JDBC/PersonStore")

    Problem is that the CCS_DFLT_TEMP_BY_PERSON is a view and not a table.

    Any ideas on how I can solve this problem. I have a collection of data and I loop data in my transformation and so why I need lookup table to work for a view.

    Thank you very much

    K

    You can also make use of xquery?
    http://download.Oracle.com/docs/CD/E13159_01/OSB/docs10gr3/Userguide/XQuery.html#wp1101433
    FN - bea: execute - sql)

  • fetch the request for resources

    Hello

    How to retrieve all resource requests using a method?

    The below method returns requests for an object of resource of spefic with ' approved '.

    tcResultSet rs = reqIntf.getRequestsForObject ("iPlanet user", "approved");

    I want to retrieve all resource requests.

    Thanks and greetings
    Inbaa

    public Thor.API.tcResultSet findRequests (phAttributeList, java.util.Map)
    throws Thor.API.Exceptions.tcAPIException,
    tcAPIException

    Returns a list of queries that match the list of attributes provided.

    Just give your criteria in the list (you can see this API in the given link)

    I have not tried but give:

    Map = new Hashmap();
    a.put ("Objects.Object Status.Status", "*");

    Then you can sort this resultset depends on your use case.

    It should work...

    http://otndnld.Oracle.co.jp/document/products/id_mgmt/idm_903/doc_cd/Javadocs/operations/Thor/API/operations/tcRequestOperationsIntf.html#findRequests (java.util.Map)

    Let me know the results...

    AND

    getRequestsForObject will give you all the demand for an object only.

    Published by: Arnaud

Maybe you are looking for

  • iMac (retina 5K, 27 inches, end of 2015) randomly restarts without errors

    My iMac has been randomly restart itself (about once per day) when it is idle.  Everyone knows the same problem?  I found a YouTube video and that's exactly what happened to my iMac: https://www.youtube.com/watch?v=ka7lUIeiH5E I attended once - the c

  • lost all the Favorites on the desktop during the installation of firefox?

    I do not know the good termonology, but before when I had firefox as my search engine and Web page, I had a list of favorite sites, which I clicked on and they all the appeared. Don't more, why? at the top left of the page web was also a back arrow.

  • iPod Classic keeps restarting. Already tried several solutions, I can find.

    My classic iPod keeps restarting randomly. Sometimes he can play for a few hours, other times its a few minutes. I got it over a year and he had a spare battery rise (by Apple), in December, but no problems until this week. When I plug in my laptop (

  • HP8440p: Indicator of Ram

    My laptop has 4 GB of Ram and it is to show (3.80) can be used. What could be the reason of it where is 0.2 GB right? Or is reserved for some software or haedware permenently? Because he was not showing 2 days before.

  • Measurement of the temperature with the PCI-6229

    I was announced in an old thread and do not receive and answer, so I thought I try a new. Link to the old thread: http://forums.ni.com/ni/board/message?board.id=250&thread.id=14920&view=by_date_ascending&page=1 I'm trying to measure temperatures usin