Building a query

hi all, consider the following data
id name ldate
1 abc 01-nov-09
1 abc_1 02-jan-10
1 abc 1-feb-10
2 dfk 25-jul-00
2 dfk_1 1-sept-02
second table
id ldate amount
1 01-nov-09 3456
1 17-nov-09 4567
1 03-jan-10
..<more 1>
2 26-jul-00
2 2-sept-02
as you can see abc change name to abc_1 on 02-jan-10 but this is not reflected on the second table.
dfk change name to dfk_1
i trying to figure out a query that will join by id and compare the ldate to present the appropiate name as of that date.
for example
when joining both table the first row should display
1 abc 01-nov-09 --on this date the name was abc
1 abc 17-nov-09 --same reason as above
1 abc_1 3-jan-10 -- symbol change on 03-jan-10
1 abc 2-feb-10 -- symbol back to abc
2 dfk 26-jul-00
2 dfk_1 2sept-02
anybody has any idea how to do this? sample query will be appreciate. both table are join by id

Hi,
are you looking for something like this.
You may have to benchmark it on your data.
Gong forward please post some sample data, also your DB version.
WITH tab_1 AS(
SELECT 1 id1, 'abc' name1,to_date('01-nov-09','dd-mon-rr') date1 FROM dual UNION ALL
SELECT 1, 'abc_1', to_date('02-jan-10','dd-mon-rr') date1 FROM dual UNION ALL
SELECT 1, 'abc', to_date('01-feb-10','dd-mon-rr') date1 FROM dual UNION ALL
SELECT 2, 'dfk', to_date('25-jul-00','dd-mon-rr') date1 FROM dual UNION ALL
SELECT 2, 'dfk_1', to_date('01-sep-02','dd-mon-rr') date1 FROM dual),
tab_2 AS(
SELECT 1 id2, to_date('01-nov-09','dd-mon-rr') date2,3456 amt from dual union all
SELECT 1, to_date('17-nov-09','dd-mon-rr'),  4567 from dual union all
SELECT 1, to_date('03-jan-10','dd-mon-rr'), 1000 from dual union all
SELECT 2, to_date('26-jul-00','dd-mon-rr'), 1000 from dual union all
SELECT 2, to_date('02-sep-02','dd-mon-rr'), 1000 from dual)
SELECT id2,names.name1,amt,date2 FROM
(SELECT id1,name1,date1,
lead(date1) over(PARTITION BY id1 ORDER BY DATE1 ASC) date3
FROM tab_1) names,tab_2
WHERE names.id1=id2 AND date2 BETWEEN date1 AND nvl(date3,date2)Cheers!!!
Bhushan

