How to quickly find the difference of two version of RPD?

Hi all

Someone has a good idea to quickly find the difference of two versions of the RPD in the project?


Kind regards
Anne

This could be a help for you
http://varanasisaichand.blogspot.com/2010/03/how-to-merge-two-repositories.html
http://www.rittmanmead.com/2010/07/OBIEE-11gr1-incremental-patches-to-the-RPD/

See you soon,.
KK

Published by: Kranthi.K on December 7, 2011 21:41

Tags: Business Intelligence

Similar Questions

  • Find the difference between two date and time

    Hi friends,

    I wanted to find the difference between two date and time, but my qury is slightest error "invalid number."

    select sql_step_num,proc_name,run_seqno,start_date,end_date,(to_char(start_date,'HH24-MI-SS') - to_char(end_date,'HH24-MI-SS') ) as ed  
    from eval.EVAL_RUNTIME_DETAILS
    where trunc(start_date) = trunc(sysdate) 
    order by sql_step_num;

    You try to get the feel between two char strings.
    And more difference between two dates gives a NUMBER of days.
    Try this:

    select sql_step_num,proc_name,run_seqno,start_date,end_date,numtodsinterval(end_date-start_date,'DAY') as ed
    from eval.EVAL_RUNTIME_DETAILS
    where trunc(start_date) = trunc(sysdate)
    order by sql_step_num;
    
  • How to find the difference between two dates in the presentation layer

    Hi gurus,

    Hello to everyone. Today, I came with the new requirement.


    I need to know the difference between a date and the current date in the formula column application presentation layer.by.



    Thank you and best regards,
    Prates

    Hi Navin,

    TIMESTAMPDIFF function first determines the timestamp component that corresponds to the specified interval setting. For example, SQL_TSI_DAY corresponds to the day component and SQL_TSI_MONTH corresponds to the component "month".

    If you want to display the difference between two dates in days using SQL_TSI_DAY, unlike butterflies SQL_TSI_MONTH and so on...

    hope you understand...

    Award points and to close the debate, if your question is answered.

    See you soon,.
    Aravind

  • Find the difference between two numbers (DBL)

    Hi all

    Is there a function in labview other than the subtraction function that can find the difference between the two numbers given?

    Thank you

    Davidson


  • How to find the difference between two dates in time except Sunday

    Hi all

    I have a table, as shown below.
    SQL> select * from test;
    
    TR_ID                                              CREATE_TIME                                                                       CODE
    -------------------------------------------------- --------------------------------------------------------------------------- ----------
    S12341                                             05-JUN-12 12.20.52.403000 AM                                                      1003
    S12342                                             11-JUN-12 11.15.33.182000 AM                                                      1003
    S12342                                             07-JUN-12 12.00.36.573000 PM                                                      1002
    S12343                                             20-JUN-12 12.34.37.102000 AM                                                      1003
    S12343                                             15-JUN-12 11.34.27.141000 PM                                                      1002
    S12344                                             01-JUL-12 10.01.06.657000 PM                                                      1002
    S12344                                             06-JUL-12 12.01.04.188000 AM                                                      1003
    S12341                                             31-MAY-12 11.20.38.529000 PM                                                      1002
    I would like to know the difference between same tr_ids create_time, which should give out in hours except Sunday.

    For example:

    TR_ID: S12344
    1002_Create_time: July 1, 12 PM 10.01.06.657000 (i.e. Sunday)
    1003_Create_time: 12.01.04.188000 AM 6 July 12

    1002 create time is 22:00 Sunday.

    If the query must exclude only the hours of Sunday which is 10 p.m. to Monday 00 h which is 2 Hrs.

    I tried the sub query after doing a search on this forum but I am not getting the desired output.
    SELECT count(*) FROM (SELECT ROWNUM RNUM,tr_id,create_time CT_1002 FROM test c WHERE c.tr_id='S12344' and 
    ROWNUM <= (select (cast(a.create_time as date)-cast((select create_time from test b where a.tr_id=b.tr_id and code=1002) as date)) 
    from test a where a.code=1003 and a.tr_id=c.tr_id) + 1) d 
    WHERE to_char(cast((select create_time from test e where e.tr_id=d.tr_id and code=1002) as date) + RNUM - 1, 'DY') NOT IN('SUN');
    Need help to get the desired o/p

    Hello

    If I unederstand the problem correctly, that's what you want:

    WITH       got_extrema     AS
    (
         SELECT       tr_id
         ,       CAST (MIN (create_time) AS DATE)     AS start_date
         ,       CAST (MAX (create_time) AS DATE)     AS end_date
         FROM       test
         GROUP BY  tr_id
    )
    SELECT       tr_id
    ,       start_date, end_date          -- If wanted
    ,       24 * ( ( ( TRUNC (end_date,   'IW')          -- Count -1 day for every full week
                        - TRUNC (start_date, 'IW')
                 )
               / -7
                  )
                + LEAST ( end_date               -- If end_date is a Sunday
                            , TRUNC (end_date, 'IW') + 6     -- consider it 00:00:00 on Sunday
                     )
                - CASE
                          WHEN  start_date >= TRUNC (start_date, 'IW') + 6     -- If start_date is a Sunday
                   THEN  TRUNC (start_date, 'IW') + 6               -- consider it 00:00:00 Sunday
                   ELSE  start_date
                      END
                )     AS total_hours
    FROM      got_extrema
    ;
    

    I guess that you don't need to worry about fractions of a second. As you did in the code you have posted, I am to convert the TIMESTAMP to date values, because of DATE arithmetic and functions are so much better than what is available for timestamps.

    Basically, it's just to find the number of days between start_date and end_date and multiplying by 24, with these twists:
    (a) 1 day is deducted for each week between start_date and end_date
    (b) if End_date is a Sunday, none of the end_date himself hours are counted
    (c) If start_date is a Sunday, then all the start_date himself hours are counted. Why these hours should be counted? Because 1 day is already being deducted for the week which includes start_date, which contains only this Sunday.

    TRUNC (dt, 'IW') is the beginning of the ISO week containing dt; in other words, 00:00:00 the or before the dt last Monday. This is not the NLS parameters.

    Of course, I can't test without some sample data and the exact results you want from these data. You may need a little something more If start_date and end_date are both on the same Sunday.
    Whenever you have a problem, please post a small example of data (CREATE TABLE and only relevant columns, INSERT statements) of all of the tables involved.
    Also post the results you want from this data, as well as an explanation of how you get these results from these data, with specific examples.
    Always tell what version of Oracle you are using.
    See the FAQ forum {message identifier: = 9360002}

  • How can I compare the differences between two files After Effects?

    I have a major problem.  I was working on special effects for a film.  In After Effects, when I change siggificant, I often have to register under and create a new name so I can go back to the old work if necessary.  It comes in a case, I have come back from earlier works.  If I use these two files After Effects allows you to create multiple clips of effects.  And I do not remember just where you look at it, it is better.  Does anyone know a good way to compare the differences between the files?

    One thing to keep this conversation on the right way: I know that I did a stupid thing.  I've never done this before so can we please not spend a lot of time on how to avoid this problem and stick to how we solve this problem?

    If you encounter difficulties to identify differences in the old and new versions, you can use this procedure:

    To avoid confusion, I'll call your former company and your most recent compositions CompB comps.

    CompA drag "New Comp" icon in the project window.  This will create a new temporary layout that contains the nested CompA.

    Drag in your new COMP CompB temporary ensure it aligns image for image with CompA.

    Place the top layer (CompB) difference.

    Now, when you play through the comp, you'll see differences in color at a time where the comparison and CompB are not identical.

  • Any function to find the difference?

    Hi all

    Rtf model we are performing manual calculations.
    We need to find the difference between two values.
    Is there a function that is used to find the difference between the two values in rtf model?

    Pointers on the same are appreciatable

    Use absolute funcion.

  • How to find the difference between standard edition and standard edition one

    How to find the difference between oracle database standard edition and standard edition one 64 bit

    (a) using sql
    (b) using the configuration/installation files

    How to find the difference between oracle database standard edition and standard edition one 64 bit

    (a) using sql

    Select * the option of $ v;

    (b) using the configuration/installation files

    opatch lsinventory-details

  • How to find the difference in date in years, months and days

    Hello
    I need to find the difference between 2 dates in the following way "years months days". "
    Please can help me, how can I achieve this.

    for example, in the scott schema emp table, I need to find the difference in date between sysdate and hiredate for an employee in the following way.

    12 years 7 months 4 days.

    Hello

    Please, see this post to AskTom [difference between 2 dates | http://asktom.oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:96012348060]. There is good information in this forum, for example you can also see this thread [calculation of years, months & days | http://forums.oracle.com/forums/thread.jspa?messageID=3115216�]

    Kind regards

    Published by: Walter Fernández on November 30, 2008 08:58 - adding another link

  • How to store the difference between two timestamps as a number?

    Hello
    I need to find the difference between 2 variables of timestamp and the result will be stored as a number in minutes?
    as
    declare
    timestamp (7) of the fir_timestamp: = 1 January 2012 13:30 ';
    timestamp (7) of the sec_timestamp: = 1 January 2012 14:00 ';
    c number;
    Start
    c:=((sec_timestamp-fir_timestamp)/(24*60));
    dbms_output.put_line (c);
    end;

    962813 wrote:
    declare

    -fir_timestamp timestamp (7): ='01 - jan - 2012 13:30 ';
    timestamp (7) of the sec_timestamp: = 1 January 2012 14:00 ';  Incorrect type declaration

    fir_timestamp timestamp: = 1st January 12 01.30.00.000000 PM';
    sec_timestamp timestamp: = 1st January 12 02.00.00.000000 PM';
    c number;
    Start
    c: = ABS ((extrait (HEURE de sec_timestamp) - extract (fir_timestamp TIME)) * 60) +.
    ABS ((extrait (MINUTE de sec_timestamp) - extract (fir_timestamp MINUTE)));
    dbms_output.put_line (' interval Min Total:-' | c);
    end;
    /
    declare
    *
    ERROR on line 1:
    ORA-01830: date format picture ends before converting all of the input string
    ORA-06512: at line 6

    Follow what Paul has done...

    In fact, you do not need timestamp, date data type is enough

    SQL> declare
      2     fir_timestamp date :=
      3        to_date('01-jan-2012 13:30:00','dd-mon-yyyy hh24:mi:ss');
      4     sec_timestamp date :=
      5        to_date('01-jan-2012 14:00:00','dd-mon-yyyy hh24:mi:ss');
      6     c number;
      7  begin
      8     c:= round((sec_timestamp-fir_timestamp)*24*60);
      9     dbms_output.put_line(c);
     10  end;
     11  /
    30
    
    PL/SQL procedure successfully completed.
    

    If you want to place on timestamp

    SQL> declare
      2     fir_timestamp timestamp :=
      3        to_timestamp('01-jan-2012 13:30:00','dd-mon-yyyy hh24:mi:ss');
      4     sec_timestamp timestamp :=
      5        to_timestamp('01-jan-2012 14:00:00','dd-mon-yyyy hh24:mi:ss');
      6     c number;
      7  begin
      8     c:= round((
      9     to_date(to_char(sec_timestamp,'ddmmyyyyhh24miss'),
     10             'ddmmyyyyhh24miss')-
     11          to_date(to_char(fir_timestamp,'ddmmyyyyhh24miss'),
     12             'ddmmyyyyhh24miss')
     13           )*24*60);
     14     dbms_output.put_line(c);
     15  end;
     16  /
    30
    
  • How can I find the installed version of Firefox?

    How can I find the installed version of Firefox?

    You run v33 right now. But you can still check two ways

    • Click on the

      button-> then the help icon (?) then on Firefox

    • Type of topic: in the address bar
  • How can I find the serial number if I can't go to the back of the phone?

    How can I find the serial number if I can't go to the back of the phone?

    Two ways

    Settings - general - or about

    Connect iPhone to iTunes and to see in the summary OR section

    Sign in here

    (1211)

  • How can I find the DNS registered on the computer.

    I'm a little confused on the DNS, I was under the impression that he actually had to 'buy' the name, but after further research, I got the idea that there is already one in the program windows xp I can use.  I may be completely confused but anyway would have entry how can I find the DNS or if I have to follow my original idea and you get a. Thank you

    Sunday, January 16, 2011, 08:39:14 + 0000, niki12345 wrote:

    I'm a little confused on the DNS, I was under the impression that he actually had to 'buy' the name, but after further research, I got the idea that there is already one in the program windows xp I can use.  I may be completely confused but anyway would have entry how can I find the DNS or if I have to follow my original idea and you get a.

    Sorry, your message is very confused. DNS is not something you
    purchase. There are many around the world DNS servers and they (at
    least one of them) are something that you use, not own.

    Here's how a DNS server is used. We tend to think of the URL as addresses
    web sites, but in reality they are not. The address is really an IP address
    address. Your browser will automatically use a DNS server is a quick glance upward and
    definition of the URL that you enter (for example, microsoft.com) to its IP address
    address (207.46.197.32).

    So please explain what you want to accomplish and for what purposes.

    Ken Blake (MS-MVP)

  • How can I find the code for my Officejet 7000 printer so that I can eprint?

    I am tgrying to implement my 7000 to eprint. Already, he works on the intranet and has an addredd, but the eprint site wants a printer code which not has nothing to do with the ip address, how do I find the * beep * code?

    ShlomiL wrote:

    Hello

    The HP Officejet 7000 (E809) does not feature ePrint.

    Below you can find any model that currently supports ePrint:

    http://support.HP.com/us-en/document/c02814760

    Thank you! I found that Printshare will BE the print job while I'm in my own network and on the web as long I have let one of my computers and share the printer on my network. It is not the same thing, but I get change paper size to tabloid size, which I couldn't do it with any one of these HP software applications. PrintShare to use so if you need to print something in your office from your phone. It works very well! I even printed a drawing file in PDF format at full scale, but to change, so it's been a BIG favorite for that.

    If you have two HP Eprint home and Printshare options. Both work on this printer, BUT only Printshare allows you to choose ALL the paper sizes.

  • How can I find the version of Adobe Flash Player installed on my Mac

    1. How can I find the version of Adobe Flash Player installed on my Mac?  I'm on OS 10.11.5 and Safari 9.1.1.
    2. How can I determine if I need to update Adobe Flash Player

    There are several different methods to check which version is installed, two of them are:

    Option 1:

    • Go to System Preferences > Flash Player > Updates tab.  There are 2 variants of Flash Player on Mac, NPAPI for Safari and Firefox and PPAPI for opera and Chrome browsers, and both appear in the tab "Updates".
    • If Flash Player is installed the version installed is listed here.  If there is a version that is listed, click the check now button and Flash Player will check for an update.  If an update is available, a notification dialog box appears.
    • If there is not a version listed, Flash Player is not installed.  Click Install now to start the browser to the download page.  Download and install Flash Player.

    Option 2:

    • Launch the browser and go to https://www.adobe.com/products/flash/about.

      • If Flash Player is not installed, a "plugin missing" message appears when the Flash content should display.

        • Click on the "plugin missing" text and a window placard showing Flash Player is required poster.
        • Click more info to be directly to the download page to download and install Flash Player
      • If a previous version of Flash Player is detected and blocked by Safari, click on the "Outdated Flash" text and displays a windows Flash is obsolete screens.  Click on download Flash... button to be redirected to the download page to download and install the latest version.

Maybe you are looking for

  • After the relocation, a Virgin window appears in the middle of the page, which has no copy and no way to remove it, but it prevents action on the page.

    I had to restore my hard drive for a date two weeks earlier to eliminate a problem that I had. For some reason, this fuck my Firefox browser. I uninstalled and then reinstalled (several times now). It seems that the resettlement is successful; Howeve

  • Satellite A500 - unable to connect to the WLan

    I'd like someone to help me. Have recently bought a satellite A500.I'm new in the world of laptops so I'm wrong.I connected to a router via a modem, the two netgear, the news. Had the two config for my network. Works well as long as ethernet is conne

  • Very slow to launch the desktop files/programs

    I have a Tecra M3 which fails to launch programs on the desktop and also takes a long time to open the fom navigating the start menu selections. We have created new profiles for the user, delete the old one, installed more memory, cleaned and the tem

  • HP 5530 Envy: envy 5530

    Do any one help please?   My Envy5530 printer all in one is a pain!   It prints color test pages.   However, it will not print color external e-mail, web page or scan? So indeed is a black and white printer only! I deleted and reloaded the software.

  • Academic version Simulation Interface Toolkit

    Hi, I am a student Brazilian and I use the Labview in my monograph. I need communication between Labview and Simulink. I have in my computer of 2012 Labview and SIT AcademicVersion installed that came to the DVD of the academic version of Labview 201