Frequently transfering databases between MS SQL and Oracle

Hello all,
I am looking for a solution to easily, efficiently and be able to migrate/transfer databases between MS SQL and Oracle frequently.
I need to be able to replicate a databases on Ms SQL and Oracle for testing purposes. I will need to do this on frequent basis - almost once a week.
Please suggest what would be the best way.
Thanks in advance.

Hi Justin,
You have guessed it right to a great extend. Yes dont actually need to develop, rather need to test an application that supports SQL and Oracle databases. Now when testing the application its obviously vital to create proper systematic test data. This usually takes a lot of time and effort from the testing team/team-member. So, yes what I need to do is create the test data on one database(may it be SQL or Oracle) and migrate/transfer the data into the database on another server( ie. SQL to Oracle or Oracle to SQL).
So,
Are you developing a product that works against both SQL Server and Oracle and trying to synchonize development efforts?Yes, thats correct to extend, I need to test an application against both the servers, as it supports both types of databases, and try to reduce the test setup efforts (literally double the amount) that go in after manual creating same data on each type of database.
Are you trying to replicate structural changes between systems?I am not 100% sure, what you mean by this. But whats important and enough for me is to replicate the data. It would not be a lot of work to run the scripts and create empty schema objects.
Are you trying to replicate data changes between systems? The fact that you're only doing this weekly suggests that you're not working in a traditional replication environment.Yes, again as I mentioned above. It would be sufficient for me to just get a copy of the initial dataset. And then replicating changes to it would not be that important. However, if I can achieve a solution to this, I can by all means create a new database on the one server (SQL or Oracle) and take the data-set of the most recent/correct changes and replicate it on the other type of server as and when needed.
No - this is not a traditional replicating environment. I say weekly, because it is usually once in a week or forthnight that someone from the team will need to spent time to manually copy the test-data onto the another type of server in order to run the same testcases on two types of servers.
How do you handle conflicts (i.e. if I modify a row in both systems, which modification wins)? This is not really a problem in my scenario, as I only need to be able to transfer the data across to the different server and forget about the two databases actually being in-sync.
I have also, looked at DTS for a possible solution on SQL, however it seems highly un-realistic, having to map somewhere like 250 tables from the a drop-down list, only because the two database servers use different cases to represent tables internals. So, table 'Table' in my application's SQL database is called 'TABLE' is my applications Oracle database. DTS is highly inefficient in dealing with this. Also, having 250 tables move makes this a bit of a pain.
Thank you Justin for your response; I highly appreciate your inputs.
Regards, Nisarg