Similar Messages

  • How to build sql query for view object at run time

    Hi,
    I have a LOV on my form that is created from a view object.
    View object is read-only and is created from a SQL query.
    SQL query consists of few input parameters and table joins.
    My scenario is such that if input parameters are passed, i have to join extra tables, otherwise, only one table can fetch the results I need.
    Can anyone please suggest, how I can solve this? I want to build the query for view object at run time based on the values passed to input parameters.
    Thanks
    Srikanth Addanki

    As I understand you want to change the query at run time.
    If this is what you want, you can use setQuery Method then use executeQuery.
    http://download.oracle.com/docs/cd/B14099_19/web.1012/b14022/oracle/jbo/server/ViewObjectImpl.html#setQuery_java_lang_String_

  • How to build a query based on(UNION) 3 vendor InfoObject

    Dear Experts:
    I have a requirement to build one query based on 3 vendor InfoObjct: 0VENDOR + 0VEN_COMPC + 0VEN_PURORG.
    I tried to build a multiprovider upon these 3 infoobjects, but when I Identify(Assign) the key for each InfoObject, supposely there should be 3 InfoObject for me to check (0VENDOR, 0VEN_COMPC and 0VEN_PURORG) so that I can UNION these 3 infoobjects together on vendor number. But since the reference infoobject of these 3 vendor master data is different, I can not check the 3 together.
    Can anybody let me know how to build that query? I only need vendor number show once, and the attributes of 0VEN_COMPC and 0VEN_PURORG can be union to 0vENDOR.
    Any post would be appreciated and thank you all in advance!
    Best Regards!
    Tim

    Hi,
    you can create a link between the vendor objects itself, means link 0vendor with 0ven_compc and 0ven_purorg. This should give you a list of all vendors multiplied with the comp codes multiplied with the purch. org. May be here it is possible to create another link between a attribute (eg. comp_code of 0ven_purorg with comp_code of 0ven_compc). In case it is not possible you need to add this link information somehow. Another option might be to create 2 queries. One on a infoset of 0vendor and 0ven_purorg and another one on 0vendor and 0ven_compc.
    regards
    Siggi

  • Need help in building search query

    Guys ..
    Problem Description:
    I have a huge table that is indexed using CONTEXT.
    I want to write a search query that considers the following:
    1. number of keywords match
    2. takes care of spelling mistakes, synonyms and acronyms
    3. proximity - the keywords should not be too far of each other.
    e.g. I have this phrase: "Horizontal Stabilizer Trim Brake"
    I was thinking of writing a query like:
    SELECT SCORE(1) SCORE,
    TEXT text
    FROM MY_TABLE
    WHERE CONTAINS(TEXT, '(Horz | Horizontal) ACCUM (Stab | Stabilier) ACCUM Trim ACCUM (Brk | Break)', 1) >= 0
    ORDER BY SCORE DESC
    The results doesnt look satisfactory. I have not used "near" operator as i dont know how to use it.
    Please help me as I am very much new to Oracle Text.
    -G

    Well, I'm not going to write the function for you, but we can at least talk through a general strategy.
    A lot depends on how you help your users on the front end -- for example, if they're searching a technical document, you may want to return results that aren't perfect matches but you do want to make sure the user picks 'mandatory' and 'useful' keywords in a way that lets you figure out which ones are really important. On the other hand, if you're google and have to handle queries like 'horizontal stabilizer trim brake' and 'were Pete and Jenny in the break room' then you run the risk of spending too much time looking for interesting words, almost doing a full-text search on the query trying to derive meaning.
    So I'm going to presume that you have some control over what/how the users generate their searches so that finding keywords isn't the issue.
    The plan will be to parse the query a bit to find the interesting words, clean them up, and weigh their importance, then use transformed data to build the query template to score various combinations.
    So here's some pseudocode for the function:
    function parse_query(pQueryWords in clob) returns clob as
    begin
        generate_token_list (); -- split the query into a set of individual tokens/words
        for each token in token_list
            if it's a mandatory word then accumtokenlist := accumtokenlist || ' ' || token ||'*10' -- weigh the presence of the token strongly
            if it's a useful word then accumtokenlist := accumtokenlist || ' ' || token ||'*5' -- domain-specific words are also important
            if it's a stopword or reserved word, then do not add it to the list
            if it's not on my lists, then accumtokenlist := accumtokenlist || ' ' || token
                                         and normaltokenlist := normaltokenlist ||' ' || token
        end;
        --so now, we have two lists, one for NEAR and one for ACCUM
        now build the guts of the template
            querytemplate := querytemplate || '<seq> || normaltokenlist || '</seq>';
            querytemplate := querytemplate || '<seq> || replace (accumtokenlist, ' ',' ACCUM ') || '</seq>';
            querytemplate := querytemplate || '<seq>$' || replace(normaltokenlist,' ','$') || '</seq>';
            querytemplate := querytemplate || '<seq>? || replace(replace(accumtokenlist,' ',' ?'),' ', ' accum ') || </seq>';  -- first fuzzy the words, then accum
            querytemplate := querytemplate || '<seq>? || replace(replace(normaltokenlist,' ',' ?'),' ', ' near ') || </seq>';  -- first fuzzy the words, then near
        return querytemplate
    end;So, with a 'cooked' query text that is template-friendly, all we need to do is apply a template that is aware of your inputs:
    query_Template_string := '
    <query>
       <textquery lang="ENGLISH" grammar="CONTEXT"> horizontal stabilizer*5 trim brake*10
         <progression> '
    || parse_query('horizontal stabilizer trim brake')  ||
    '     </progression>
       </textquery>
      <score datatype="INTEGER" algorithm="COUNT"/>'
    </query>So that's an example of one approach.

  • How to build a query to join on two tables without mapping

    I did Automatic mapping by the workbench Directofield mapping with the table and java object.
    Wanted to build a simple join query by joining on the same field on both the tables.Not the sql query through the toplink using expression builder.
    Please help.............
    Spent one full day for this................

    Thanks Don for the reply,sorry to bug you,but i need help.....
    SELECT A.AGNCY_C,
         A.TYPE_C,
         A.RESN_C,
         A.S_TYPE_C,
         A.SUB_ID_C,
         A.RY_C
    FROM RATING A, REF B
    WHERE A.ID_C = B._ID_C
    AND A.ALPHA_C = B.ALPHA_C
    AND A.EFF_D >= B.MATURITY_D
    This is the real query i was talking about.I did mapping automatically through the workbench,generated java classes also throught the workbench.
    Now they don't want to execute the raw sql.They wanted to get all the RATING objects with the where condition.
    So how to build a query by using toplink.
    tried your example
    ExpressionBuilder builder = new ExpressionBuilder();
    Expression creditRating = builder.getTable("RATING").getField("ID_C");
    Expression issue_ref = builder.getTable("REF").getField("ID_C");
    Expression join = creditRating.equal(issue_ref);
    I am getting java.lang.OutOfMemoryError
    error.
    I selected the option generate classes and descriptors
    from the tables (RATING,REF).,so it created the classes and dscriptors automatically.
    In Database script for the table RATING like this
    ALTER TABLE RATING ADD (
    CONSTRAINT RATING_F1 FOREIGN KEY (ID_C, ALPHA_C)
    REFERENCES REF (ID_C,ALPHA_C));
    I think when i generate descriptor automatically it is keeping this association.
    Please help me.........

  • How to build a query dynamically....

    hi...i want to build a query dynamically. i don't want to build query by using string buffer. i want to create it directly by using sql query itself.
    my situation is like this....i have four drop down list in a page. The user can search the things based on one or two or three or four selected values.
    how to build a query for this kind of situation....pls let me know.
    Edited by: success_shiva6mca on Mar 3, 2008 12:39 PM

    there are two problems with building sql directly.
    1. it allows sql injection
    2.it allows XSS
    google them and you will understand if you dont already.
    I will recoment catching the values and using preparedStatements

  • How to build a query to get the item properties is tick or not?

    hello everybody. i'm 1 of the sap b1 user. i face a problem in build a query to check one of the item properties is tick or not? pls help...

    Hi Grace,
    your query could look like this:
    Select itemcode from oitm where qrygroup1= "Y"
    qrygroup1 is item property 1, qrygroup2 is item property 2 etc.
    Regards
    Ad

  • Please can someone help me to build a query

    Please can someone help me to build a query for getting the following results. I work with Oracle 9.
    My data is about this:
    Projectid / Activitycode / Act.DS / Earlystart / ActualStart
    {color:#ff0000}P001 / 110M / blabla / 1-1-08 / 1-1-08{color}
    {color:#3366ff}P001 / 230M / fdsfds / 31-1-09 / null{color}
    P001 / 450M / fsfsd / 1-4-09 / null
    P002 / null / null / 1-12-08 / 1-12-08
    {color:#3366ff}P002 / 110M / nhggh / 5-2-09 / null{color}
    P002 / 750M / wdwdwd / 5-2-09 / null
    P002 / 210M / plplplp / 31-12-08 / 31-12-08
    {color:#ff0000}P002 / 550M / ewdwd / 5-1-09 / null{color}
    I'd like to get one row for each Projectid with the {color:#3366ff}first next Early- or Actualstart{color} {color:#3366ff}after today{color} and one row with the {color:#ff0000}latest early-/actualstart before today{color}. When there are two or more rows with the same date then I want the first (minimum) Activitycode. This last condition makes it insoluble for me!
    I've tryed SQL with nested Select-statements in the Where-clause. But I've got still 2 rows per projectid because I select the min(nvl(Earlystart ,ActualStart ) I've tryed SQL with an Select in the FROM-claus with Partion BY, but I can't get it work right.
    Can someone show me the right way to solve my problem?

    How's this?
    with my_tab as (select 'P001' projectid,
                           '110M' activitycode,
                           'blabla' act_ds,
                           to_date('01/01/2008', 'dd/mm/yyyy') earlystart,
                           to_date('01/01/2008', 'dd/mm/yyyy') actualstart
                    from   dual
                    union all
                    select 'P001' projectid,
                           '230M' activitycode,
                           'fdsfds' act_ds,
                           to_date('31/01/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual
                    union all
                    select 'P001' projectid,
                           '450M' activitycode,
                           'fsfsd' act_ds,
                           to_date('01/04/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           null activitycode,
                           null act_ds,
                           to_date('01/12/2008', 'dd/mm/yyyy') earlystart,
                           to_date('01/12/2008', 'dd/mm/yyyy') actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           '110M' activitycode,
                           'nhggh' act_ds,
                           to_date('05/02/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           '750M' activitycode,
                           'wdwdwd' act_ds,
                           to_date('05/02/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           '210M' activitycode,
                           'plplplp' act_ds,
                           to_date('31/12/2008', 'dd/mm/yyyy') earlystart,
                           to_date('31/12/2008', 'dd/mm/yyyy') actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           '550M' activitycode,
                           'ewdwd' act_ds,
                           to_date('05/01/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual)
    -- above mimics your table; main query is below:
    select mt2.projectid,
           mt2.activitycode,
           mt2.act_ds,
           mt2.earlystart,
           mt2.actualstart
    from   (select mt.projectid,
                   mt.activitycode,
                   mt.act_ds,
                   mt.earlystart,
                   mt.actualstart,
                   mt.date_col,
                   mt.before_after_today,
                   row_number() over (partition by mt.projectid, mt.before_after_today
                                      order by mt.date_col asc) rn_after,
                   row_number() over (partition by mt.projectid, mt.before_after_today
                                      order by mt.date_col desc) rn_before
            from   (select projectid,
                           activitycode,
                           act_ds,
                           earlystart,
                           actualstart,
                           coalesce(actualstart, earlystart, to_date('01/01/4000', 'dd/mm/yyyy')) date_col,
                           case when coalesce(actualstart,
                                              earlystart,
                                              to_date('01/01/4000', 'dd/mm/yyyy')) <= trunc(sysdate) then 1
                                else 2
                           end before_after_today
                    from   my_tab) mt) mt2,
            (select 1 id, 1 col_id from dual union all
             select 1 id, 2 col_id from dual) dummy
    where  dummy.id = case when mt2.before_after_today = 1 then rn_before
                           else rn_after
                      end
    and    mt2.before_after_today = dummy.col_id
    PROJECTID     ACTIVITYCODE     ACT_DS     EARLYSTART     ACTUALSTART
    P001     110M     blabla     01/01/2008     01/01/2008
    P001     230M     fdsfds     31/01/2009     
    P002     550M     ewdwd     05/01/2009     
    P002     110M     nhggh     05/02/2009     

  • Cannot build the query or generate the report. WIS 30351

    I am trying to create a docuemtn using SDK. I have created a document and when I try to add dataprovider and update the document, I am facing the below error
    Cannot build the query or generate the report. WIS 30351
    http://help.sap.com/saphelpiis_sbo41sp5wi-sdk/frameset.htm?ec5645bc6fdb101497906a7cb0e91070.html
    Any help would be appreciated...

    Hi Pirabu,
    here's the required steps for what you described:
    1. Create a new report in folder with ID 12345:
         POST ../raylight/v1/documents
         request body:
            <document>
            <name>My New Doc</name>
            <folderId>12345</folderId>
            </document>
          response:
            <success>
            <message>The resource of type "Document" with identifier "54321" has been successfully created.</message>
            <id>54321</id>
            </success>
    2. use the new document ID when adding a data provider (ie universe ID is 5543)
          POST ../raylight/v1/documents/54321/dataproviders
          request body:
            <dataprovider>
            <name>Query 1</name>
            <dataSourceId>5543</dataSourceId>
            </dataprovider>
          response:
            <success>
            <message>The resource of type "Data provider" with identifier "DP0" has been successfully created.</message>
            <id>DP0</id>
            </success>
    If you are doing something different, please provide the steps you are using and the type of datasource you are adding (unv, unx, Bex query etc).
    Is the error when adding the data provider, or do you have an additional step updating the document?
    Also, what version of BI4 are you working with?
    Dan

  • Cannot build the query or generate the report - BI4.0 Dashboard on WebService Error

    Hello All,
         I am trying to create a Dashboard with WebService connections in SAP BI4.0 SP04. While running the dashboard I am receiving the error, Cannot build the query or generate the report. I have already set the refresh parameter to TRUE (bound to an excel cell and I have tried with 1 also). Back end WebI Reports of the BIWS connections are created from BEx queries through BICS connection. I have two prompts to run the Web Service and the report. Please share your thoughts regarding this.
    Thanks and Regards,
      Debajyoti Dan

    Hi All,
        I have found the issue. The problem is coming only when I am receiving prompts from BEx query and trying to use them through dashboard. I replaced these BEx prompts with the same in WebI report. Then the entire functionality started working correctly from dashboard.
    But, this is only a work around and can not be applied at all times. So I have raised a message for the same to SAP. I will update the thread based on what I receive from SAP Support.

  • Build dynamic query depending upon selection of table and columns

    Hi ,
    I want your views on following requirement :
    we r doing generic export to excel functionality .
    1.User will select multiple tables and according to tables ,columns on that table will select
    2.There can be multiple table
    3.depending upon column and table selection , we have to build dynamic query and execute .
    Please let me know is it possible .If yes then please tell me how to do above requirement.
    Thanks in advance

    Hi,
    Identifiers cannot be used as bind variables, query are parsed
    before evaluate bind variables. Identifiers like table name.
    For excel you can use some like this:
    SET MARKUP HTML ON ENTMAP ON SPOOL ON PREFORMAT OFF
    SPOOL test_xls.xls
    SELECT colum1||chr(9)||columN FROM tableName;
    or CSV:
    SELECT colum1|| ',' ||columN FROM tableName;
    SPOOL OFF
    SET MARKUP HTML OFF ENTMAP OFF SPOOL OFF PREFORMAT ON
    For construct the query i suggest to read "Dynamic SQL Statements":
    http://www.java2s.com/Tutorial/Oracle/0440__PL-SQL-Statements/0300__Dynamic-SQL.htm
    http://docs.oracle.com/cd/B28359_01/appdev.111/b28370/dynamic.htm
    http://docs.oracle.com/cd/B10500_01/appdev.920/a96590/adg09dyn.htm
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:227413938857
    --sgc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Build a query on runtime and not on design time

    Post Author: rchokler
    CA Forum: WebIntelligence Reporting
    When i build web Intelligence report the BO tool writes the Sql query includes all object I've picked up.
    I would like the TOOL not to build the hole SQL query on design time, I wand it to build the query includes only
    the objects the users picked up to display on the report (on runtime)
    Can i do it?
    BO XI  release 2 Enterprise edition

    Hi,
    As far as I know this can't be done at once because you have to consider :
    - Every Opportunity and their time-limited ProductRevenues
    AND
    - Time-limited Opportunities
    If you want to achieve this, you have to consider the 2 datasets separately and make your first query :
    ObjOpptyQueryPageInput.ListOfOpportunity.Opportunity.searchspec = "([ModifiedDate] >= '01/01/2013 00:00:00')";
    but also another query with the restriction on the ProductRevenue Searchspec.
    This shouldn't be too hard because the searchspec functionality is present at each level :
    - ListOfOpportunity -> Opportunity (the top-level that you used for your query)
    - ListOfOpportunity -> Opportunity -> ListOfProductRevenue -> ProductRevenue (the sub-level that you should use for the second query)
    Then in your C# code, you merge the 2 datasets and you end up with your expected result.
    Hope this helps,
    Charles.
    http://www.dubant.com

  • SQVI or SQ01 - Building a Query

    I am looking to build a query in SQ01 or SQVI to list the following:
    1. List of all the customer numbers
    2. List of all agreement numbers
    3. List of customer with associated agreement
    4. List of all addresses.
    WHile the Query 1 is for Business partner... which is the table i can use.
    Is it BUT000 or i need to join more than one table.
    Query 2 - refers to Total commitment in SAP. I don't know the table details.
    Query 3 - Refers to the combination of SAP Business Partner data and Total commitment data.
    Query 4 -  Seems to be the address in Business partner. Which is the appropriate table.
    help me in tbuilding this query.

    Hi,
    Is requirement part of the FSCD module, if you let me know I can help you on that.  Please more specific with your requirement.
    I am currently working on FSCD module as an ABAP consultant.
    Thanks,
    Mahesh.

  • Can I build a query to show monthly sales by item by business partner?

    Hi all
    Is it possible to build a query to show monthly sales (quantity not value) by item by business partner?
    So the table would look something like this.
                   Jan     Feb     Mar     Apr
    Item 1      10       4         8         7
    Item 2      4         3         5         6
    Item 3      4        12        9         3
    Item 4      1         0         1         2
    Etc...
    As you can see, the monthly figure needs to be quantity of the item and not sales value.
    Would be grateful for any help.
    Many thanks.
    Wendy

    Hi,
    Try this:
    declare @code as varchar(15)
    set @code = ( select max(ta.cardcode) from OINV ta where ta.cardcode = [%0])
    Select [a] as Cardcode, [B] as Cardname, [c] as Item#, [D] as Descr,[1] as Jan,[2] as Feb,[3]as Mar,[4] as April,[5] as May,[6] as June,[7] as July ,[8] as Aug,[9] as Sept,[10] as Oct ,[11]as Nov,[12] as Dec
    from(
    SELECT T0.[CardCode] as  A , T0.[CardName] as  B, T1.[ItemCode] as C, T1.[Dscription] as D, sum(T1.[Quantity]) as t,month(T0.[DocDate]) as month FROM OINV T0  INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry WHERE year( T0.[DocDate]) = 2014 and t0.cardcode = @code GROUP BY T0.[CardCode], T0.[CardName], T1.[ItemCode], T1.[Dscription],T0.[DocDate] ) S
    pivot
    (sum(t) for month IN ([1],[2],[3],[4],[5],[6],[7],[8],[9],[10],[11],[12])) P
    Thanks & Regards,
    Nagarajan

  • Need help in building a Query in AR -Daywise Report wih separate outstandin

    Hi,
    I need to build a report in AR (AR-Daywise Report with separte outstanding)
    How to proceeed with sql query for getting the AR-Daywise Report with separte outstanding?
    Any help will be needful for me
    Thanks and Regards

    Post your question in the the Financials forum, you may get a better/faster response.
    Financials
    Financials
    Thanks,
    Hussein

  • How to build dynamic query strings in the query using DB adapter 'Pure SQL'

    Dear Forum,
    I am building an application which will access DB to fetch some result set. The query involves retrieving data from multiple tables(nearly 10 tables). So I have created a DB adapter using 'execute pure sql' option. With this query works fine, but my inputs parameters will vary. So I need to make my query dynamic to append the query strings at runtime depending on the inputs.
    For example I have 3 input variables - input1,input2 and input3 (in my request xsd) which are used in the pure sql query. Now if I get a 4th input parameter input4 in the request, I need to append this to query string as 'AND input4=[some value]' at runtime. Otherwise my query should have only 3 parameters. Please suggest how this can be achieved.
    Regards,
    Satya.

    This is a strange requirement, depending on the columns you have and what are optional in them, one way is to have separate operations and each opeartion will have different inputs and for each operation , a different DB Adapter is called. But this way, it results in more number of operations for the service as well as more number of references in the composite. Even if you pass the column inputs to the SQL procedure, it will result in a large number of if-else cases..
    Thanks,
    N

Maybe you are looking for

  • Enabling SSL in R12

    Is it possible to enable SSL on R12 without using a valid certificate? I am currently reviewing doc 376700.1 but do not have a working instance yet.

  • The iPhone " iPhone Name" cannot be synced. an unknown error occurred (-50)

    I am not able to get my iPhone 3GS to sync any longer. Has not been a problem until upgrade to iTunes 8.2.1. Running system 10.5.8 iPhone software 3.0.1 get the same issue when I try and sync my iPod Classic 80Gig Just started happening, got to be so

  • Spry Accordion Image Issue

    I have inserted a Spry Accordion in Dreamweaver CS5, however, I'm having issues with the viewing of the tabs on load, on hover, etc. I want a dark blue tab on load, have it change to a wavy red white tab, and when opened go to a dark blue tab with a

  • L455D-S5976 wont work whith BCD 3000 dj mixer

    i have a behringer BCD 3000 Dj mixer that uses traktor 3 le bdc 3000 edition that works fine in my pc and another laptop i have, the bcd has an internal souncard that let you conect to it headphones for cue monitor and to master output audio to a amp

  • Has anyone else seen ORA-00980 synonym errors when using XMLConcat?

    Hi, Using 10.2.0.2 ( as shown by select * from v$instance), I get an ORA-00980 "Synonym translation is no longer valid" message. This occurs for any attempt to use XMLConcat, for a simple example: SELECT XMLConcat(XMLElement("first", 'Steve'), XMLEle