Oracle DB schema and data comparison tools that compare BLOBs

I'm looking for schema and data comparison tool like DBDiff or DbTools, but it has to be able to compare BLOB and CLOB fields. I went thru few products available on the market but could not find any that does that.
Can you please recommend tool that will help me with it.
Thanks,
E

Hi.
I use Comparenicus for Oracle from Orbium Software. It compares data and schema, CLOBs, BLOBs..
It can also handle large tables which is very useful for some of my environments.
Last (but not least) it has a unique feature for copying selective data from one DB to another. You can read about it this post:
Efficient way to copy business data from Production DB to Test DB
Enjoy..

Similar Messages

  • Hard Drive Data Comparison Tool

    Hi guys -Wonder if any of you can help.
    I'm trying to discover if there is a data comparison tool out there that is free, or not too costly.The company I work for produce a lot of data daily and this is stored on our servers so it can be easily accessed by all. At some point there has been a duplicate of this data made on another volume.
    So hard drive 'A' has data on, as does hard drive 'B'. I'm trying to find a way of comparing both these drives against each other as some of the data is newer on 'A' and some is newer on 'B'.The end result id like would be just one single set of data, so I can remove the duplicate to free up some space. Then I could create a nice back up of the most recent data.If any of you spiceheads is able to shed some light on this, that would be greatly appreciated.Thanks in advance!
    This topic first appeared in the Spiceworks Community

    Hi guys -Wonder if any of you can help.
    I'm trying to discover if there is a data comparison tool out there that is free, or not too costly.The company I work for produce a lot of data daily and this is stored on our servers so it can be easily accessed by all. At some point there has been a duplicate of this data made on another volume.
    So hard drive 'A' has data on, as does hard drive 'B'. I'm trying to find a way of comparing both these drives against each other as some of the data is newer on 'A' and some is newer on 'B'.The end result id like would be just one single set of data, so I can remove the duplicate to free up some space. Then I could create a nice back up of the most recent data.If any of you spiceheads is able to shed some light on this, that would be greatly appreciated.Thanks in advance!
    This topic first appeared in the Spiceworks Community

  • Database compare script to sync schema and data

    1. I have database-1
    2. I have database-2
    3. database-1 and database-2 are in same oracle 10g server and are same in schema as well as data
    4. All operations will be done with database-1 through my application
    5. At the end of the day i need a script which is to be run in the database-2 to have database-1 and database-2
    alike ie., both schema and Data should be same
    Please anyone suggest me the best solution to get the above script
    This script is to be transfered to some other location in our scenario
    Thanks in advance
    Vivek

    Hi Sybrand Bakker,
    I tried streams for the replication purpose as per your suggesion, till Iam unable make it work , i dont find a step by step document which will make it possible without error.
    One more thing , i need the streams work without Database link, ie., source database is not connected directly to destination database. I need to create streams and transfer the stream as a file through FTP.I need to download stream file in remote location and then apply the streams to destination database and after this source and destination database should be same in data and schema.
    Please suggest me a solution to go abt this scenario. We are in critical stage to make it happen...
    thanking you in advance
    with regards
    vivek
    Message was edited by:
    Vivekanandh

  • Time "and" Date Comparison

    Hi,
    I am trying to get the difference between two sets of time.
    This also involves a Date comparison because sometimes the times span more than one day.
    Here is an example of what I'm trying to accomplish. I have searched the forum archives but have not yet found time and date comparisons together.
    startRun = "10/26/01 4:30 PM";
    endRun = "10/27/01 7:45PM";
    I want to process these two times and get the difference.
    The result would be:
    totalRunTime = "27 hours 15 minutes";
    I am stumped. Is this type of process even possible? Any help would be grealty appreciated.
    Best,
    Christian Velez
    Senior Software Engineer
    Research Institute of America, Inc.
    [email protected]

    try this ...
            String startRun = "10/26/01 4:30PM";
            String endRun = "10/27/01 7:45PM";
            SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy hh:mma");
            try {
                Date startDate = sdf.parse(startRun);
                Date endDate = sdf.parse(endRun);
                System.out.println("Start date/time = " + startDate);
                System.out.println("End   date/time = " + endDate);
                long differenceInMillis = endDate.getTime() - startDate.getTime();
                long differenceInSecs = differenceInMillis / (1000);
                long differenceInMins = differenceInMillis / (1000 * 60);
                long differenceInHours = differenceInMillis / (1000 * 60 * 60);
                System.out.println("Millis = " + differenceInMillis);
                System.out.println("Seconds = " + differenceInSecs);
                System.out.println("Minutes = " + differenceInMins);
                System.out.println("Hours   = " + differenceInHours);
                //What you want
                System.out.println("Total run time = "
                    + differenceInHours + " hours "
                    + (differenceInMins % 60) + " minutes");
            } catch (ParseException pe) {
            }

  • Export oracle database schema without data

    Hi All,
    cany any one tell me how to export oracle database schema without data using exp command not datapump command.

    step 1
    type exp help=y
    step 2
    read the output
    step 3 now run exp ... rows=n
    Life can be so easy when you aren't lazy. You don't waste time asking to be spoon fed by others if you can do something yourself in 2 seconds.
    Sybrand Bakker
    Senior Oracle DBA

  • Importing SQL Server Schema and Data

    What is the best way to go about importing schema objects (tables, contstraints, triggers, stored procs, etc.) and data from SQL Server to Oracle?

    No offence taken :)
    But I have copied data from SQL Server DB to Oracle using SQL Server Enterprise manager Data transformation services.
    About 30 tables with summary amount a few hundred thousand rows (~300K) took about 1.5 hour.
    Did it several times when tested and run for production in a data conversion project. Of course when copied to Oracle all data was processed to adapt for our new data model, but that is another story.
    It was quick and easy solution. OK if one needs to copy at least a few M rows then probably he needs to look for different tools.
    Gints Plivna
    http://www.gplivna.eu

  • How to export app +underlying schema(and data)

    Hi
    I am trying to export my application and its underlying tables to a new system .
    I want to know if it can be done together and not seperately..(export app and then export each table)
    Is there away to package the app and its underlying repository?
    Thanks

    No....
    You will have to do them seperately as there is no logical connection between the application and the tables.
    Your application just has the access to use those tables and does not "own" any of them.
    a) Oracle database tables/ application tables
    You can export the entire schema and all the objects and data in that schema using the export and import utilities.
    All these objects are owned by the schema (eg. emp under scott) and hence are related logically.
    b) Oracle apex metadata tables.
    All the information about apex objects is stored as metadata in database tables (FLOWS_0300 is a schema).
    So, if you install Oracle apex on a new machine, all these repository tables will be created.
    When you create applications / objects, these tables will have metadata for those applications.
    Hope this helps,
    Rajesh.

  • Sample schema and data downloads?

    I have installed oracle and I wish to test it with a substantial schema installed, with enough data to simulate a production level database.
    I was wondering if online there were any large sample schemas, with large amounts of data (in sql loader .dat files?) that could be downloaded. My search so far has not been successful.
    If possible I would like to get a schema with very large number of tables and many thousands of lines of data.

    First thing: you'd be better generating a dataset to match your particular requirements.
    However, If you're thinking about a data warehouse, you could do worse than borrow the Mondrian 'Foodmart' test dataset. That contains 328k rows of data (so pretty small, but not trivial). See http://mondrian.sourceforge.net/.
    Alternatively, lots of people start with datasets based on Northwind - the well known Access/SQL Server dataset. There's an article here http://www.oracle.com/technology/pub/articles/gagne_access.html on how to extract the necessary DDL using the mdbtools utilities.
    HTH
    Regards Nigel

  • Sales schema and data load script

    Hi,
    I am trying to learn OBIEE on my own. i managed to install oracle XE and OBIEE 10g. I need a script to create a new db schema and load sales tables with sample data to create reports. can anyone help me with the scripts?

    AsI mentioned, i dont this these scripts will come with a XE installl...primarily because XE may not be certified with the sample schema. This is why I would recommend you try to install the full DB instead of trying to run these scripts on XE.
    Did you try to install the ACTUAL Oracle DB Enterprise Edition? I believe there is a examples part to the install that will have these scripts. Please try this and let me know.
    If this helped, please mark as helpful or correct.

  • All Oracle Sample Schemas and all Oracle Built-in Packages in XE?

    Hi,
    I am trying to install Oracle 10g on my home system to improve my knowledge of PL/SQL. Because I'm doing it at home, I have to solve DBA issues I'm somewhat clueless about.
    I would like to install Oracle 10g Express Edition and include the built-in packages (DBMS_OUTPUT, UTL_FILE, DBMS_UTILITY, DBMS_JOB, DBMS_JAVA, DBMS_RANDOM, etc.) as well as the Oracle sample schemas (HR, OE, PM, SH, and IX). None of these, except HR, is included in the express edition.
    If necessary, I'd like to be able to install these things after installing the express edition. How can I do this?
    Thanks,
    Mike

    Hi Mike,
    checking the documentation is always helpful:
    http://www.oracle.com/pls/xe102/homepage
    http://download-uk.oracle.com/docs/cd/B25329_01/doc/appdev.102/b25108/xedev_programs.htm#i2432
    You can always do a quick search on the documentation homepage, e.g. for utl_file:
    http://www.oracle.com/pls/xe102/search?remark=advanced_search&word=utl_file&format=ranked&book=&preference=
    There shouldn't be a need to install any packages. They should come preinstalled already.
    If not, you can find them here:
    C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\ADMIN
    Just be very careful before trying to install something into the data dictionary. If you are not experienced, you might mess up your database.
    For example, utl_file is installed but invisible to most users, e.g. HR.
    Look at this example:
    SQL> conn hr/oracle1
    Connect durchgef³hrt.
    SQL> desc utl_file;
    ERROR:
    ORA-04043: Objekt "SYS"."UTL_FILE" ist nicht vorhanden
    SQL> conn sys@XE as sysdba
    Kennwort eingeben:
    Connect durchgef³hrt.
    SQL> desc utl_file;
    PROCEDURE FCLOSE
    Argument Name                  Typ                     In/Out Defaultwert?
    FILE                           RECORD                  IN/OUT
       ID                           BINARY_INTEGER          IN/OUT
       DATATYPE                     BINARY_INTEGER          IN/OUT
       BYTE_MODE                    BOOLEAN                 IN/OUT
    PROCEDURE FCLOSE_ALL
    SQL> grant execute  on utl_file to HR;
    Benutzerzugriff (Grant) wurde erteilt.
    SQL> conn hr/oracle1
    Connect durchgef³hrt.
    SQL> desc utl_file;
    PROCEDURE FCLOSE
    Argument Name                  Typ                     In/Out Defaultwert?
    FILE                           RECORD                  IN/OUT
       ID                           BINARY_INTEGER          IN/OUT
       DATATYPE                     BINARY_INTEGER          IN/OUT
       BYTE_MODE                    BOOLEAN                 IN/OUT
    PROCEDURE FCLOSE_ALL
    PROCEDURE FCOPY
    ...So, after granting execute privileges on utl_file to HR, the user HR can now access utl_file. No need to install it.
    The default packages are installed in the schema SYS.
    Regards,
    ~Dietmar.

  • Supplemental logging with Oracle 10gR2 Streams and Data Guard

    Hello,
    I have a environment with Oracle DB 10gR2 and Physical Standby with Data Guard DR Conf. Right now, this environment is going to be extended to a replication schema using 2-way Oracle Streams Replication (for replication to the central office from this branch office, other branchs will be added soon). The primary DB will be replicated to the other primary DB (in the remote central office).
    So, there is my question: It's completly necesary to specify Supplemental Logging on the sources databases (primaries) for setting 2-way Streams Replication?, and, if it's completly necesary, then, do I can set Supplemental Logging on primaries without affect theirs physical standbys, or do I need to do something special?
    Thanks in advance.

    Sorry, it's repeated. 'cus browser connection problem.

  • Backoffice methodlogy and data migration tool

    Anybody know about backoffice methodology?This methodology was developed by backoffice associates.I would like to know more about it.
    see the link below
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ad903bcc-0901-0010-25bd-a0e5aebcf2b0
    If anyone know please help.
    Message was edited by:
            abi baski

    So, I loaded my CUCM with 6.1.4 which is absolutely compatible with UCCX 7.0.1 and I still get the same error which is as follows:  Data Migration is only supported on CUCM Deployments.  I am using the Data Migration Tool for 4.0.5 to 7.0.1 UCCX deployments.  All necessary services are started on the CUCM and the UCCX license and CUCM pass validation.  I am at a loss as to why I am getting this error.  Does anyone have any ideas?

  • Sample Oracle database Schema and sample training SQL

    Hi,
    I am running a windows 7, 64 bit machine. I am looking for sample oracle database schema with sample SQL queries and exercises(tutorial). Can you please point me in the right direction where I can download both.
    Thanks for your time and help.

    sb92075 wrote:
    ssk1974 wrote:
    Hi,
    I am running a windows 7, 64 bit machine. I am looking for sample oracle database schema with sample SQL queries and exercises(tutorial). Can you please point me in the right direction where I can download both.
    Thanks for your time and help.
    http://www.lmgtfy.com/?q=oracle+sample+schema
    LOL!!!!

  • Oracle Personal Edition and SQL dev. tool

    I installed Oracle 10g Personal Edition on my laptop and want to use SQL Creator (SQL developer's tool/program - http://www.snefru.com/index.jsp) with it.
    I'm trying to setup my SQL developers tool to connect to my local Oracle database and there is a connection wizard for the SQL program which prompts me:
    1.) "Select a JDBC driver..."
    2.) "Enter Host name for the server that the database is located on...."
    3.) "Enter Port number that the database is listening on...."
    4.) "Unique SID of the database instance..."
    How can I find out 1.) - 4.) for my specific, local database?
    Thanks in advance...

    When you run SQL*Plus, what is the version number displayed:
    C:\>sqlplus
    SQL*Plus: Release 9.2.0.3.0 - Production on Tue Nov 22 17:11:44 2005
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    Enter user-name:?
    You woudl download the driver that matches with that release.
    if you did the database install, chances are you already have the jdbc driver installed.
    Do you have a directry ORACLE_HOME/jdbc/lib ?
    Do you have files like classes*.jar in that directory?
    if you do you already have the jdbc driver files.

  • Grants for physical schema and data-servers

    Hi,
    I'd like to know
    What are the Grants needed for the Owners of each physical schema?
    For example: Grants DDL (drop table n) and DML (select / update / delete / insert).
    Grants needed for the users' connection data-servers?
    Bovolini

    It depends on what technology you plan to use.
    If you plan to use Oracle - Is the data server connection user different from the owner of the physical schemas ?
    In addition to the connect, resource to each of these users, you will also need to give data server connection user privileges on the objects of the owner of the physical schemas.

Maybe you are looking for