Similar Messages

  • What is Difference between ANSI SQL and ORACLE SQL

    Hi,
    I am going to take the assesment test for ANSI SQL Programming before that i want to know any difference between ANSI SQL and ORACLE SQL?
    I am studying for SQL but the test will be ANSI SQL please let me give an idea about the both.
    Thanks
    Merina Roslin

    Basically there is syntax difference between both of them.
    Lets say i want to join two table EMP and DEPT based on DEPTNO.
    With Oracle SQL format its like this.
    select e.*
      from emp e, dept d
    where e.deptno = d.deptnoHere the joining condition goes in the WHERE clause.
    With ANSI SQL format its like this.
    select e.*
      from emp e
      join dept d
        on e.deptno = d.deptnoHere the join condition is mentioned separately and not in WHERE clause.
    Oracle supports ANSI SQL starting from 9i version.
    You can read more about the syntax difference Here

  • Differences between ANSI SQL and Oracle 8/9

    Hallo,
    i'm looking for good online texts or books concerning the problem "Differences between ANSI SQL and different database implementations (ORACLE, Informix, MySQL...)" I want to check a program written in C (with ESQL) that works with an Informix-DB. In this code i want to find code that is specific to the Informix-DB. I want to change the database, so all the code should be independent from a DB. Does anybody know texts or books concerning this problem?
    thx
    Marco Seum

    Basically there is syntax difference between both of them.
    Lets say i want to join two table EMP and DEPT based on DEPTNO.
    With Oracle SQL format its like this.
    select e.*
      from emp e, dept d
    where e.deptno = d.deptnoHere the joining condition goes in the WHERE clause.
    With ANSI SQL format its like this.
    select e.*
      from emp e
      join dept d
        on e.deptno = d.deptnoHere the join condition is mentioned separately and not in WHERE clause.
    Oracle supports ANSI SQL starting from 9i version.
    You can read more about the syntax difference Here

  • Concept between MS SQL and Oracle

    hi, everyone, i am very new for Oracle. Reading some books and confuse about some base concepts:
    in MS SQL world, you can install multiple INSTANCE on a physical server, inside each INSTANCE, you can create multiple DATABASEs, each DATABASE has it owned data\transaction log file on disk.
    In the Oracle world, my understand is, INSTANCE = memory structure + physical database file (which pretty close to MS SQL identification). similar to MS SQL, you can have multiple INSTANCEs on each physical server. but which one is the 'DATABASE' in oracle world? The closest one i think is TABLESPACE. I can assign one or multiple physical data file for each TABLESPACE. but all the TABLESPACE place the redo log file inside the same undo TABLESPACE? also, for each application, i have to create one or more TABLESPACE inside a INSTANCE(that's what i usually do in MS SQL)?
    thank you for your help. please forgive me if my question is too silly.
    Edited by: user3614365 on Jun 14, 2012 2:57 PM

    please forgive me if my question is too silly.Firs of all, your questions are not silly at all. You can get better understanding of one product by setting analogies and comparisons with a product you are familiar with. I used same method when I learned about MS SQL comparing it with Oracle.
    So, welcome on Oracle board!
    in MS SQL world, you can install multiple INSTANCE on a physical server, you can have multiple instances of Oracle, belonging to same or separate Oracle Home on same physical machine.
    inside each INSTANCE, you can create multiple DATABASEs, In Oracle instance you can have only one database. That is how it is.
    each DATABASE has it owned data\transaction log file on disk.Even in MS SQL there can be multiple data files per database.
    >
    In the Oracle world, my understand is, INSTANCE = memory structure + physical database file (which pretty close to MS SQL identification). similar to MS SQL, you can have multiple INSTANCEs on each physical server.
    >
    yes
    >
    but which one is the 'DATABASE' in oracle world? The closest one i think is TABLESPACE. I can assign one or multiple physical data file for each TABLESPACE. but all the TABLESPACE place the redo log file inside the same undo TABLESPACE?
    >
    Here is little similarity between Oracle TABLESPACE and MS SQL database.
    In MS SQL Database has not only files associated with it, it has its own security and piece of data dictionary. It can have its own collation, you can detach it from one instance and attach to another, you can back it up separately, etc...
    I would say MS DB is more "standalone and self-containig" unit, comparing to Oracle TS.
    Oracle TS is a way of organizing data files and setting some default common storage properties for tables and other segments contained in TS.
    Oracle TS do not have separate security and data dictionary. Normally TS cannot be detached from one instance and attached to another. Though, there are special type of TS - transportable tablespace, which can be viewed as being a little bit close to what MS DB is.
    Anyway Oracle TS is not even close thing to MS DB.
    And it does not need to be. It has a totally different purpose.
    also, for each application, i have to create one or more TABLESPACE inside a INSTANCE(that's what i usually do in MS SQL)?You do not have to. But you better to do this way, from a data organization perspective. To make things look nicely organized.
    Sometimes one application may use multiple TS, for example when it needs different block size for some tables.
    You also can share TS between multiple apps, as you can do it with MS DB.
    What else is different?
    In Oracle there are no separation between logins and db users. It is one entity - USER. It has its security settings and may have its database objects.
    In Oracle can be only one schema per user, named same as user. Basically it is same thing - user and schema is same thing, and created and managed by same command CREATE/ALTER USER.
    However when we talk about storage and a place where objects belong to we say SCHEMA.
    When we talk about security and an owner where objects belong to - we say USER. :)
    Schema is like users Home in OS. What user creates belongs to its "home" - the schema. And the user is owner of it.
    If one user creates something in other's schema that thing will belong to that other's schema, and that another user will be owner, not to the user that called CREATE statement.
    However one user can change its current schema for the current session, just to avoid implicitly specifying another schema as a prefix for objects of that another schema.
    CONNECT scott
    SELECT * FROM joe.emp;
    ALTER SESSION SET CURRENT_SCHEMA = joe;
    SELECT * FROM emp;
    In MS SQL schemas are more similar to directories, there can be objects of different users in same schema, and objects of same user in different schemas.
    In Oracle there is DB Link which is similar to Linked Server.
    When called, DB Link is specified after the object name, separated by @.
    SELECT * FROM emp@anotherDB;
    That was most significant differences.
    Oh yes, Oracle is a versioning engine, and MS SQL is locking engine, though it can be any starting from recent.

  • Dblink creation between sql and oracle server

    Hi dears,
    I need to create dblink between the sql and oracle server.
    (For me the requirement is sql datas need to import in oracle database).
    My questions is,
    Without installting gateway is't possibale to get the sql data in the oracle server.
    my database version is 11.2.0.3 64bit
    Kindly let me know, Waiting for your suggestsion.
    Regards
    Athish

    About the Linked Server mechanism have a look at the MS Knowledge base article:
    Article ID: 280106 - HOW TO: Set Up and Troubleshoot a Linked Server to Oracle in SQL Server
    or
    How to run a SQL Server 2005 Integration Services package as a SQL Server Agent job step Article ID : 912911
    Regarding DG4ODBC and DG4MSQL, please have a look at our Support portal and look for the gateway master note:
    Master Note for Oracle Gateway Products          [Document 1083703.1]     
    It contains generic information how to connect to the foreign database
    Document 233876.1 Options for Connecting to Foreign Data Stores and Non-Oracle Databases - For example - DB2, SQL*Server, Sybase, Informix, Teradata, MySQL
    as well as the functional differences between the Database Gateway for ODBC (Generic Connectivity) and MS SQL Server
    Document 252364.1 Functional Differences Between Generic Connectivity and Database Gateways
    Document 232482.1 Gateway and Generic Connectivity Licensing Considerations
    as well as where to find the latest release and how to install and configure them.

  • SQL and Oracle in synchronization

    I have to synchronize for about 2 months one Oracle 9.i database and one SQL server 2000, Standard edition database, both running on Win 2K Server. Every change made on either of the databases (the best is there are only 4-5 tables reflected) has to be provided on the other side almost in real time. I choused to use SQL server as a way to do it. For Oracle I have only the ODBC connectivity (supplied for free) and I did have a lot of problems in ORA 8.1.6... Needless to say, there's no money for third party products or even new ORA transfer utility, as the 2-month are not sufficient time.
    I did set up linked servers between SQL server and Oracle and trying to make some triggers working for me, but is this the best way to do it? May be somebody has better experience...
    Any ideas will be greatly appreciated.
    Thanks,
    MJ

    Do you really like to implement a two way replication between M$ SQL and Oracle?
    Maybe you can try this using the heterogenous gateway and Oracle Advanced replication. Don't know if this could work our test environment would be ready but actually there's no time to try.
    Will keep you informed if I know more.
    In this way you don't need any third party sw and I think it could work, but never have tried it out.
    Could be an interesing challenge ;-)
    Michel

  • About SQL and Oracle

    Hello, I was using a MySQL database and i will soon use Oracle8. I was wandering if Oracle authorize something like mysql_result... I'm looking too for simple documentation about connecting to an Oracle database from a php file using Sql. Do u know books or sites ? Tks

    user12317666 wrote:
    Does Oracle support T-SQL ? Why would Oracle support a proprietary macro-based language implementation from a competitor?
    If it is not supported in Oracle, what is the major grammer difference between T-SQL and Oracle supported SQL ? Oracle has two languages. SQL. PL/SQL.
    PL/SQL is formal declarative procedural language with object orientation programming features. It is based on the Ada language (close relative of the Pascal language).
    SQL is fully integrated with PL/SQL. Which means that you can write and mix SQL source code with PL/SQL source code and the PL/SQL compiler will figure out which is which and where to make calls to the SQL engine for executing SQL code.
    Is there any efficient way for programmer to complete T-SQL transition to Oracle SQL ? Yes. Unfortunately not the answer that you are likely hoping for.
    Forget EVERYTHING you did with T-SQL.
    There is no real comparison between the two. And not only many differences, but some fundamental and conceptual differences too.

  • Can We use FDM as ETL tool between SQL and Oracle

    I want to use FDM as ETL tool between SQL and Oracle. Can it be possible. I didn,t found any target adapter for oracle database.My source system is SQL and Target system is Oracle database.
    Rahul
    Edited by: user12190125 on Nov 9, 2009 4:23 AM

    Rahul,
    I believe this is possible to do, but not an easy one and there are a few considerations:
    How much data are you processing? FDM has a lot of features which support the business process. While this is great for users and audit trail etc. it slows down performance if you want to process a lot of data. It also depends on the type of mappings you use (Like mappings are slower than explicit mappings).
    How familiar are you with VBScript? There is no explicit target adapter for Oracle, but there is a data mart adapter which can be used for anything. You have to implement everything yourself though, mainly the Export and Load actions. In there you will also have to handle the the connections to the MSSQL and Oracle databases.
    Check the data mart adapter and see if you feel comfortable with defining the vb code in there. There are reasons for and against this approach. ODI would probably be the better choice unless you really need to have FDM's process support.
    Regards,
    Matt

  • Guide to differences between SQL Server Transact SQL and Oracle PL/SQL

    Does anyone know of a good book (or online guide) that has an in-depth comparison of the differences between SQL Server Transact SQL and Oracle PL/SQL? (Something more than a beginner's guide)

    Hello,
    Below links will surely be helpful
    Discontinued features in SQL 2012
    Depricated features in SQL Server 2012
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Uses for the Action Property with SQL and Oracle DB Adapters

    This thread is a complement to the Wiki Article
    BizTalk: Streamlining WCF SQL and Oracle Messaging-Only and Other Patterns
    The question.  In what circumstances is explicitly setting the Action value with the WCF SQL and Oracle DB bindings useful or beneficial. 
    A complimentary question.  Is it even possible to set the Action value to anything other than exactly what is required by the Message.
    I ask because of three very specific behaviors of the bindings themselves:
    The binding enforces a match between the Action and the Message, therefore...
    There is a one-to-one relationship between the Message and Action, but...
    The binding is able to correctly derive and perform the requested operation with the unspecific CompositeOperation.
    For clarity, I understand how to set the Action. I. understand what the Action represents in the SOAP scheme. I understand how Action can be used as an abstraction for SOAP operations.
    Thoughts?

    Do you have any good suggestion to learn how to use action property with SQL and Oracle DB adapters?  I learn a lot from your replies for years in BizTalk forum. :)

  • Need a function name for Sql and Oracle

    Retrieving value of next line by doing opteration in previous row.

    Can you rephrase the question? Or better yet, provide an example? I'm not sure I understand what you are asking.
    My best guess is that you are looking for the analytic functions LEAD or LAG in Oracle, assuming you are on a relatively recent Oracle version. If by "SQL and Oracle" in your subject you mean "SQL Server and Oracle" (SQL is a language that all relational databases implement, SQL Server is Microsoft's relational database), I have no idea how (or if) you can do something similar with a built-in function in SQL Server. You would want to post in a SQL Server group to see how they handle that sort of thing.
    Justin

  • Tablespace size report for SQL and oracle servers

     
       Hi All
      is it possible to get tablespace size for all sql and oracle server in the form of report in SCOM.
      Regards
      Madhavi

    Oracle: Table size report of Oracle is depend on the MP which yu imported into SCOM
    SQL :
    1) Create a group which contains folowing dynamic rule
    2) Reporting workspace --> Microsoft Gneric Report --> Performace Detail
    3) in the parameter area, create a new series, add group which create in step 1) and select the rule: MSSQL XXX: Collect Database Allocated Size(MB)
    4) Run the report
    5) In the report, click actions and select "Performance details for every object"
    Roger

  • IWay adapters between SAP ERP and Oracle

    Hi,
    The systemlandscape in the future is a SAP ERP System without a java stack and a Oracle system.
    Importend: And without a SAP Portal and a SAP PI.
    I think we will install the iWay Oracle adapter on the SAP ERP system and on the Oracle the iWay for SAP adapter.
    I this solution generally possible with iWay adapters or maybe others solution between SAP ERP and Oracle?
    Thank you for all answers.
    Regards
    Richard

    Hi,
    Your question is not clear.
    It is true that SAP is no more supporting Dual stack systems because of performance related problems. So, we need to install As ABAP and As Java system separately. As far as oracle is concerned, you need a database to install ERP system then why you want to install adapter ?
    Thanks
    Sunny

  • Kernel Panic while transfering data between MAC HD and network drives

     Kernel Panic while transfering data between MAC HD and network drives. it's an iMAC 24" 2011. Snow Leopard 10.6.8. I can't seem to find the cause to this.Thank you guys !
    Here is the log fine  with error code:
    Error code: 0x0000000000000000
    Interval Since Last Panic Report:  5 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    3C5AA43F-D876-4F9D-A831-D8043218C6E0
    Tue Aug 16 14:54:46 2011
    panic(cpu 0 caller 0xffffff80002d1208): Kernel trap at 0xffffff7f815c6b54, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000005, CR3: 0x0000000000100000, CR4: 0x0000000000040660
    RAX: 0x0000000000000000, RBX: 0xffffff8000000000, RCX: 0x0000000001000000, RDX: 0xffffff8013ae9200
    RSP: 0xffffff80de173ea0, RBP: 0xffffff80de173ed0, RSI: 0x0000000000000000, RDI: 0xffffff8013ae9200
    R8:  0x0000000000000001, R9:  0x0000000000000000, R10: 0x0000000000000000, R11: 0x0000000000000000
    R12: 0x0000000000000000, R13: 0xffffff8016207008, R14: 0xffffff8015a228f8, R15: 0x0000000000000000
    RFL: 0x0000000000010246, RIP: 0xffffff7f815c6b54, CS:  0x0000000000000008, SS:  0x0000000000000010
    Error code: 0x0000000000000000
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80de173b40 : 0xffffff8000204d15
    0xffffff80de173c40 : 0xffffff80002d1208
    0xffffff80de173d90 : 0xffffff80002e3f4a
    0xffffff80de173da0 : 0xffffff7f815c6b54
    0xffffff80de173ed0 : 0xffffff80002524fe
    0xffffff80de173f00 : 0xffffff8000478c7f
    0xffffff80de173f40 : 0xffffff7f8159b158
    0xffffff80de173fa0 : 0xffffff80002c8527
          Kernel Extensions in backtrace (with dependencies):
             com.thursby.kext.cifs(5.1)@0xffffff7f815ae000->0xffffff7f815cffff
                dependency: com.thursby.kext.NetBIOS(5.1)@0xffffff7f8158b000
             com.thursby.kext.NetBIOS(5.1)@0xffffff7f8158b000->0xffffff7f815adfff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:32:41 PDT 2011; root:xnu-1504.15.3~1/RELEASE_X86_64
    System model name: iMac12,1 (Mac-942B5BF58194151B)
    System uptime in nanoseconds: 105374280984
    unloaded kexts:
    (none)
    loaded kexts:
    com.vmware.kext.vmnet            3.1.3
    com.vmware.kext.vmioplug       3.1.3
    com.vmware.kext.vmci                3.1.3
    com.trendmicro.kext.KERedirect              1.0.0
    com.trendmicro.kext.filehook   1.5.0
    com.vmware.kext.vmx86            3.1.3
    com.thursby.kext.cifs    5.1
    com.thursby.kext.NetBIOS         5.1
    com.apple.filesystems.smbfs     1.6.7 - last loaded 60402747883
    com.apple.filesystems.autofs    2.1.0
    com.apple.driver.AppleTyMCEDriver      1.0.2d2
    com.apple.driver.AppleHWSensor           1.9.3d0
    com.apple.driver.AudioAUUC    1.57
    com.apple.driver.AppleUpstreamUserClient      3.5.7
    com.apple.driver.AppleMikeyHIDDriver                1.2.0
    com.apple.driver.AppleMCCSControl     1.0.20
    com.apple.driver.AppleIntelPenrynProfile           17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMikeyDriver       2.0.5f14
    com.apple.kext.ATIFramebuffer              6.3.6
    com.apple.driver.AppleBluetoothMultitouch     54.3
    com.apple.driver.AppleIntelHDGraphics               6.3.6
    com.apple.driver.AppleIntelNehalemProfile       11
    com.apple.driver.AudioIPCDriver             1.1.6
    com.apple.driver.AppleHDA       2.0.5f14
    com.apple.driver.AppleGraphicsControl               2.10.6
    com.apple.ATIRadeonX3000       6.3.6
    com.apple.iokit.AppleBCM5701Ethernet              3.0.5b8
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AirPort.Atheros9388   426.35.3
    com.apple.driver.ACPI_SMC_PlatformPlugin      4.7.0a1
    com.apple.driver.AppleLPC         1.5.1
    com.apple.driver.AppleBacklight              170.0.46
    com.apple.kext.AppleSMCLMU                1.5.2d10
    com.apple.driver.AppleIntelSNBGraphicsFB        6.3.6
    com.apple.driver.AppleUSBCardReader                2.6.1
    com.apple.driver.AppleIRController        303.8
    com.apple.iokit.SCSITaskUserClient        2.6.8
    com.apple.iokit.IOAHCIBlockStorage      1.6.4
    com.apple.driver.AppleUSBHub               4.2.4
    com.apple.driver.AppleFWOHCI               4.7.3
    com.apple.BootCache   31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib                1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleAHCIPort             2.1.7
    com.apple.driver.AppleUSBEHCI              4.2.4
    com.apple.driver.AppleUSBUHCI             4.2.0
    com.apple.driver.AppleACPIButtons      1.3.6
    com.apple.driver.AppleRTC        1.3.1
    com.apple.driver.AppleHPET      1.5
    com.apple.driver.AppleSMBIOS                1.7
    com.apple.driver.AppleACPIEC 1.3.6
    com.apple.driver.AppleAPIC      1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient         142.6.0
    com.apple.security.sandbox       1
    com.apple.security.quarantine  0
    com.apple.nke.applicationfirewall           2.1.12
    com.apple.driver.AppleIntelCPUPowerManagement     142.6.0
    com.apple.driver.AppleProfileReadCounterAction           17
    com.apple.driver.AppleProfileTimestampAction               10
    com.apple.driver.AppleProfileThreadInfoAction               14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction       10
    com.apple.driver.AppleProfileCallstackAction    20
    com.apple.iokit.IOSurface           74.2
    com.apple.iokit.IOBluetoothSerialManager         2.4.5f3
    com.apple.iokit.IOSerialFamily   10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.IOBluetoothHIDDriver               2.4.5f3
    com.apple.driver.AppleMultitouchDriver             207.11
    com.apple.driver.DspFuncLib     2.0.5f14
    com.apple.iokit.IOAudioFamily  1.8.3fc2
    com.apple.kext.OSvKernDSPLib                1.3
    com.apple.driver.AppleSMBusController              1.0.10d0
    com.apple.iokit.IOFireWireIP     2.0.3
    com.apple.iokit.AppleProfileFamily         41
    com.apple.driver.AppleHDAController   2.0.5f14
    com.apple.iokit.IOHDAFamily     2.0.5f14
    com.apple.iokit.IO80211Family  320.1
    com.apple.iokit.IONetworkingFamily      1.10
    com.apple.driver.IOPlatformPluginFamily            4.7.0a1
    com.apple.driver.AppleSMBusPCI           1.0.10d0
    com.apple.driver.AppleBacklightExpert 1.0.1
    com.apple.iokit.IONDRVSupport              2.2
    com.apple.driver.AppleSMC       3.1.0d5
    com.apple.driver.AppleThunderboltEDMSink     1.1.1
    com.apple.driver.AppleThunderboltEDMSource               1.1.1
    com.apple.kext.ATI6000Controller           6.3.6
    com.apple.kext.ATISupport        6.3.6
    com.apple.iokit.IOGraphicsFamily            2.2
    com.apple.driver.AppleThunderboltDPOutAdapter         1.3.2
    com.apple.driver.AppleThunderboltDPInAdapter            1.3.2
    com.apple.driver.AppleThunderboltDPAdapterFamily   1.3.2
    com.apple.driver.AppleThunderboltPCIDownAdapter   1.1.6
    com.apple.driver.AppleUSBHIDKeyboard             141.5
    com.apple.driver.AppleHIDKeyboard     141.5
    com.apple.driver.BroadcomUSBBluetoothHCIController               2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController        2.4.5f3
    com.apple.iokit.IOBluetoothFamily         2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass              2.6.7
    com.apple.iokit.IOSCSIBlockCommandsDevice   2.6.8
    com.apple.iokit.IOUSBHIDDriver               4.2.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice      2.6.8
    com.apple.iokit.IOBDStorageFamily        1.6
    com.apple.iokit.IODVDStorageFamily     1.6
    com.apple.iokit.IOCDStorageFamily        1.6.1
    com.apple.driver.AppleUSBMergeNub 4.2.4
    com.apple.driver.AppleUSBComposite  3.9.0
    com.apple.driver.XsanFilter        402.1
    com.apple.iokit.IOAHCISerialATAPI         1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily              2.6.8
    com.apple.driver.AppleThunderboltNHI               1.2.6
    com.apple.iokit.IOThunderboltFamily    1.4.9
    com.apple.iokit.IOFireWireFamily            4.2.6
    com.apple.iokit.IOUSBUserClient             4.2.4
    com.apple.driver.AppleFileSystemDriver              2.0
    com.apple.iokit.IOAHCIFamily    2.0.6
    com.apple.iokit.IOUSBFamily     4.2.4
    com.apple.driver.AppleEFIRuntime         1.4.0
    com.apple.iokit.IOHIDFamily      1.6.6
    com.apple.iokit.IOSMBusFamily                1.1
    com.apple.security.TMSafetyNet             6
    com.apple.kext.AppleMatch      1.0.0d1
    com.apple.driver.DiskImages     289
    com.apple.iokit.IOStorageFamily              1.6.3
    com.apple.driver.AppleACPIPlatform     1.3.6
    com.apple.iokit.IOPCIFamily       2.6.5
    com.apple.iokit.IOACPIFamily    1.3.0
    System Profile:
    Model: iMac12,1, BootROM IM121.0047.B0A, 4 processors, Intel Core i5, 2.7 GHz, 8 GB, SMC 1.71f22
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.35.3
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HDS722020ALA330, 1.82 TB
    Serial ATA Device: OPTIARC DVD RW AD-5690H
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Officejet Pro 8000 A809, 0x03f0  (Hewlett Packard), 0x3612, 0xfd140000 / 5
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 3
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x850b, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfa130000 / 5
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfa132000 / 8
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0xfa111000 / 6

    There is something incompatible would be my guess. Did you disconnect all your peripherals in safe mode just to check?
    You might now create a new temporary user account. Log into the new account. Do the panics still occur?
    I would also visit The XLab FAQs and read the FAQ on diagnosing kernel panics. Sometimes they can be difficult to track down. Looking at each new panic log would help determine if it's cause is associated with the same extensions.

  • What are major differences between SAP BI and Oracle BI?

    Hi Experts,
    I am new to Oracle BI. But I want to know about major differences between SAP BI and Oracle BI?.
    Please help me....
    Thanks & Regards,
    A. kavya kumari.

    There are at least five major differences :
    S P O r c l e
    but important to also be aware of the minor difference:
    A/a

Maybe you are looking for

  • Internal Speakers do not work at all

    My sound was working just fine a few days ago, and all of a sudden, there is no sound at all comming from my macbook pro. I have tried plugging in headphones and still there's no sound comming from there neither. I don't even hear the chime at start-

  • JScrollPane, JTextPane and JPanel... wtf?

    i am working on a extending a JPanel to have a JTextPane in a JScrollPane. When i add the JTextPane to the JScrollPane inside of the JPanel object it doesn't scroll horizontally, but when i add the whole panel to a JScrollPane in the JFrame that i ha

  • CJ88 Settlement to Fix Asset

    Hi experts, I tried to do settlement from a WBS to a fix asset. After maintaining the settlement rule I went to CJ88 to do the actual settlement, however i got the following error message: Dignosis Duriing settlement of sender WBS there was an atempt

  • Adobe Acrobat XL Pro

    I just downloaded the Adobe Acrobat XL Pro and need to know.  HOw can I type a word document, save the document to a PDF file so I an then Email the PDF attachment.

  • Digital signature and Smartforms

    hi all,     I am using Std Text to print the data in a  smartform.Now at 1 place in the Std text,i need to insert a digital Signature.   Now how do  i insert the digital signature in the Std text? BR, Disha.