ODAC 12c release 1 compatibility

I am starting a Project which will use Oracle 10g release 2 as database and Visual Studio 2012 for development. I would like to ask if the ODAC 12c release 1 would work in that scenario. For the development environment I will be using an Oracle 11g XE but the final product will connect to an Oracle 10g release 2 database.
Is it possible to use the ODAC 12c for both scenarios?
Thanks!

From Oracle's website:
32-bit ODAC 12c supports connectivity to Oracle Database versions 10.2 and higher.
So I would assume it would work fine.
Your test environment is going to be Oracle 10g2, right?

Similar Messages

  • Transaction aborts after installing ODAC 12c Release 3

    I have .net code that used a transaction scope which works fine using ODAC 11g Release 4, but fails with "Unable to enlist in a distributed transaction" using ODAC 12c Release 1,2, or 3.  The transaction to a single database.  I am at a loss for what could be the issue.
    This issue occurs on both Windows 7 and Windows Server 2008 R2.
    I have reviewed the trace logs for both the Microsoft Distributed Transaction Server, and the Oracle Services for Microsoft Transactions Services.  The MSDTC trace logs indicate that the transaction abort was request was received from the calling application ("RECEIVED_ABORT_REQUEST_FROM_BEGINNER").  The ORAMTS trace logs indicate an OCI error and that there was an attempt to begin a distributed transaction with out logging on ("OCI_ERROR - 2048." ,  "ORA-02048: attempt to begin distributed transaction without logging on")
    I can reproduce this error with a simple code example with just tried to insert records into a table.  If I change the data provider to "System.Data.OracleClient", or uninstall 12c and install 11g this code works fine.
    DataSet1TableAdapters.DataTable1TableAdapter da = new DataSet1TableAdapters.DataTable1TableAdapter();
                using (TransactionScope scope = new TransactionScope())
                    Transaction txn = Transaction.Current;
                    try
                       da.Insert(0, "This ia a title");
                        scope.Complete();
                        lblmessage.Text = "Transaction Succeeded.";
                    catch (Exception ex)
                        txn.Rollback();
                        lblmessage.Text = "Transaction Failed.";
    Can anyone provide any ideas what is happening?  I really would like to use ODAC 12c.
    Thanks.

    Moving to the ODP.NET forum to get a wider audience.

  • Oracle ODAC 12c Release 3 32-bit supports EF 6.x?

    Hello,
    I have Windows  8.1 64-bit with Visual Studio 2013.  I installed the latest Oracle ODAC 12c Release 3 32-bit which says it supports EF 6.  When add the ADO.NET Entity Framework to my project and choose my Oracle data connection, it doesn't allow me to select the Entity Framework 6.0 version.  It has Entity Framework 5.x selected and version 6.x is greyed out.  It says 'An Entity Framework database provider compatible with the latest version of the Entity Framework could not be found for your data connection'.  Why is that?
    Thanks

    How is your app.config? You need to have the Oracle.ManagedDataAccess.Client provider in your app.config:
      <configSections>
        <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
        <section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
      </configSections>
    <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
        <providers>
          <provider invariantName="Oracle.ManagedDataAccess.Client"
              type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
          <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
        </providers>
      </entityFramework>
    I have experimented a bit more, and suggest the following:
    1) Remove any Oracle driver references for the various projects. Close Visual Studio.
    2) Uninstall ODP.Net.
    3) Reopen Visual Studio and install the latest version of Nuget package "Oracle Data Provider for .NET (ODP.NET) EntityFramework" (I have "6.121.1-beta (Prerelease)"), and include this package both for your data libraries and the application itself.
    This will make sure that the completed application will have all the necessary drivers, and ensures that all users will be able to compile and run the solution - all the references will point to the dll's included in the Nuget package.
    3) Edit: As the Nuget package I reference above is not authored by Oracle I'd recommend waiting for the correct official Nuget package - I solved it by adding references to Oracle.ManagedDataAccess.dll and Oracle.ManagedDataAccess.EntityFramework.dll located in the local Oracle Home, with "Copy Local" set to True, to ensure that they are distributed along with the package. I added the references after installing the newest version of the ODAC package.
    4) Close Visual Studio and install the latest (beta) version of ODP.Net - this will enable you to run the import wizard. (Currently12C R3 Beta 2 - get the 32 bit version: ODAC 12c Release 3 Beta Download).
    5) Reopen Visual Studio. Make sure that both the application and data library has the <entityFramework> above.
    In this way - any other computer can run and compile your project - they just need to get the Nuget package with the managed driver dll's. But - to run the wizard you need to have ODP.Net, it seems.

  • Re: Oracle ODAC 12c Release 3 32-bit supports EF 6.x?

    I am also facing same problem with latest ODP.NET. Our existing application with 11G and EF 4.3 DB first worked very well. We need to migrate our application from 11G to 12C. But its showstopper for us to proceed. Please help us.
    My environment details
    Latest Oracle ODAC 12c Release 3 - 32-bit released on 24-Dec-2014
    Visual Studio 2013 Update 3 - 32 Bit on Windows 8.1 64 bit OS
    Entity Framework 6.1.31219.0 (EntityFramework.6.1.2)
    I have tried with .Net framework 4.5, 4.5.1 and 4.5.2.
    The latest EntityFramework.dll (6.1.31219.0) added to project reference, EF 6.x option alone comes also getting greyed out.
    If I remove EntityFramework.dll from project reference, getting only option to use EF 5.0
    Tried various config file changes, different versions of EF (6+), also tried reverting to ODAC 12c Release 3 Beta. I could not make it working 12c ODP.Net with EF 6+ DB first.
    Please suggest us the ideal environment for 12c ODP.Net with EF 6+ DB first.
    Thanks

    Have you set the entityFramework correctly in the local app.config/web.config? You need to set it both in any libraries using the code and in the deployed application.
    And - how is the system.data/DbProviderFactories in the correct machine.config? You either have to have it set in the correct machine.config or the local app.config/web.config files.
    Here's my working local config file, using the 12c R3 release version dll's and the managed drivers:
      <configSections>
        <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
        <section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
      </configSections>
      <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
        <providers>
          <provider invariantName="Oracle.ManagedDataAccess.Client" type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
          <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
        </providers>
      </entityFramework>
      <system.data>
        <DbProviderFactories>
          <!-- Remove in case this is already defined in machine.config -->
          <remove invariant="Oracle.ManagedDataAccess.Client" />
          <add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
        </DbProviderFactories>
      </system.data>
      <connectionStrings>
        <add name="MyOracleModel" connectionString="DATA SOURCE=MySource;PASSWORD=MyPassword;PERSIST SECURITY INFO=True;USER ID=MyUserName" providerName="Oracle.ManagedDataAccess.Client" />
      </connectionStrings>
    And for example
      <oracle.manageddataaccess.client>
        <version number="4.121.2.0">
          <dataSources>
            <dataSource alias="MySource" descriptor="(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=MyService)))" />
          </dataSources>
        </version>
      </oracle.manageddataaccess.client>
    for explicit server settings or
      <oracle.manageddataaccess.client>
        <version number="4.121.2.0">
          <settings>
            <setting name="TNS_ADMIN" value="C:\app\path\to\tnsnamesdotora\here\network\ADMIN" />
          </settings>
        </version>
      </oracle.manageddataaccess.client>
    ..to point to a tnsnames.ora file.

  • ODAC 12c Release 3

    Any news on the release date of the ODAC 12c Release 3, we really need xmltype?
    Rick

    This is a partial list of the planned features:
    Entity Framework Code First and Code First Migrations (requires EF 6)
    native Entity Framework 6 certification
    NuGet support
    .NET Framework 4.5.2 certification
    The beta will be coming before the end of summer.

  • ODAC 12c Release 3 configuration error

    Hi, i am getting the following error:
    Log file:
    INFO: Command C:\WINDOWS\system32\cmd /c call C:\OracleClient\product\12.1.0\client_1\bin\oramtsctl.exe -new    -internal
    INFO: ... GenericInternalPlugIn.handleProcess() entered.
    INFO: ... GenericInternalPlugIn: getting configAssistantParmas.
    INFO: ... GenericInternalPlugIn: checking secretArguments.
    INFO: No arguments to pass to stdin
    INFO: ... GenericInternalPlugIn: starting read loop.
    INFO: Read: Service is being created.
    ATTENTION: Skipping line: Service is being created.
    INFO: End of argument passing to stdin
    INFO: Read: Error: hostname EMGSCMP033.emgs.emergensyscorporation.com is too long.
    ATTENTION: Skipping line: Error: hostname XXXXXXX is too long.
    INFO: Exceeded the number of arguments passed to stdin. CurrentCount:1 Total args:0
    INFO: Read: Action: specify one IP address of the host when creating the service.
    ATTENTION: Skipping line: Action: specify one IP address of the host when creating the service.
    INFO: Exceeded the number of arguments passed to stdin. CurrentCount:1 Total args:0
    INFO: Read: OUI internal: error occurred on localhost
    ATTENTION: Skipping line: OUI internal: error occurred on localhost
    INFO: Exceeded the number of arguments passed to stdin. CurrentCount:1 Total args:0
    INFO: Completed Plugin named: Oracle Services For Microsoft Transaction Server
    If i try to run oramtsctl.exe specifying my IP, i get the following error:
    What can i do?
    Thank you.

    Can you run oramtsctl.exe locally on the machine? Trying to figure out if this is a networking access/permissions problem or an install issue.
    Did this problem occur with previous ODAC releases on the same machines?

  • How to set JDBC Data Sources in Oracle MapViewer for Oracle database 12c Release 1 (12.1.0.1)

    How to set JDBC Data Sources in Oracle MapViewer for Oracle database 12c Release 1 (12.1.0.1)?
    The following is my configuration in the conf\mapViewerConfig.xml:
    <map_data_source name="mvdemo12"
    jdbc_host="127.0.0.1"
    jdbc_sid="orcl12c1"
    jdbc_port="1522"
    jdbc_user="mvdemo"
    jdbc_password="7OVl2rJ+hOYxG5T3vKJQb+hW4NPgy9EN"
    jdbc_mode="thin"
    number_of_mappers="3"
    allow_jdbc_theme_based_foi="true"
    editable="true"/>
    <!--  ****  -->
    But it does not work.
    After use "sqlplus mvdemo/[email protected]:1522/pdborcl", it connected to the Oracle database 12c.
    Does anyone know it?
    Thanks,

    For 11.1.1.7.1 use the syntax for jdbc_sid, i.e.
    //mypdb1.foo.com as described in the README,
    - MapViewer native (non-container) data sources can now use database service name in place of SID. To supply a db service name, you will use the same jdbc_sid attribute, but specify the service name with double slashes in front, such as follows:
      <map_data_source name="myds"
        jdbc_host="foo.com"
        jdbc_sid="//mypdb1.foo.com"
        jdbc_port="1522"
      />
    For 11.1.1.7.0 use a container_ds instead.
    i.e. instead of using
    <map_data_source name="my_12c_test"
                       jdbc_host="mydbinstance"
                       jdbc_sid="pdborcl12c"
                       jdbc_port="1522"
                       jdbc_user="mytestuser"
                       jdbc_password="m2E7T48U3LfRjKwR0YFETQcjNb4gCMLG8/X0KWjO00Q="
                       jdbc_mode="thin"
                       number_of_mappers="6"
                       allow_jdbc_theme_based_foi="false"
                       editable="false"
       />
    use
      <map_data_source name="my_12c_test"
                       container_ds="jdbc/db12c"
                       number_of_mappers="6"
                       allow_jdbc_theme_based_foi="false"
                       editable="false"
       />
    In my case the Glassfish 3.1.2.2 JDBC connection pool definition was
    Property
    url  jdbc:oracle:thin:@mydbinstance:1522/pdborcl12c.rest_of.service.name
    Uncheck the Wrap JDBC Objects option in Advanced panel, i.e. the Edit JDBC Connection Pool Advanced properties page.
    Add a JDBC resource for that newly created pool
    Use that in mapviewerconfig.xml as above

  • Fail to login as other user on OEM 12c Release 2 Cloud control console

    Hi,
    I tried to login on OEM 12c release 2 cloud control console as other user it show the following error
    Authentication failed. If problem persists, contact your system administrator
    but when i try with sysman account then it successful done. so i dont know why it happen. I also checked job_queue_processes that is 1000 and i also checked listener,agent,oms status all are up.
    so please suggest me what should i do and what is the main cause of this problem.
    Thanks,
    Jimmy Gupta

    Hi Venkata,
    This is the contant of emoms.trc file
    so suggest me what should i do to solve this problem.
    es processed per buffered queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,296 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,296 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,297 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,297 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,298 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,298 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,299 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,299 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,300 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,300 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,301 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Space usage of buffered queue with respect to streams pool size (%) very long. Has been truncated.
    2013-03-28 15:39:52,406 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total number of Inbound/Outbound servers in consolidated database very long. Has been truncated.
    2013-03-28 15:39:52,408 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Inbound/Outbound Server Queue - Cumulative Number of Spilled Messages very long. Has been truncated.
    2013-03-28 15:39:52,411 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,412 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,412 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,413 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in the buffered queue per queue (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,414 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Current number of overflow messages spilled to disk from the buffered queue very long. Has been truncated.
    2013-03-28 15:39:52,414 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,415 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,415 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,416 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,417 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,417 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,418 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,418 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,419 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,420 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,420 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,421 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,422 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,423 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Space usage of buffered queue with respect to streams pool size (%) very long. Has been truncated.
    2013-03-28 15:41:12,815 [EMUI_15_41_12_/console/database/config/config] ERROR conf.DBConfigListUI logp.251 - Error occured during cluster object initjava.lang.Exception: ClusterUtil.isBigCluster invoked with targetName as null
    2013-03-28 15:41:25,018 [EMUI_15_41_25_/console/database/config/] ERROR conf.DBConfigListUI logp.251 - Error occured during cluster object initjava.lang.Exception: ClusterUtil.isBigCluster invoked with targetName as null
    2013-03-28 15:41:25,363 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.92 - ShortName ShortName Average Synchronous Single-Block Read Latency (ms) very long. Has been truncated.
    2013-03-28 15:41:25,420 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,421 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,422 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,422 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in the buffered queue per queue (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,423 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Current number of overflow messages spilled to disk from the buffered queue very long. Has been truncated.
    2013-03-28 15:41:25,423 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,424 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,424 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,425 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,426 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,427 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,427 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,428 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,429 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,429 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,430 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,430 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,430 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,431 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Space usage of buffered queue with respect to streams pool size (%) very long. Has been truncated.
    2013-03-28 15:41:25,437 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total number of Inbound/Outbound servers in consolidated database very long. Has been truncated.
    2013-03-28 15:41:25,438 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label XStream/Integrated GoldenGate Inbound/Outbound server's queue - Buffered very long. Has been truncated.
    2013-03-28 15:41:25,439 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Inbound/Outbound Server Queue - Cumulative Number of Spilled Messages very long. Has been truncated.
    2013-03-28 15:41:25,440 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label XStream/Integrate GoldenGate Inbound server's coordinator statistics very long. Has been truncated.
    2013-03-28 15:41:25,443 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,443 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,444 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,444 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in the buffered queue per queue (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,445 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Current number of overflow messages spilled to disk from the buffered queue very long. Has been truncated.
    2013-03-28 15:41:25,445 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,446 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,446 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,447 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,447 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,448 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,448 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,449 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,450 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,450 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,451 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,451 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,452 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,453 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Space usage of buffered queue with respect to streams pool size (%) very long. Has been truncated.
    2013-03-28 15:41:25,553 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total number of Inbound/Outbound servers in consolidated database very long. Has been truncated.
    2013-03-28 15:41:25,555 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Inbound/Outbound Server Queue - Cumulative Number of Spilled Messages very long. Has been truncated.
    2013-03-28 15:41:25,558 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,558 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,559 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,559 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in the buffered queue per queue (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,560 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Current number of overflow messages spilled to disk from the buffered queue very long. Has been truncated.
    2013-03-28 15:41:25,561 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,561 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,562 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,562 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,563 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,564 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,564 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,565 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,565 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,566 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,567 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,567 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,568 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,568 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Space usage of buffered queue with respect to streams pool size (%) very long. Has been truncated.
    2013-03-28 15:42:38,660 [EMUI_15_42_38_/console/database/config/config] ERROR conf.DBConfigListUI logp.251 - Error occured during cluster object initjava.lang.Exception: ClusterUtil.isBigCluster invoked with targetName as null
    2013-03-29 00:06:47,533 [RemoteJobWorker 19041] ERROR em.jobs logMsg.570 - [RFMPlugIn_Cert] storedChecksum :2fa00ec200ba372170ff71256134119b new checksum=9944c75fe1d195310148f005f18931aa componentType=ARU_CERT_PRODUCT timestamp=2013-03-29 00:05:39.528
    2013-03-29 00:12:12,043 [[STUCK] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR em.jobs logMsg.570 - [RFMPlugIn_Cert] storedChecksum :606d9b64aceeebd04015b78551e4e55e new checksum=6c00aeeb8853ba203a3f5d98c9868045 componentType=ARU_CERT_CERTIFICATION timestamp=2013-03-29 00:05:39.528
    2013-03-29 08:52:50,205 [[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] WARN auth.EMRepLoginFilter doFilter.402 - Security ctxt is not set, got no username from container, redirecting to login page
    Thanks,
    Jimmy

  • Error in Oracle Database Backup and Recovery User's Guide 12c Release 1 (12.1) E17630-13

    on page 88 of the "Backup and Recovery User's Guide 12c Release 1 (12.1) E17630-13", the example 5-1 SHOW ALL Command is the same of the "Backup and Recovery User's Guide 11g Release 2 (11.2) E10642-06" on page 82 and that output is related to a Oracle Database 11g version (the 10g doesn't print the first line "RMAN configuration parameters for database with db_unique_name PROD1 are:").

    My test cases here:
    Database administrator workshop: Differences in default RMAN configuration settings between 12c and 11g
    {code}[oracle@vsi08devpom ~]$ export ORACLE_SID=CDB001
    [oracle@vsi08devpom admin]$ sqlplus system/oracle@CDB001
    SQL*Plus: Release 12.1.0.1.0 Production on Thu Sep 26 09:10:50 2013
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.
    Last Successful login time: Tue Jul 16 2013 13:43:48 +02:00
    Connected to:
    Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
    SQL> show con_name
    CON_NAME
    CDB$ROOT
    [oracle@vsi08devpom ~]$ rman target /
    Recovery Manager: Release 12.1.0.1.0 - Production on Thu Sep 26 09:12:42 2013
    Copyright (c) 1982, 2013, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: CDB001 (DBID=4134963396)
    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters for database with db_unique_name CDB001 are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
    CONFIGURE RMAN OUTPUT TO KEEP FOR 7 DAYS; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/opt/app/oracle/product/12.1.0/db_1/dbs/snapcf_CDB001.f'; # default{code}
    {code}
    [oracle@localhost orcl]$ rman target /
    Recovery Manager: Release 11.2.0.2.0 - Production on Wed Sep 25 08:12:17 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: ORCL (DBID=1229390655)
    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters for database with db_unique_name ORCL are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT_TAPE TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/home/oracle/app/oracle/product/11.2.0/dbhome_2/dbs/snapcf_orcl.f'; # default
    {code}

  • Was Enterprise Manager Ops Center 12c released?

    Was Enterprise Manager Ops Center 12c released? how can I get access to it?

    Sorry, my morning coffe didnt kick in yet. Nevertheless if it will be available its gonna by on eDelivery most likely.
    Edited by: Tommy.B on 2012-02-20 03:24

  • Can't map Booleans from native SQL queries with Code First, EF 6, ODAC 12c R3 (Beta 2)

    We're using Code First, EF 6, ODAC 12c R3 (Beta 2). When I use LINQ-to-Entities, I can map NUMBER(1) to Boolean fields as documented here: https://docs.oracle.com/cd/E56485_01/win.121/e55744/entityDataTypeMapping.htm#ODPNT8300
    <oracle.manageddataaccess.client>
      <version number="*">
      <edmMappings>
        <edmMapping dataType="number">
          <add name="bool" precision="1"/>
          <add name="byte" precision="3" />
          <add name="int16" precision="4" />
          <add name="int32" precision="9" />
          <add name="int64" precision="18" />
        </edmMapping>
      </edmMappings>
      </version>
    </oracle.manageddataaccess.client>
    So far, so good:
        [Table("USER_PROFILE")]
        public class UserProfile
            [Key]
            [Column("LOGIN_ID", Order = 1)]
            public string LoginId { get; set; }
            [Column("IS_SUPER_USER")]
            public bool? IsSuperUser { get; set; }
    var query = db.UserProfiles.Take(20);
    However, when I try to map to the same class from native SQL, I get an exception:
    // The real query is much more complex. This is just an example.
    private const string AllProfilesSql = @"
                SELECT login_id AS LoginId, is_super_user AS IsSuperUser
                FROM user_profile
    var query = db.Database.SqlQuery<UserProfile>(AllProfilesSql).Take(20);
    >The 'IsSuperUser' property on 'UserProfile' could not be set to a 'System.Int16' value. You must set this property to a non-null value of type 'System.Boolean'.
    Do you know any solutions or workarounds for this? Is it a bug?

    Hmm, a feature request is possible; however, I'm not sure how feasible it would be to implement (if it is possible at all) in this scenario.
    The challenge is that when using SqlQuery like this, EF calls into our override of the ExecuteDbDataReader method in OracleCommand (via System.Data.Common.DbCommand.ExecuteReader). That in and of itself is not an issue it's just that we don't know that this call is from EF and so we should use the EDM mappings from the configuration. In a "normal EF" scenario we know the call is from an EF "source" so can respond accordingly and perform the mapping.

  • Does Ops Center 12c Release 1 PSU2 (update 2) work with T4 and solaris 11.1

    From the release notes of Ops Center 12c Release 1 PSU2 (update 2)
    Issues With Upgrading to Oracle Solaris 11.1
    Oracle Solaris 11.1 is supported in Oracle Enterprise Manager Ops Center 12.1.2.0.0 but is not supported in prior versions of Oracle Enterprise Manager Ops Center. In addition, an issue with Oracle Solaris 11.1 prevents Oracle VM Server for SPARC management on Oracle SPARC T4 servers using the Oracle Solaris 11.1 OS. See the Oracle Enterprise Manager Ops Center Release Notes for more information.
    Does any one know if there has been a fix for this yes

    We were told this was actually a problem in OC not S11.1, and this was fixed in U2.
    I know this contradicts with the other answer, but thats the info we received from Oracle.

  • OCA 11g certification and version 12c release

    Hello, I have a doubt.
    I'm currently studying for OCA 11g version ( 1Z0-051 and 1Z0-052 ) with the release of 12c can I still take the exam for 11g ?.
    I'm new in Oracle's world, In Microsoft certifications you can take exams for the current release of a product and also for the previoss version.
    Thanks !.
    Regards.

    Yes, you can still do the 11g exams .  In fact the 12c  1Z0-062 exam is still beta and not production.
    Hemant K Chitale

  • Oracle 10G  support and 12C release

    Hi,
    I am interested in new about Oracle 12C ---Cloud compute DB system. we have 10G database
    When 12C will be released ?
    When oracle10G will not supported by oracle
    As I know 10G released in 2004 and 10gR2 in 2006. Normally speaking, 10G support will be terminated next year (after released 5 years).
    Any updated for this event?
    Jim

    Premier support has already ended on Oracle 10gR2 last july.
    Ie, no new bugs will be fixed.
    Sybrand Bakker
    Senior Oracle DBA

  • Odac 112030 release 4 - NUMBER type conversion

    Hi,
    I downloaded the latest odac version - 112030 release 4 .
    I see that it converts NUMBER(5,0) to int16. There is a little problem -
    NUMBER(5,0) can be 99999. int16 can be 32767. So if the field in oracle table contain a value of 40000 i get an error.
    The same thing with NUMBER(10,0) and int32 -
    NUMBER(10,0) max is 9,999,999,999
    int32 max is 2,147,483,647 so a value of 2,500,000,000 will cause an error.
    Is solve this problem like this :
    <oracle.dataaccess.client>
    <settings>
    <add name="int16" value="edmmapping number(4,0)"/> <!-- max NUMBER lenth for int16. number(5,0) will be int32 -->
    <add name="int32" value="edmmapping number(9,0)"/> <!-- max NUMBER lenth for int32. number(10,0) will be long -->
    </settings>
    </oracle.dataaccess.client>
    My question is Why the default is wrong ? Is this a bug or there is a reason to do so?
    Thanks,
    David

    In the case you described, using custom type mapping to may int16 to number(4, 0) to generate your data model may be better. This all depends on your application design.
    If a data model is generated by the custom typ mapping specified in app.config, it should not have any issue except the following known behavior.
    (copied and pasted from the readme.txt in Beta 2 version)
    3. Tips to Resolve Compilation Errors With Custom Mapping
    When custom mapping in a configuration file has changed, re-generate the data
    model to solve compilation errors incurred by the new changes.
    In some scenarios, custom mapping can cause compilation errors, when a
    project that uses custom mapping is loaded by Visual Studio. There are
    few ways to resolve the compilation errors:
    (a) Open Visual Studio Help/About Microsoft Visual Studio and click OK
    button to exit the dialog box or
    (b) Open the to-be-used connection in Server Explorer
    Then compile the project again to eliminate the compliation errors.
    (end paste)
    It's recommended that <oracle.dataaccess.client></oracle.dataaccess.client> section is placed after <connectionStrings></connectionStrings> section.
    Certainly, both sections must be within <configuration></configuration> section.
    The error you got seems like ODP.NET is not properly configured in machine.config or it's not GACed.
    Can you create a new connection in Server Explorer or in EDM wizard using ODP.NET?
    What's your target platform when build, x86 or x64? Do you have proper installation of ODAC?
    Edited by: shsu on Jan 13, 2012 2:17 PM

Maybe you are looking for

  • After trying to import a video, iPhoto will not import anything.

    Hi.  My iPhoto will work relatively fine, but then if there's a video in my photos to import, the whole system crashes.  After that, it freezes when importing photos from a camera, even if there are no videos to import anymore.  This happened last ye

  • How much RAM can I install?

    Alright.  This seems simple but I don't want to have to go through the rigamarole of buying the wrong one and having to return it.  I have a Mid-2010 MacBook Pro running Lion 10.7.3, currently with the 4gb of RAM that it came with.  I want to upgrade

  • I restored my laptop to an ealier date and lost my private browsing capability

    My private browser selection on the tools dropdown is grayed out. Mozilla 3.6.10 was reloaded. It still does not work.

  • Transfer Pictures from Mac Mini to Macbook?

    I need to retrieve some photos from my Mac Mini for use in my Macbook. I have Mac Mini but no monitor for it. Macbook is hooked up to wireless DSL. How can I do this with no monitor to see the info on the Mac MIni? Thanks!

  • Help Required IN Business Process Monitoring?

    Hi, i have few clarifications reg BPM in solution Mangager 1.What is monitored in BPM,Business Process interfaces or the business Process data( at does t monitors at data level)? 2.if interfaces are monitored in Solman BPM,how different it is from Ne