Can we have 12c db console and 11g database.

Hi,
Quick question on having the dbconsole version higher than DB version ?
Is it possible to have dbsonole 12c on 11gR2 DB ?
Thanks,

If you are asking about the database hosting the Enterprise Manager repository, the 11gR2 is supported. See Enterprise Manager Cloud Control Basic Installation Guide 12c Release 2 (12.1.0.2)
http://docs.oracle.com/cd/E24628_01/install.121/e22624.pdf
Note:
The existing, certified Oracle Database must be one of the certified databases listed in the Enterprise Manager certification matrix available on My Oracle Support, or a database instance created with a preconfigured Oracle Management Repository (Management Repository) using the database templates offered by Oracle.
To access the Enterprise Manager certification matrix, follow the steps outlined in Appendix E.
For information about creating a database instance with a preconfigured Management Repository using the database templates offered by Oracle, refer to Appendix D.
The database can be on a local or remote host, and if it is on a remote host, it must be monitored by Oracle Management Agent. However, Oracle Real Application Clusters (Oracle RAC) databases must only be on a shared disk.

Similar Messages

  • I have an ipod touch but i don't have enough memory and 0I get an upgrade soon for my phone and i want the iphone but the thing is, can i have an ipod touch and an iphone on the same itunes account like can i use my money on my ipod account for my iphone

    I have an ipod touch but i don't have enough memory and 0I get an upgrade soon for my phone and i want the iphone but the thing is, can i have an ipod touch and an iphone on the same itunes account like can i use my money on my ipod account for my iphone

    Your iPhone and iPod can share the same iTunes account.  Apps can be freely shared and used by one or both devices.  You can't use money in your iTunes account to pay for your phone, but purchased apps can be used by both the iPod and iPhone.

  • My wife and I are going to share a PC,, W7,, can we have seperate iTunes accounts and libraries on the same PC?

    My wife and I are going to share a PC,, W7,, can we have seperate iTunes accounts and libraries on the same PC?

    Configure your PC for an addtional user account.
    http://support.apple.com/kb/HT1495
    Windows users:
    Look in your computer's Help documentation to learn how to set up additional user accounts. To locate this information:
    Click the Start Menu, and then click Help or Help and Support.
    Enter "new user" in the Search field.
    Press Return.
    If you create multiple user accounts on one computer but want the same media to be available in iTunes for all users, see iTunes: How to share music between different accounts on a single computer.

  • Can I have an iphone 4s and itouch 4g on the same itunes account?

    can I have an iphone 4s and itouch 4g on the same itunes account?

    You can activate up to 10 devices with the same Apple ID.

  • Can I have an iPhone, ipad and MacBook Pro with the same apple id

    Can I have an iPhone, ipad and MacBook Pro with the same apple id. When I use I tunes it get confusing and I have a paid app that needs the same id

    When syncing the iPhone and iPad with iTunes on your computer that is logged in with the Apple ID you plan on using on all three, the Apple ID should be transferred to the iPhone and iPad for the iTunes & App Stores on each device. If not, you'll need to sign out of the existing Apple ID on the iPhone and iPad followed by signing in with the Apple ID you want to use on both.
    Keep in mind that all 3rd party apps include DRM protection which is tied to the iTunes account or Apple ID that was used to download the apps. With an app installed on your iPad and iPhone that was downloaded with a different Apple ID from the one you will be using now, you will need to use that Apple ID and password to install app updates for those apps. Not possible to transfer apps purchased with one Apple ID to another or to merge Apple IDs.

  • Can I have an ATT account and a O2 account on the same Iphone?

    Can I have an ATT account and a O2 account on the same Iphone? So that when I am in the UK I use the O2 sim card and in the states use my ATT sim card? I would basically have two valid authorized accounts on one Iphone.
    Allan

    I don't believe that the phone would recognize the other sim card as legit. The US iPhone is locked to ATT and the UK iPhone is locked to O2.

  • How can I have both genius playlist and regular playlist on my new 160g ipod classic. The list of songs are there, but when I click playlist, I only get the genius playlists.

    How can I have both genius playlists and regular playlists available on my new 160g classic ipod. I can see my entire song list, but no playlist other than the 3 genius playlist I just made.  Also how can I delete a genius playlist. Made the same playlist twice by mistake. Thanks.

    This was not a simple task.  Got it handled.  Had to call Apple support. Apparently, the 160g only syncs the genius playlist.  You have to go in and "tell it" to sync the entire playlist as well as the genius playlists. There is also an option for only syscing certain songs. On itunes, there is two sections; one for the stuff that is synced on your ipod and another separate list for the stuff in your library!  This is exciting for me as I am not computer savvy to say the least. 

  • How can u have lock rotation off and mute feature off at the same time

    How can u have lock rotation off and mute feature off at the same time

    Maybe this will help. The link at the bottom is the same one that was posted above.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

  • I have created TM lock in oracle 9i and 11g databases. by using same query

    here is the query uesd for finding a lock in database.
    select /*+ RULE */ 'DATAPOINT # ' bpb,
    l.sid, ' # ',
    s.username, ' # ',
    s.sql_address, ' # ',
    x.sid, ' # ',
    y.username, ' # ',
    l.type, ' # ',
    l.id1, ' # ',
    l.id2, ' # ',
    decode(X.LMODE,
    0, 'None',
    1, 'Null',
    2, 'Row Share',
    3, 'Row Excl',
    4, 'Share',
    5, 'Shr Row Excl',
    6, 'Exclusive',
    decode(L.REQUEST,
    0, 'None',
    1, 'Null',
    2, 'Row Share',
    3, 'Row Excl',
    4, 'Share',
    5, 'Shr Row Excl',
    6, 'Exclusive',
    from v$session s, v$lock l, v$lock x, v$session y
    where l.ctime > 120
    and s.lockwait = l.kaddr
    and l.type in ('TM', 'TX', 'UL')
    and l.id1 = x.id1
    and l.id2 = x.id2
    and x.sid != l.sid
    and x.sid = y.sid
    and x.lmode >0;
    after doing further investigation i found that for 11g condition s.lockwait = l.kaddr not satisfied where as for 9i it's gives correct results
    here are the lockwait and kaddr values for 9i and 11g databases.
    for oracle 9i
    SQL> select lockwait from v$session where sid in (10,12);
    LOCKWAIT
    67B4E10C
    SQL> select kaddr from v$lock where sid in (10,12);
    KADDR
    67B4E088
    67B4E10C
    for oracle 11g
    SQL> select lockwait from v$session where sid in (70,134);
    LOCKWAIT
    070000002FA080D8
    SQL> select kaddr from v$lock where sid in (70,134);
    KADDR
    0700000030C595C0
    0700000030C59830
    00000001108E3E58
    00000001108E3E58
    070000002FA6CB30
    SQL>
    please advise if there is any change for calculations for lockwait,kaddr for 11g.

    can you post your query with explain plan for both 9i version and 10g version.
    Thanks,
    karthick.

  • Can I have both Oracle 8i and Oracle 9i servers on a s Solarix Box

    Can I have both Oracle 8i and Oracle 9i servers installed on a single Solaris box !? Or say .. any other flavour of unix
    Thanks in advance.
    ---Srini

    Yes! By all means, you can.
    You will just have to install Oracle under different directories for different versions and set the ORACLE_HOME accordingly.

  • Can we have BusinessObjects 4.0 and 4.1 both installed on the same machine

    Can we have BusinessObjects 4.0 and 4.1 (tool Clients) both installed on the same machine? Why? Why not?

    4.0 and 4.1 are incremental upgrades hence both on the same machine are not possible.
    Though u can use 4.1 client tools to login to both 4.1 and 4.0 servers.
    3.1 and 4.0/4.1 together is very much possible on the other hand.

  • Can I have both Lightroom 3 and Lightroom 5 both installed on the same computer?

    Can I have both Lightroom 3 and Lightroom 5 both installed on the same computer? I like the "fill light" feature in 3 and use it a lot. I would have not gotten 5 except that the images from my new Canon 5D Mk III are not re4cognized on 3. I have 5 on a laptop and 3 on my desktop but would like to have both on my desktop .

    Yes you can do this, but you can also get rid of Lightroom 3 and use the "Fill Light" command in Lightroom 5. You need to set the Process Version to 2010 (default is 2012 in Lightroom 5). Use the menu command  Settings > Process > 2010
    But honestly, you would be wise to stop using "Fill Light", as the new sliders in Lightroom 5 produce superior image quality than anything you can come up with using "Fill Light". Yes, the new sliders take a little time to get used to, but your patience and effort learning the new sliders will be rewarded. You can find some tutorials and videos on using Process Version 2012 on that Internet thing.

  • Is it possible to save keynotes on a central place so that multople users  on mac/ipad.iphon can always have the latest version and edit this ?

    Is it possible to save keynotes on a central place so that multople users  on mac/ipad.iphon can always have the latest version and edit this ?

    If you mean saving the project files;   iCloud, Dropbox, Skydrive will  do this.
    If you mean the application, then definitely not possible.

  • Can you have both flex tools and automation running

    HI
    I might be wrong and I. Hope that I am!!!!
    But I seemed to me that it created some automation on a track ...
    And then realised after a while that the flex tool was turned off and when to switch it back on and the automation turned off..
    I am right in thinking that you can't have both the automation and flex tool running at the same time...?????
    Anyone out there know the answer...
    Thanks!!!

    It would appear that you can't be in both modes simultaneously. You toggle between them.
    However, they are very different types of functions, and it would be difficult to manipulate Flex markers with Automation enabled. You'd be drawing nodes when you needed to be fixing timing issues.
    Toggling between them is easy enough.

  • Want to just have phone numbers on phone can you have different groups with and email group as well

    Want to just have phone numbers on phone can you have different groups with and email group as well

    The iPhone remembers information about previous contacts.
    Complelely independently, you have a Contacts app with a contacts list.  It sounds like your contacts list has 3 names on it.  You need to add a few names.

Maybe you are looking for

  • How to use a user sequence library

    Hi all, I am building up an increasimng set of sequence modules that might be handy in a kind of toolbox library for later re-use. How is this best be accomplished? AppNote157 states, that I should '... isolate non-product-specific operations in a ca

  • HT4759 How do I transfer my contacts back from my Icloud account to my Iphone

    All my contacts were deleted on my Iphone.  I have them stored on my Icloud account.  When I sign onto my Icloud account they are there but I do NOT know how to 'sync' them from my PC to my IPhone.  How do I do this?

  • Microsoft Office Installation Freezing in OS X Mavericks

    I just upgraded my OS X from Snow Leopard to Mavericks on a 2008 iMac.  As soon as Mavericks was finished upgrading I tried to install Microsoft Office 2011.  It starts installing, but freezes about two minutes left on the install.  After about 12 ho

  • Why can't Firefox recgnize mozsqlite3.dll file, even though it's in the program folder?

    '''bold text'''Did a clean install of Firefox 4, six different times. When I attempt to open Firefox afterwards, a messsage box pops-up with this - "This application has failed to start because sqlite.dll was not found." Each time the folder mozsqlit

  • Front Row really slow browsing movies

    I just upgraded my RAM to 4GB and my HDD to 500GB 7200RPM Seagate (clone made with Disk Utility) and noticed something that never happened before.While browsing movies in Front Row it becomes unresponsive for 10 to 30 secs.This does NOT happen with m