Query to Reverse of a word

Hi all,
i want to reverse the words any word or sentences
for example
string require
MY NAME IS RAMA RAMA IS MY NAME
HE IS GOOD GOOD IS HE
and another query i want is that
i have a lot of descriptions like
FREE PRODUCT SIZE 10 M
FREE PRODUCT SIZE 20 M
FREE PRODUCT SIZE 30 M
ABC 123 ORACLE 123
ABC 123 XYZ 123
ABC 123 KLM 123
i don't know what will be the string will come but i want to cut the common/repeated strings
like in above example
i want only
SIZE 10 M
SIZE 20 M
SIZE 30 M
ORACLE 123
XYZ 123
KLM 123
please replay.

extreme wrote:
hi Keith Jamieson i have clearly mentioned there
suppose i have the word my name is rama
and the query will retreve rama is name my
not the reverse of the letters i want the shifting of the words.
like last word is first rama the the next word is then name then my
last word comes first and so on not the character wise shifting
i want word wise shifting.
You have not "clearly mentioned" as your first post was misleading:
extreme wrote:
Hi all,
i want to reverse the words any word or sentences
for example
string require
MY NAME IS RAMA RAMA IS MY NAME
RAMA IS MY NAME is not RAMA IS NAME MY!!
On top of that, <u><b>despite your 165 posts</b></u> it seems you haven't learnt how to use the {noformat}{noformat} tag when posting some code or result. The result is that your message was not so clear to many of the readers here.
Look at the difference:
<b>Without {noformat}{noformat} tag</b>
string require
MY NAME IS RAMA RAMA IS MY NAME
<b>With {noformat}{noformat} tag</b>string require
MY NAME IS RAMA RAMA IS MY NAME
Isn't it better?
You can always see how your message will appear looking at the preview tab.
If I have to add something else, why should someone bother to answer you if you don't care marking as answered many questions that you have posted:Handle:      extreme
Status Level:      Newbie
Registered:      Dec 20, 2009
Total Posts:      165
Total Questions:      60 (43 unresolved)
I'm sure that the 43 questions you have posted are not all unresolved. Like this one.
please reply.Please mark your questions as answered or post some additional information if you're not satisfied with the answers.
Please read <a href="https://forums.oracle.com/forums/thread.jspa?threadID=2174552#9360002">How do I ask a question on the forums?</a> to understand how to post your questions.
Regards.
Al                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Help please. How do I reverse every second word in a sentence?

    How do I reverse every second word in a sentence?
    For example, I have a sentence" I am a noob programmer. "
    It should be " I ma a boon programmer. " after I use the method.

    public String ReverseEverySecondWord(String sentence) {
              String[] arr = sentence.split(" ");
              StringBuilder sb = new StringBuilder();
              StringBuilder tempSb;
              char[] cArr;
              sb.append(arr[0] + " ");
              for (int i = 1; i < arr.length; i++) {
                   if (i % 2 == 1) {
                        tempSb = new StringBuilder();
                        cArr = arr.toCharArray();
                        for (int pos = cArr.length - 1; pos > -1; pos--) {
                             tempSb.append(cArr[pos]);
                        sb.append(tempSb.toString() + " ");
                   } else
                        sb.append(arr[i] + " ");
              return sb.substring(0, sb.length() - 1);

  • Sql query to find the last word in a sentence (column)

    Hi,
    I have to retrieve the last word in a column containing varchar2(text) values.
    If anyone knows the query for this kindly share with me.

    There's also the option of regular expressions in 10g onwards...
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (select 'oracle forums is the best resource for oracle intelligence' as l from dual)
      2  select regexp_replace(l, '[[:print:]]* ([^ ]*)$','\1') as l
      3* from t
    SQL> /
    L
    intelligence
    SQL>

  • RSA1 query transport reversal

    in RSA1, I select some reports developed by query designer, after that, the report is moved to collected objects, but now I realized that I have selected the wrong query, how to reverse? i.e. move query from right pane(collected objects)l to left panel?
    also every time I select a query, the info-provider /infocube /infoarea also moved to right panel, do we need to transport them besides query element? thanks

    Hi,
    If you have not given any transport req  no to the wrong objects , then just close that window and open new RSA1 window.
    Please note that if you have entered transport req no for the worng objects follow below steps:
    For removing the Objects from Transport request :
    1) Go to SE01 , give your transport req no , click on tools , click on unlock objects ,give your req no, come back to SE01 main screen , Double click your request ,Select All Objects and delete all rows.
    For collecting only required objects :
    1) Select Transport Connection -> Query - > Select Objects -> Slect your query - > once all the objects comes on right side , Select Display Mode - > List , Now you would see different objects related to that query ,
    2) Now Left click on each type of object and select "Do Not transport any below"
    3) For Query elements select "Transport all below"

  • Search Query Help – more than one word

    I have been struggling with this for weeks.  I used Dreamweaver to set up a lot of this and I think it is hindering me as I make changes to the code.
    I have a search interface that takes the input from a user (in the form of text) – searches though the db to match words – then return the results based on how many times the input is located in the db.
    I have this working very good for a single word input.  If you search for one word only – it works great.  But, if you try to input two words together – it returns no results.
    I have tried several different things to get this to work – like exploding the input then searching the db for each word in order.  The problems I get, I think, is that this conflicts with the code Dreamweaver wrote – I think where the code requests the value string.  But, each time I think I find a fix for one error – it creates several others – not just in the php code above the header – but in the php code in the body when I try to retrieve the results.
    It seems that I am just going around in circles.  But, there has to be simple way to search for more than one word in the db – count the matches – add the matches from each search together – then return the results ordered by the largest number of matches.
    I have even tried using a foreach statement – but received errors that I have never seen before.  Then after researching and trying to fix those errors – just received more and more errors.
    Please help.  If it cannot be done given the code I have – then please point me in the right direction to rewrite the code.
    Code is attached.

    Based on what you explained as your requirements, it is very easy. I'll just speak in psuedo-code.  You will need to parse the input into seperate words. If there can be an unknown number of words you can store those in a string array.
    Then just use the array to build your where clause using the IN predicate or using the = and OR operators.
    Select count(*), keyword
    where keyword in (term[0], term[1], etc)
    group by keyword
    order by count(*) desc
    If this is not what you meant, then you will need to explain your requirements in more detail. As you have discovered, once your requirements exceep the capabilities of DW's behaviors, you will need to become very familar with sql and your server side scripting language. If you don't understand what the DW code is doing (as evidenced by your comments in the attachment), then you really are not ready to start modifying it.

  • Reverse Sentence or word

    Hello everyone first of all I am sorry for my English but I know you can understand what I will say.
    I want to know how a sentence reverse
    for example: "Maximuse"
    will turn like : "esumixaM"
    ok thanks everone

    public class ReverseOrder
      public static String reverse( String data )
        String rev="";
        for ( int j=data.length()-1; j >= 0; j-- )
          rev += data.charAt(j);
        return rev;
      public static void main ( String[] args )
        System.out.println( reverse( "Maximize" ) );
    }

  • Query to print Which Shift based on the time

    Need to sort and sum data based on the shifts in our department....
    First shift runs from 4:50 am to 2:45 pm, second shift runs from 3:00 pm to 1:00 am and any time in between is the break time.
    I cannot get the data to print first shift , break time and second shift correctly
    Sample Data :
    DROP TABLE TIME_SHIFT CASCADE CONSTRAINTS;
    -- TIME_SHIFT (Table)
    CREATE TABLE TIME_SHIFT ( TRX_DATE DATE ) ;
    Insert into TIME_SHIFT (TRX_DATE) Values (TO_DATE('10/03/2011 10:30:23', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into TIME_SHIFT (TRX_DATE) Values (TO_DATE('12/30/2011 11:40:02', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into TIME_SHIFT (TRX_DATE) Values (TO_DATE('12/30/2011 23:55:10', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into TIME_SHIFT (TRX_DATE) Values (TO_DATE('12/30/2011 16:54:15', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into TIME_SHIFT (TRX_DATE) Values (TO_DATE('10/03/2011 10:26:10', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into TIME_SHIFT (TRX_DATE) Values (TO_DATE('10/04/2011 00:30:08', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into TIME_SHIFT (TRX_DATE) Values (TO_DATE('10/04/2011 02:47:08', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into TIME_SHIFT (TRX_DATE) Values (TO_DATE('10/12/2011 15:30:08', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into TIME_SHIFT (TRX_DATE) Values (TO_DATE('10/04/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into TIME_SHIFT (TRX_DATE) Values (TO_DATE('10/04/2011 12:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into TIME_SHIFT (TRX_DATE) Values (TO_DATE('11/22/2011 03:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    COMMIT;
    SELECT TO_CHAR (trx_date, 'MM/DD/YYYY') ,TO_CHAR (trx_date, 'HH:MI:SSAM')
    -- (case
    -- when TO_CHAR(trx_date,'HH24:MI:SS') between '04:50:00' and '14:45:00'
    -- then 'FIRST SHIFT'
    -- when TO_CHAR(trx_date,'HH24:MI:SS') between '15:00:00' and '01:00:00'
    -- then 'SECOND SHIFT'
    -- else 'BREAK TIME'
    -- end
    -- ) WHICH_SHIFT
    FROM TIME_SHIFT ;
    Expected result :
    10/03/2011        10:30:23AM     FirstShift
    12/30/2011        11:40:02AM     FirstShift
    12/30/2011        11:55:10PM     SecondShift
    12/30/2011        04:54:15PM     SecondShift
    10/03/2011        10:26:10AM     FirstShift
    10/04/2011        12:30:08AM     FirstShift
    10/04/2011        02:47:08AM     BreakTime
    10/12/2011        03:30:08PM     SecondShift
    10/04/2011        12:00:00AM     SecondShift
    10/04/2011        12:00:00PM     FirstShift
    11/22/2011        03:00:00AM             BreakTimeThanks for the help in advance.

    Hi,
    In everyday speech, when we hear "Between 3:00 PM and 1:00 AM", we understand that it means one range of 10 consecutive hours. That's not how the SQL BETWEEN operator works, however. "x BETWEEN y AND z" in SQL is exactly equivalent to "x >= y AND x <= z". If y < z, it never be TRUE.
    Here's one way to do what you want:
    SELECT     TO_CHAR (trx_date, 'MM/DD/YYYY')
    ,     TO_CHAR (trx_date, 'HH:MI:SSAM')
    ,     CASE
             WHEN  TO_CHAR (trx_date, 'HH24:MI:SS') BETWEEN '04:50:00'
                                                  AND         '14:45:00'
             THEN  'FIRST SHIFT'
             WHEN  TO_CHAR (trx_date, 'HH24:MI:SS') BETWEEN '01:00:01'
                                                  AND         '14:59:59'
             THEN  'BREAK TIME'
             ELSE  'SECOND SHIFT'
         END               AS which_SHIFT
    FROM      time_shift
    ; This is close to what you tried, which was
    (1) see if it's First Shift
    (2) if not (1), see if it's Second Shift
    (3) if not (1) or (2), it must be Break time
    The problem with that is that, as far as SQL is concerned, going just by HH24:MI:SS, the Second shiift is two disjoint periods, and you have to test for each one separately. The query above reverses the last two tests:
    (1) see if it's First Shift
    (2) if not (1), see if it's Break Time
    (3) if not (1) or (2), it must be Second Shift
    It would be a little more coding, but perhaps clearer, to do it this way
    ,     CASE
             WHEN  TO_CHAR (trx_date, 'HH24:MI:SS') BETWEEN '04:50:00'
                                                  AND         '14:45:00'
             THEN  'FIRST SHIFT'
             WHEN  TO_CHAR (trx_date, 'HH24:MI:SS') BETWEEN '15:00:00'
                                                  AND         '24:00:00' -- or '23:59:59', if you prefer
               OR  TO_CHAR (trx_date, 'HH24:MI:SS') BETWEEN '00:00:00'
                                                  AND         '01:00:00
             THEN  'SECOND SHIFT'
             ELSE  'BREAK TIME'
         END               AS which_SHIFT I wish we could mark questions as "Correct" or "Helpful". You provided a good set of sample data in a useable form (you even included DROP TABLE and COMMIT statements), you gave a clear explanation of the problem with the desirred results, and you showed what you had already tried. Lots of people who have used this forum for years haven't learned to do that yet. Keep up the good work!
    Don't forget to mention which version of Oracle you're using. In this example, it may not matter. (The query above will work in Oracle 8.1 or higher.) But it never hursts o say something like "I'm using Oracle 10.2.0.3.0".
    Edited by: Frank Kulash on Dec 1, 2011 12:23 PM

  • Error in MIGO while GR reversal - Message no. M7021

    Hello MM Sapperu2019s,
    I got an error in MIGO as meniotned below,
    Deficit of Project stock unr. 2,00 PC : XXXXXXX 9093 1111 Q
    Up on checking from my side the issue I observed that while executing GR reversal for the PO in transaction MIGO user is getting the error as Deficit of Project stock unr. 21,00 PC : XXXXXXX 9093 1111 Q because there is no project stock available for the relevant material.This I have checked in MMBE transaction for the respective material, Project stock is missing.
    Now I need to know if I want to maintain the project stock for the respective WBS element in MMBE and proceed with reversal of GR in MIGO.Please let me know what action I need to take it to resolve this.
    PS: PO qty is 26 and IR made first for qty 1 and then GR made for qty 26.
    I have also referred the below link in SDN related to this query,
    GRN reverse problem
    Where it talks about the material issued document reversal which is relevant to me part from that other actions also required I feel.
    Cheers,
    Kumar.S

    KUMAR.S. wrote:
    Hello MM Sapperu2019s,
    > I got an error in MIGO as meniotned below,
    > Deficit of Project stock unr. 2,00 PC : XXXXXXX 9093 1111 Q
    > Up on checking from my side the issue I observed that while executing GR reversal for the PO in transaction MIGO user is getting the error as Deficit of Project stock unr. 21,00 PC : XXXXXXX 9093 1111 Q because there is no project stock available for the relevant material.This I have checked in MMBE transaction for the respective material, Project stock is missing.
    > Now I need to know if I want to maintain the project stock for the respective WBS element in MMBE and proceed with reversal of GR in MIGO.Please let me know what action I need to take it to resolve this.
    > PS: PO qty is 26 and IR made first for qty 1 and then GR made for qty 26.
    > I have also referred the below link in SDN related to this query,
    > GRN reverse problem
    > Where it talks about the material issued document reversal which is relevant to me part from that other actions also required I feel.
    > Cheers,
    > Kumar.S
    Hi,
    first u have to reverse the transfer posting (if it is applicable) are directly u can reverse the GI after that u can cancel gr.
    u can check  the stock in mmbe for every transaction's.
    may be it is helpful for u.
    Regrds
    Raj.

  • Export to word/excel doc

    Is there any way I can export output of query from SQL*PLUS into word or an excel document ?
    Thanks.

    You could use spool
    spool /data.csv
    select * from table;
    spool off
    then import file into excel with spaces as the field delimiter.
    You could also use excel and setup an ODBC connection to you're database and query the data directly.
    Ian

  • An sql query is not working

    Hello everybody,
    I want to enter a word in a table if that word does not already exist in the table.
    I wrote a query like this.
    String word="Football";
    sql="INSERT INTO m_word_list (word_text , category_id , used_counter, date_of_addition, added_by, is_status ) VALUES ('"+word+"', 2, 0, '"+todaysDate+"', '1', '1')WHERE '"+word+"' NOT IN
    (SELECT * FROM `m_word_list` WHERE word_text = '"+word+"');
    Where am I wrong in the query?
    Please help.

    1.) Always post the exception, error message and whatever detail you've got when something "doesn't" work.
    2.) Always use PreparedStatements to execute parameterized queries/updates instead of dynamically building the String
    3.) INSERT INTO doesn't have a where clause.
    Why don't you simply make the wort_text column unique and simply try to insert. If there's already such a word then you'll get a message which tells you.

  • Form is asking for do you want to save the changes made in the query mode

    hi all,
    according to my previous thread {thread:updating the nondatabase column}
    i have set the lockrecord to yes for the non_db_field but when i query the form with help of f8 and try to close it with out any changes then too its asking for the commit.
    how can i solve this issue.
    Thanks..
    Edited by: user13329002 on Dec 30, 2010 12:41 AM

    Hello
    Yes, i do agree with Ahmed
    pls check the POST-QUERY TRIGGER < ---- This is the KEY-Problem
    Trace which item causes the problem almost it's a db item was formaly returned from LOV and it is re-assigned in the POST-QUERY Trigger .
    SO , changes in the db occured changes the status of the form.
    most propaply it's a retrieved fk in ur post Query,also avoid using reserved words in ur display items as
    TYPE ,NAME ,etc.
    ITEM_ID ,ITEM_NAME -- reserved word for java and related staff ...pls check list of oracle reserved words
    hope this helps solving ur problem...
    Regards,
    Abdetu...

  • LEVEL key word in Oracle 9.2.0.1.0 & Oracle 9.2.0.7.0

    Hi experts,
    I'm using a Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production in my development environment and
    Oracle9i Enterprise Edition Release 9.2.0.7.0 - 64bit Production in production environment.
    I use a query with a LEVEL key word and it works fine in the development environment and gives an error in the production environment. When I remove the LEVEL key word it works fine in the production also.
    Was there a change which happen to LEVEL key word in these releases ???

    PrasadDe wrote:
    Was there a change which happen to LEVEL key word in these releases ???Probably. Who can tell. Those are both unsupported versions of the database.
    Why not upgrade to something that's supported and we know works.

  • Using RRW3_WEBRFC to insert BW query template into BSP: chart not visible

    Hi people,
    I've done a BSP page which calls a BW query template throught RRW3_WEBRFC function and inserts its code in the BSP. I've used the example code BW web reporting inside a BSP page. and all is OK but the charts.
    Charts are not displayed. I change the "<img src..." of the dowloaded HTML and the chart is displayed in Firefox, but not in Internet Explorer. I've asked more people to test the BSP page with its Explorer, a no one can see the image.
    Does anyone have an idea about whats happening? Maybe some system variable of the web server in SICF is distincting the Client Navigator?
    Thank you very much!
    Edited by: Sergi Marin on Feb 13, 2008 9:26 AM

    Whew! I figured out a really awesome solution, which has a
    ton of uses.
    First of all, as I should have realized, ANY variable in a
    coldfusion tag is going to be figured out when the report is
    called, NOT for every query result. In other words, query.xxx or
    report.xxx or whatever is NEVER going to work correctly inside of a
    tag, not even in a report function or the Advanced Query builder.
    However, there is a straightforward way around this. Simply
    make a report function with arguments, and in your field's
    expression editor call the function and pass in the query or report
    variables:
    #report.yourFunction(query.field1, query.field2)#
    You can do all sorts of Coldfusion function magic and return
    whatever form of result you want.
    For my particular example (dynamically creating a query
    object for a chart to be inserted), I had to add a not-so-obvious
    step: creating my query object with a shared scope (in this case,
    the Request scope), otherwise the variable is trapped in the
    function's scope. So this was my solution: I had a chart with the
    "Print When" option calling my function "getChartQuery" (passing in
    the query variables, of course). The function builds
    "Request.ThisChartQuery" and returns True if there's something in
    it (the "Print When" logic uses the boolean to decide whether to
    show the chart or not). Then my chart is still query-based, but the
    Advanced Query builder has NOTHING in it at all, except for the
    variable containing the query object ("Request.ThisChartQuery").
    There was another solution I found where the report function
    makes the entire chart (using cfchart tags, etc) and saves it as a
    PNG file, and then returns the path to the image. Then you simply
    add an image field to the report, and you use the expression
    builder to call the function. Well, hope this helped someone!
    EDIT: references are "
    http://www.adobe.com/go/ee54cc6"
    and "
    http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:40786"

  • Verity Error - Not letting user search with words NOT,AND,OR, etc. Why??

    I've meticulously created collections of the music on my ecommerce music site.  I am manually stripping off offending characters in the submitted search criteria with this code:
    Trim(REReplaceNoCase(URLDecode(URL.searchcriteria),"[()<>##""'@]"," ","all"))
    Then, if the user has ticked for an "exact word" search, I'm adding double quotes around it, otherwise, leaving it without.  Then submitting it to the right collection for a search with this code (I've substituted ZZZ and XXX for my protection).
    <CFSEARCH NAME="ZZZ" COLLECTION="XXX" type="simple" CRITERIA="#cleanedcriteria#" maxrows="300">
    When a user does not tick "exact match" but types in any phrase that includes any of the Verity operators, they get the following error:
    If you are using type="explicit", you must use Verity Query Language operators such as "<WORD>" or "<STEM>", or surround your search term with quotes. See the documentation for details.
    Pass Me Not
    will throw the error. but
    "Pass Me Not"
    which is passed when someone ticks "exact match" does just fine.
    From what I've read, the simple search is supposed to assume the <WORD> and <MANY> operators, but it's like that's being ignored.  What am I doing wrong, and/or how can I configure this so that my users can type terms, submit, and find what they're looking for?

    I think I finally understand, and am posting the solution here for others' benefit.
    Apparently the simple search is in fact behaving properly and will recognize AND OR NOT as operators instead of part of the search string.  The work around for this is to enclose those words in double quotes.  So that's what I've done.  If the user has not specified an "exact match" search (where I enclose the entire string in double quotes), then I single out these three words and put double quotes around them.  It appears to work beautifully.
    QED, and am happy to have had a complete uninterrupted discussion with myself.
    <cfset cleanedcriteria = ReplaceNoCase(cleanedcriteria,"and","""and""","all")>
    <cfset cleanedcriteria = ReplaceNoCase(cleanedcriteria,"not","""not""","all")>
    <cfset cleanedcriteria = ReplaceNoCase(cleanedcriteria,"or","""or""","all")>

  • SQL query to get a list of relations between workitems

    How can I create a SQL query to get a list of all problems with related changes?  And all problems with related incidents?
    I have tried to join the tables RelationshipTypeDim with ProblemDimKey and ChangeRequestDim, but the results are not correct.

    The relationships in the data warehouse can be kind of tricky. The relationships are contained in the WorkItemRelatesToWorkItemFactvw table. This table lists the related items by their WorkItemDimKey, so you cannot reference directly from the ChangeRequestDimvw
    or ProblemDimvw. You will need to reference the WorkItemDimvw to get the WorkItemDimKey for each entry.
    The query below will get all of the related work items from the Change Request class. The way the joins work is ChangeRequestDimvw gets the list of change requests. Then inner joins WorkItemDimvw to get the WorkItemDimKey for each CR. Then inner joins WorkItemRelatesToWorkItemFactvw
    to get all of the CRs with related work items. Then inner joins the WorkItemDimvw again to get the ID of the related work item. 
    Now the tricky part is it appears that these relationship are set based on which item  that created the relationship. So you need to union a second query that reverse the relationship on the WorkItemRelatesToWorkItemFactvw. 
    This query should give you a good start on getting the related work items. You can filter it down from here if you only want to include problems.
    SELECT C.ID, WIWI.ID
    FROM dbo.ChangeRequestDimvw C
    INNER JOIN dbo.WorkItemDimvw WI ON
    WI.EntityDimKey = C.EntityDimKey
    INNER JOIN dbo.WorkItemRelatesToWorkItemFactvw AS WIRWI ON
    WIRWI.WorkItemDimKey = WI.WorkItemDimKey
    INNER JOIN dbo.WorkItemDimvw AS WIWI ON
    WIWI.WorkItemDimKey = WIRWI.WorkItemRelatesToWorkItem_WorkItemDimKey
    union
    SELECT C.ID, WIWI.ID
    FROM dbo.ChangeRequestDimvw C
    INNER JOIN dbo.WorkItemDimvw WI ON
    WI.EntityDimKey = C.EntityDimKey
    INNER JOIN dbo.WorkItemRelatesToWorkItemFactvw AS WIRWI ON
    WIRWI.WorkItemRelatesToWorkItem_WorkItemDimKey = WI.WorkItemDimKey
    INNER JOIN dbo.WorkItemDimvw AS WIWI ON
    WIWI.WorkItemDimKey = WIRWI.WorkItemDimKey
    Order by C.ID
    Matthew Dowst |
    Blog | Twitter

Maybe you are looking for

  • I downloaded a book on iTunes with my MacBook Pro and can't figure out how to open on my computer.  How do I do this?

    I downloaded a book on iTunes with my MacBook Pro and want to read the book on my computer.  Just can't figure out how to do it.  Do I need a program to read books on the MacBook first or is this something I can get in the app store? Any help is much

  • EMail Bursting of Web Template - no Texts are shown!

    Dear experts, on using eMail Bursting for a web template the eMail with the attached PDF is send. Unfortunately no texts form the Web Template are send - only the query results.... is there a setting where to ensure thatl also texts (Headers and addi

  • Cover Flow shows wrong covers since iOS 4.3

    Since I updated my iPhone 4 to iOS 4.3 the covers shown in Cover Flow are totally messed up, most of the covers are wrong. When I start a track and rotate the iPhone back to its normal position the right cover shows up. Also when I do not use Cover F

  • Error in POST method of "FIPP".

    Hello friends, Could you please help me to find out what could be wrong with following error. Whenever WF tries to post the FI  document in background through "POST" menthod, it gets following error message. "The transaction was terminated by the use

  • Setting program/job arguments

    Hi I have a dbms_scheduler job that runs a SP, this SP requires 2 parameters passing to it (p_from_date and p_to_date). I have set my argument as below. dbms_scheduler.define_program_argument      ( program_name => 'PGM_PROCESS_EXCEPTIONS' , argument