How do I know the difference between level data line in 2 dump files.

Hello
I had 2 dump files export different databases (to which I have access).
They got the same tables and the same number of lines.
How to compare data in tables (in the dump files).

See you soon,.
Malika

user9131570 wrote:
Hello
I had 2 dump files export different databases (to which I have access).
They got the same tables and the same number of lines.
How to compare data in tables (in the dump files).

See you soon,.
Malika

Why you want to do? What the company need? Without import it, it's not not possible to read the dump file *.

Aman...

* If you are using Data pump, you can make a sql file and can see items from the dump file.

Tags: Database

Similar Questions

  • 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

  • I want to know the difference between columns days and day 1

    Hi all

    I used this query:

    SELECT to_char (return_date_time, ' DD/month/yyyy hh24:mi:ss') Test,

    DECODE ('I', 'I', DECODE (1, NULL, NULL, 0, NULL, SYSDATE + 1)) days.

    DECODE ('I', 'I', SYSDATE + 1) day 1

    OF fm_curr_locn

    WHERE patient_id = 'DU00002765. '

    output:

    Test Days Day 1
    October 26, 2013 00:00:0026 OCTOBER 1326/10/2013-15:06:59

    I want to know the difference between days and day column 1 column and why the days column did not show both

    Please someone help...

    Concerning

    Nassik M

    In which client tool (such as SQL * Plus, TOAD, SQL Developer, etc...) you run the query?

    Could you please run the query in SQL * more and show us the exact result?

    In some Client Tools, you have the privilege to set the DATE format, but should not be different level columnar.

    I was wondering, how NLS_DATE format parameter can show different formats for different columns?

  • I want to know the differences between the conditions of subscription and use of Photoshop for photographers of the usual subscription?

    Nice day! I want to know the differences between the conditions of subscription and use of Photoshop for photographers of the usual subscription? And if I can buy then and for how Adobe Illustrator? What will be the beta of the Adobe XD for Windows? Thank you!

    If you ask what is the difference between photographic subscription and the subscription of stand-alone application, then the answer is both are essentially the same except for two ways. The photographic edition comes with Adobe Lightroom and 2 GB of cloud storage. The stand-alone Photoshop version comes on its own, but with 20 GB of cloud storage and is two times more expensive. If the 18 GB of cloud storage is an additional value, I would say probably no - put the money that you save on an external hard drive in place. The photographic edition was initially a temporary special offer caused a suggestion from one of the co-creators of Photoshop, but turned out to be very popular with fans, private and business and so we have a permanent plan to subscribe to Photoshop. There is no plan equivalent to Illustrator and who is available at a single price. With the subscription model, you can cancel at any time, but the contract is 1 year, if you cancel at the beginning there is a penalty clause which will ask you to pay extra this tax applies only if you pay your monthly subscription every year.

    You don't say where in the world you are, but the link below shows the available plans. There is a drop down box that allows the conversion in different currencies.

    Pricing plans and creative Cloud membership | Adobe Creative Cloud

    Hope that helps.

    Terri

  • 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}

  • What is the difference between levels 1 to 4 of the performance monitoring? What is the default level?

    What is the difference between levels 1 to 4 of the performance monitoring? What is the default level?

    Collection and levels of collection intervals are two things that are used to monitor and collect statistics of performance for entities.

    Research in detail what intervals of Collection and collection levels mean:

    Collection intervals determine the duration for which the statistics are gathered. VirtualCenter currently has four intervals of collection: day, week, month and year.

    Every interval between two collections has a default collection level that determines how the counters are used when collecting statistics. Default collection-level is set to 1 (because the minimum number of counters). This level is configurable and can be set from 1 to 4.

    For more details on the intervals of the collection and the collection level (with respect to the measurements taken at each level), please see the "Collecting statistics" section, page 281 base System Administration Guide.

    http://www.VMware.com/PDF/vi3_35/esx_3/R35/vi3_35_25_admin_guide.PDF

    Hope that the information above will clarify your doubts regarding the level of default collection and what they mean.

  • Hi I am new to Oracle forms and reports I want to know the differences between the Enter query mode and Normal mode?

    Hi I am new to Oracle forms and reports I want to know the differences between the Enter query mode and Normal mode?

    Welcome to Oracle Forms!  Out of curiosity, what do you mean by 'new '?  You are a student or new to an organization that uses Oracle Forms?  Or just play with Oracle Forms to learn something new?

    Let me start by saying that many of your questions designtime can answer by searching in the help of the constructor of the form library.  It's accessible, like most of the other products in the Builder menu > help.

    Regarding your question, ENTER QUERY mode, as the term implies, is when it is in a State where it is accept input for the execution of a query.  When in this mode, there are various restrictions.  Yet once, it will find more details in the Builder Help.  In this case, search help for these two subjects, "SYSTEM." MODE'and "built-ins comments that are not allowed in the input query Mode".  There are many other pages that contain information about the ENTER_QUERY method, but these two should help you get started.

    Normal mode, as its name implies, is when it is in a State of 'normal '.  Basically to do nothing in particular, but also not in ENTER QUERY mode.  In this State, you can move the shape, INSERT, UPDATE, DELETE, documents, etc..

    You will find additional information, as well as a lot of documentation on the product page of forms of OTN:

    http://www.Oracle.com/technetwork/developer-tools/forms

  • How can I justify the difference between varchar and varchar2 data type

    Hi all

    How can I justify the difference between the data type varchar and varchar2 on any table for space management.
    Is there any query to justify this.


    Concerning
    Girish

    Published by: boujemaa on February 2, 2011 21:23

    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14220/datatype.htm#sthref3780


    The VARCHAR data type

    The VARCHAR data type is synonymous with the VARCHAR2 data type. To avoid any changes in behavior, always use the VARCHAR2 data type to store strings of variable length.

  • How to calculate the difference between a Date column and the Date yesterday in the analysis (in the formula in the column)

    . For example, I need to calculate the difference between a date column, 'Table_Name '. "' Column_Name ' and (Current_Date-1). I tried different ways to do this. But nothing seems to work.

    Try the below formula.

    Replace "Time". "" Date "with your column.

    TIMESTAMPDIFF (SQL_TSI_DAY, "Time". "Date", TIMESTAMPADD (SQL_TSI_DAY-1, CURRENT_DATE))

    Thank you!

  • 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 know the difference between the Dates in Oracle.

    Hello

    Suppose we have two Dates say November 5, 2005 and October 12, 2007.

    Is it possible to know the total difference between these Dates in Oracle.

    Thank you

    You can subtract date-objects. The result is the difference in days.

    select  to_date('12-10-2007','DD-MM-YYYY') -  to_date('05-11-2005','DD-MM-YYYY')   from dual;
    

    In your example: 706 days

    Published by: hm on 25.10.2010 12:33

    Please look also for "Oracle Date arithmetic" in the Oracle Documentation or Google.

  • How to calculate the difference between 2 dates, but with interruptions and stops between

    Hello

    How can I calculate the difference in minutes between 2 dates but taking into account the existence of a table in the Appendix, so if between start_date and end_date arguments, there is no 'work time' then this part of the time will not be included in the total difference.

    Records of the time table example:

    Time_configuration start_hour end_day end_hour
    219:00307:00
    319:00407:00

    so for example first record said that on Monday you start at 19:00 and leave the next day at 7:00 and then save the same sort of thing.

    There is an event that I want to track how many minutes lasted. for example, this event began the day 2 at 19:00 and ended the day 3 at 21:00

    Theoretically, this event really lasted: 840 minutes. This 840 minutes are within the limits of the annex.

    Thanks in advance.

    The storage of the dates not as data type DATE in most cases is bad design. In addition, how do you know what day of the date is 2 at 19:00? East - Monday 2 November 2015 or Monday, March 7, 2016? It is the same for the event. In any case, assuming that both calendar and events don't extend over several weeks:

    According to schedule)
    Select time_configuration 2, 19:00 ' start_hour, end_day 3,' 07:00 ' end_hour of all the double union
    Select 3, 19:00 ', 4,' 07:00 ' double
    ),
    event like)
    Select event_id 1, time_configuration 2, 19:00 ' start_hour, end_day 3: 21:00 ' end_hour of the double
    )
    Select e.event_id,
    Sum)
    less (e.end_day + to_date (e.end_hour, 'HH24'), s.end_day + to_date (s.end_hour, 'hh24:mi')).
    greater (e.start_day + to_date (e.start_hour, 'HH24'), s.start_day + to_date (s.start_hour,'hh24:mi'))))
    ) * 24 * 60 minutes
    Appendix s,
    e event
    where e.start_day + to_date(e.start_hour,'hh24:mi')< s.end_day="" +="">
    and e.end_day + to_date(e.end_hour,'hh24:mi') > s.start_day + to_date(s.start_hour,'hh24:mi')
    E.event_id group
    /

    EVENT_ID MINUTES
    ---------- ----------
    1 840

    SQL >

    SY.

  • 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.

  • How to tell the difference between two dates

    Hello:

    I have a question on how to get the difference in quantities for two dates in the replies and dashboard.

    This is the scenario. I have two guests date and three columns. The first column must be the sum of the amounts for the first quick date. The second column should be the sum of the amounts for the second fast date. And the third column is the difference between the first two columns.

    Basically, I'm trying to do something similar to a function of sum of two lines but trying to get the difference between the two rows. Any help to solve this problem would be appreciated.

    Use the COLUMN FILTERS level...

    the first column with the first variable of date quick presentation of the filter

    Similarly, the second column in the second variable of quick overview of date filter

    Kind regards
    Rambeau

  • What is the difference between object &gt; contour line, Object &gt; expand... and oppose &gt; Compound Path/do?

    Could someone explain the differences between these three commands? I created a circle with a stroke, applied all the three commands and ended up with the same thing, a compound path. Are there situations where this is not the case, or situations where one of these commands is more appropriate?

    Cleveland,

    In the case of the accident vascular cerebral/nofill right, object > describe vascular accidents, cerebral and object > expand seem to do the same thing.

    In the layers palette, you can see three different results to develop if you have so much background and outline ticked, ticked off just about fill, and only STROKE checked. Only the last corresponds to the contour line.

    You use Outline Stroke that more simple if it's what you need. Trace to create something with one or more holes of several paths, either to raise subsidized the Clipping Path of a clipping mask paths. Expand is for the rest.

Maybe you are looking for

  • Firefox does not go to all pages

    I went to work today and when I opened Firefox my homepage came to the fine. Now, whenever I type a website in html bar I get this. A record of the AUP Cable Acceptable Use Policy/equipment agreement In order to complete the registration a process ca

  • iPad 9.7 Pro smart cover

    The new smart cover for iPad 9.7 Pro is compatible with iPad air 2?

  • Satellite A210-1UP - every few minutes the system freezes

    Hello I just installed windows 7 32 bit on a satellite A210-1UP Every few minutes the system freezes and then continues as if nothing had happened.No error or blue screens are displayed I would like to know if windows 7 can work without problems on t

  • New video card and memory for my laptop (1410-604)

    Hello I think of a new video card and an extra memory...What possibilities I have to upgrade my laptop (Satellite 1410-604). I checked my computer technical description:I think I can add an extra 256 MB SDRAM. But what video card? Koen

  • error 200141 on parallel angular measure

    I've been browsing the pages of discussion about this error, but so far the proposed resolutions have not worked.  I have included my highest level as well as the necessary Subvi VI in a zip folder.  On the schema of the structure BUSINESS here is "R