In 11g, How to Enable Automatic Shared Memory Management (ASMM)

hi experts,
I have a new 11.2 g database and I want to configure it to use ASMM.
To enable ASMM, should I assign a non-zero size to the Memory_Target parameter or the SGA_Target ? I have read conflicting statements.
Thanks, John

If you mean Automatic Memory Management, pl see
http://download.oracle.com/docs/cd/E11882_01/server.112/e10595/memory003.htm#ADMIN11011
http://download.oracle.com/docs/cd/E11882_01/server.112/e10897/instance.htm#ADMQS12039
HTH
Srini

Similar Messages

  • Questions about db_keep_cache_size and Automatic Shared Memory Management

    Hello all,
    I'm coming upon a server that I'm needing to pin a table and some objects in, per the recommendations of an application support call.
    Looking at the database, which is a 5 node RAC cluster (11gr2), I'm looking to see how things are laid out:
    SQL> select name, value, value/1024/1024 value_MB from v$parameter
    2 where name in ('db_cache_size','db_keep_cache_size','db_recycle_cache_size','shared_pool_size','sga_max_size');
    NAME VALUE VALUE_MB
    sga_max_size 1694498816 1616
    shared_pool_size 0 0
    db_cache_size 0 0
    db_keep_cache_size 0 0
    db_recycle_cache_siz 0 0
    e
    Looking at granularity level:
    SQL> select granule_size/value from v$sga_dynamic_components, v$parameter where name = 'db_block_size' and component like 'KEEP%';
    GRANULE_SIZE/VALUE
    2048
    Then....I looked, and I thought this instance was set up with Auto Shared Mem Mgmt....but I see that sga_target size is not set:
    SQL> show parameter sga
    NAME TYPE VALUE
    lock_sga boolean FALSE
    pre_page_sga boolean FALSE
    sga_max_size big integer 1616M
    sga_target big integer 0
    So, I'm wondering first of all...would it be a good idea to switch to Automatic Shared Memory Management? If so, is this as simple as altering system set sga_target =...? Again, this is on a RAC system, is there a different way to do this than on a single instance?
    If that isn't the way to go...let me continue with the table size, etc....
    The table I need to pin is:
    SQL> select sum (blocks) from all_tables where table_name = 'MYTABLE' and owner = 'MYOWNER';
    SUM(BLOCKS)
    4858
    And block size is:
    SQL> show parameter block_size
    NAME TYPE VALUE
    db_block_size integer 8192
    So, the space I'll need in memory for pinning this is:
    4858 * 8192 /1024/1024 = 37.95.......which is well below my granularity mark of 2048
    So, would this be as easy as setting db_keep_cache_size = 2048 with an alter system call? Do I need to set db_cache_size first? What do I set that to?
    Thanks in advance for any suggestions and links to info on this.
    cayenne
    Edited by: cayenne on Mar 27, 2013 10:14 AM
    Edited by: cayenne on Mar 27, 2013 10:15 AM

    JohnWatson wrote:
    This is what you need,alter system set db_keep_cache_size=40M;I do not understand the arithmetic you do here,select granule_size/value from v$sga_dynamic_components, v$parameter where name = 'db_block_size' and component like 'KEEP%';it shows you the number of buffers per granule, which I would not think has any meaning.I'd been looking at some different sites studying this, and what I got from that, was that this granularity gave you the minimum you could set the db_keep_cache_size, that if you tried setting it below this value, it would be bumped up to it, and also, that each bump you gave the keep_cache, would be in increments of the granularity number....?
    Thanks,
    cayenne

  • Confusion about Automatic Shared Memory Management

    Hi,
    Oracle Database 10g includes the Automatic Shared Memory Management feature which simplifies the SGA memory management significantly. To use Automatic Shared Memory Management, we have to set the SGA_TARGET initialization parameter to a nonzero value and the STATISTICS_LEVEL initialization parameter to TYPICAL or ALL.
    Oracle Database 10g Rel. 2 documentation, in some places, says that:
    If SGA_TARGET is specified, then the following FIVE memory pools are automatically sized:
    * Buffer cache (DB_CACHE_SIZE)
    * Shared pool (SHARED_POOL_SIZE)
    * Large pool (LARGE_POOL_SIZE)
    * Java pool (JAVA_POOL_SIZE)
    * Streams pool (STREAMS_POOL_SIZE)
    Ref.:
    1. http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams192.htm
    2. http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14220/memory.htm
    3. Oracle Database 10g: New Features for Administrators - Student Guide
    But in some places I found the following:
    If SGA_TARGET is specified, then the buffer cache (DB_CACHE_SIZE), Java pool (JAVA_POOL_SIZE), large pool (LARGE_POOL_SIZE), and shared pool (SHARED_POOL_SIZE) memory pools are automatically sized.
    Here you can see that Streams Pool is not included in the automatically sized pools.
    Ref.:
    1. http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14211/build_db.htm#sthref252
    Also, according to Oracle Press' Book "OCP Oracle Database 10g: New Features for Administrators Exam Guide:
    Under Automatic Shared Memory Management, the database manages the
    following FOUR major components of the SGA, also known as the auto-tuned SGA
    parameters:
    ■ Buffer cache (DB_CACHE_SIZE)
    ■ Shared pool (SHARED_POOL_SIZE)
    ■ Large pool (LARGE_POOL_SIZE)
    ■ Java pool (JAVA_POOL_SIZE)
    It is important to understand that even under Automatic Shared Memory
    Management, you still need to configure any SGA component other than the four
    auto-tuned components. Following are the manually sized components of the SGA:
    ■ Redo Log Buffer
    ■ The KEEP and RECYCLE buffer caches (if specified)
    ■ The nonstandard block size buffer caches (if specified)
    ■ The new Streams pool SGA component
    ■ The new Oracle Storage Management (OSM) buffer cache, which is meant
    for the optional ASM instance
    Now my question is "IS Streams Pool an auto-tuned SGA parameter?"
    Thanks in advance.
    --Khan.

    Hi,
    I would advise you to read Document I.D. Note:295626.1 on Oracle Metalink.
    It states that
    When enabled, it lets Oracle decide of the right size for some components of the SGA:
    SHARED POOL
    LARGE POOL
    JAVA POOL
    DB CACHE (using the DB_BLOCK_SIZE value)
    The SGA_TARGET value will therefore define the memory size sharable between auto-tuned and manual parameters.
    The manual parameters are:
    DB_<KEEP/RECYCLE>CACHESIZE
    DB_nK_CACHE_SIZE (non default block size)
    LOG_BUFFER
    FIXED SGA
    STREAMS_POOL_SIZE
    Adith

  • Large SGA On Linux and Automatic Shared Memory Management problem

    Hello
    I use Oracle10gR2 in linux 32bit and I use http://www.oracle-base.com/articles/linux/LargeSGAOnLinux.php manual
    for larger SGA it works fine but when I set sga_target parameter for using Automatic Shared Memory Management
    I recieve this error
    ERROR at line 1:
    ORA-02097: parameter cannot be modified because specified value is invalid
    ORA-00824: cannot set sga_target due to existing internal settings, see alert
    log for more information
    and in alert log it has been wrote
    Cannot set sga_target with db_block_buffers set
    my question is when using db_block_buffers can't use Automatic Shared Memory Management ?
    Is any solution for using both Large SGA and Automatic Shared Memory Management ?
    thanks
    Edited by: TakhteJamshid on Feb 14, 2009 3:39 AM

    TakhteJamshid wrote:
    Do it means that when we use large SGA using Automatic Shared Memory Management is impossible ?Yes its true. An attempt to do so will result inthis,
    >
    ORA-00825: cannot set DB_BLOCK_BUFFERS if SGA_TARGET or MEMORY_TARGET is set
    Cause: SGA_TARGET or MEMORY_TARGET set with DB_BLOCK_BUFFERS set.
    Action: Do not set SGA_TARGET, MEMORY_TARGET or use new cache parameters, and do not use DB_BLOCK_BUFFERS which is an old cache parameter.>
    HTH
    Aman....

  • How to enable internet sharing on mac book to use my iphone?

    how to enable internet sharing on mac book to use my iphone?

    Hey PPRoy,
    Thanks for the question. The following article may assist in achieving your goal:
    OS X Mavericks: Share your Internet connection
    http://support.apple.com/kb/PH13855
    Thanks,
    Matt M.

  • How to enable automatic punctuation on a new MacBook Pro with retina?

    Can you tell me how to enable automatic punctuation on a new MacBook Pro with retina? Thanks

    In which application?  (There is no system wide punctuation.) 
    And how is the computer supposed to know what is the correct punctuation?  For example "Let's eat, Mom!" versus "Let's eat Mom!"  (Sort of depends upon whether your computer has weathered the zombie apocalypse, I guess.)

  • Sybase - How to enable Automatic DB Expansion

    HI Friends,
    I am new to ASE.. have mostly worked on Oracle.
    I have installed a sap system on Sybase. I need to know how can i enable Automatic DB Expansion feature which i think i didnt selected during installation.
    I dont want to do this from DBACOCKPIT as this is not working properly and I need to run SGEN.
    please help.

    To bypass DBACOCKPIT will require a bit of background knowledge/understanding before setting up automatic db expansion.
    For starters I'd suggest taking a look at ASE 15.7 SP100 System Admin Guide, Chapter 16: Expanding Databases Automatically.
    If you still have questions after reviewing the docs ... just post back here with your specific questions.

  • How to enable local sharing in iphone

    How can I enable local sharing in iPhone 4S?

    Hi Matt, I need to send IPA files downloaded on my iPhone to my iPod, I don't use iTunes and I was told that it's possible to send files wirelessly via local sharing.

  • How to enable resource sharing with complex AEBS setup

    I have a complex AEBS + Netgear network configuration that I am trying to enable resource sharing on. The Netgear router is necessary because it provides excellent per-user parental controls and content filtering that the AEBS lacks. The setup is operational (network connectivity works as expected), but I cannot figure out how to enable cross-network resource visibility and sharing.
    Here is the network configuration:
    |Vz Fios PPoEE |
    |
    v
    |___
    |AEBS|
    | __Mac Mini (wireless)
    | __AppleTV (wireless)
    | __Wii (wireless)
    | __MBPC2Duo (wireless)
    | __WinXp PC1 (wired)
    |
    v
    |______
    |Netgear|
    | __WinXP PC2/Printer (wired)
    | __WinXp PC3 (wired)
    | __iBook (wireless)
    | __Vista Laptop1 (wireless)
    | __Vista Laptop2 (wireless)
    The Mini, AppleTV, Wii and MBPC2Duo all connect wirelessly with the AEBS. The Netgear router is wired to the AEBS. This in turn has 2 wired clients and three wireless clients as illustrated.
    The Netgear router receives an IP address assignment from the AEBS (in the 10.0.1.x range) via DHCP and in turn assigns IP addresses (in the 192.168.1.x range) to attached clients via DHCP
    The setup is operational and operates flawlessly --network-wise. However, I now need to enable resource sharing as follows:
    1) Setup the Mini as the media hub, configured to allow:
    a. storage of all iTunes, iPhoto, iMovie and garage band content to an attached external hard drive,
    b. sharing of content on the Mini with iTunes on each computer (Macs and Pcs) and the AppleTV
    2) Share the printer attached to Windows XP PC2 with all computers (Macs and PCs)
    Questions:
    1. Is this possible with this network configuration?
    2. If so, how would I configure the relevant elements?
    3. Is it better to attach the external media storage to the AEBS vs attaching it to the Mini?
    Thanks!

    Thanks Tesserax. After some digging I was able to find bridge mode config instructions for the Netgear router.
    Follow-up question:
    Given my desire to centralize media access via the Mac Mini, what is the best way to set up my media storage device (320G HD)?
    I see the following options:
    A. NAS device via USB 2.0 connection to the AEBS, or
    B. Supplemental hard drive on the Mac Mini via USB 2.0 or Firewire.
    Thoughts/suggestions?
    Thanks!

  • How to find which shared memory segment corresponds to which instance.

    If you have two or more instances running on a unix machine, is there a way to find out which shred memory segment and what semaphores are allocated. You could do a "ipcs -a" which will give you all the shared memory segments and semaphores, but how to find what corresponds to what instance.
    Thanks
    Devinder
    PS: I dont know whether this is correct discussion forum or not, cause I could not find anything related to it.
    null

    if you type ipcs -a you could see:
    ipcs -aIPC status from <running system> as of Tue Jan 30 12:02:20 EST 2001
    Message Queue facility inactive.
    T ID KEY MODE OWNER GROUP CREATOR CGROUP NATTCH SEGSZ CPID LPID ATIME DTIME CTIME
    Shared Memory:
    m 0 0x500008c7 rw-rr-- root root root root 1 68 373 373 11:48:11 11:48:11 11:48:11
    m 1 0xb9359140 rw-r--- oracle dba oracle dba 28 109568000 593 8631 11:29:43 12:01:36 11:49:06
    m 2 0x21d38b58 rw-r--- oracle dba oracle dba 53 83746816 654 8630 12:01:15 12:01:15 11:49:58
    T ID KEY MODE OWNER GROUP CREATOR CGROUP NSEMS OTIME CTIME
    Semaphores:
    s 196608 0xbfb87050 ra-r--- oracle dba oracle dba 54 12:01:37 11:49:06
    s 196609 0xcc222a00 ra-r--- oracle dba oracle dba 104 11:53:31 11:49:59
    note that the CTIME shows you when the entry was created... they usually map to within a second between the memory segment and the semaphore (M and S). 11:49:06 and 11:49:59 in my case.
    If I look in my alert_log for each instance I will see:
    --Sun Jan 28 11:49:04 2001
    --Starting ORACLE instance (normal)
    and in the other file
    --Sun Jan 28 11:49:58 2001
    --Starting ORACLE instance (normal)
    This lets me know which instance uses which semaphores/memory segments.
    Just be sure the start your instances at least 30 seconds apart so the times are different enough.
    enjoy.
    null

  • Keychain: How to enable automatic access for certain applications?

    I have gotten really tired of Adium and Skype asking for the keychain password every time I reboot the machine, and Quicksilver neeing my system password all the time when installing updates.
    How do I enable automatic access to the keychain and system password for certain applications, but not all?
    PowerBook G4, 1.5 Ghz   Mac OS X (10.4.6)  

    Hi, Bjørn.
    A. You wrote: "I have gotten really tired of Adium and Skype asking for the keychain password every time I reboot the machine..."There are two things to check. You'll use Keychain Access — in the Macintosh HD > Applications > Utilities folder — for both.
    One key point to note before you begin: If the affected account was created under Jaguar, it's default keychain will have the same name as the account's short name. Accounts created under Panther or later have the default keychain name of "login." The user's default keychain is always highlighted in bold in the Keychains list in Keychain Access. All of the instructions in Mac Help regarding keychain assume the accounts were created under Tiger and always refer to keychain "login."
    Here are the two issues to check and correct:
    1. The affected account may have its keychain preferences set so that the keychain locks automatically after a period of inactivity or after sleep mode:1.1. Select the user's default keychain.
    1.2. Click Edit > Change Settings for Keychain "keychain_name."
    1.3. Deselect the checkbox next to "Lock after __ minutes of inactivity", if selected.
    1.4. Deselect the checkbox next to "Lock when sleeping", if selected.
    1.5. Click Save.2. The affected account's login password and keychain password are different. Set the keychain password on that account to be the same as the account's login password. See “Mac OS X 10.4 Help: Changing your keychain password.”
    Once those steps are taken, if an application requests access to the keychain, click Always Allow.
    Note that if you update applications, i.e. install later versions, you may be asked once to confirm the new version's access to your keychain. That's a standard security precaution.
    B. You wrote: "...Quicksilver neeing my system password all the time when installing updates."That cannot be prevented if that application is installed in the Macintosh HD > Applications folder using an installer, such as the Mac OS X Installer. Authentication is required if an installer will add or change files in either Applications or other System-related folders.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • HT202213 how to enable home sharing itunes 11

    The new iTunes doesn't have anything on the side, how do I enable home sharing? Im on a mac

    File, Home Sharing, Turn on home sharing. Enter you apple id and password and create. Then link your other devices to the same home share

  • OBIEE 11g: How to enable a filter dependent upon another filter

    Hi,
    Suppose I have two date fields and date1 is filtered over a range and date2 should always be between date1 - 2 and date1. How to enable a filter in this manner? Please advise.
    Thanks,
    Saud

    Try to see that you can do it using 'Limit values by'
    Or else try to port date2 logic in report, since all prompts end up with report.
    Is there any specific reason for date2 values in prompt?

  • Oracle 9i Automatic PGA Memory Management

    Hello,
    my team and me, we are facing difficulties to change the size of the PGA used by our server processes for HASH JOIN, SORT... operators,
    here you can see the results of "select * from v$pgastat":
    [pgastat dynamic view results|http://pastebin.com/m210314dc]
    We have been increasing consecutively our pga_aggregate_target parameter from 1.7 Gb initially to 4Gb then at the end 6Gb, the value of "Global memory bound" and " aggregate pga auto target" on the link above are still equal to 0.
    I have been reading threads on the forum and documentation see below, I understand how the global memory manager (CKPT) computest the sql memory target and then the global memory bound, as far as I understand I can only "play" on the pga_aggregate_target value in order to increase the size of our PGAs (I exclude to play with hidden parameters).
    - Joze Senegacnik: Advanced Management of working areas in Oracle 9i/10g : http://tonguc.yilmaz.googlepages.com/JozeSenegacnik-PGAMemoryManagementvO.zip
    - Dageville Benoit and Zait Mohamed: SQL memory management in oracle 9i
    Here different information that could be usefull:
    OS: solaris 10 (db running in a non global zone)
    Arch: 64-bit sparcv9 kernel modules
    Physical memory: 32 Gb (being shared between all non global zones)
    Oracle version: 9.2.0.5 32bits
    Values of init parameters and hidden parameters that could be relevant:
    [init parameters|http://pastebin.com/m40340cf4]
    [hidden parameters|http://pastebin.com/m50d74c53]
    Maybe useful queries:
    over work areas views, I use the following script:
    [wa_analysis.sql|http://pastebin.com/d606ebd9b]
    and the result of it:
    [result of script wa_analysis.sql|http://pastebin.com/m5f49a2e5]

    Joze Senegacnik wrote:
    - either your sessions are using a lot of memory for storing variables like pl/sql arrays which is subtracted from automatic management: PGA_AGGREGATE_TARGET - (aggregated persistent area + a part of the run time area of all server processes)
    - you are hitting a bug
    - or maybe something elseI am really happy you come to this conclusion too, they are the same we made with my team and we have submitting to Oracle support via metalink SR 3-1216060641, we were asking if we hit the following bug (in note 1) or we leak about pl/sql or java... or else indeed,
    note 1: PGA_AGGREGATE_TARGET Assigned Memory Is Left Unconsumed When Set High [ID 844542.1]
    Joze Senegacnik wrote:
    I would like to know:
    1.) what were the values for global memory bound and autotarget immediately (or in short time) after the database restart or when you have increased them Just after the restart of the database and just after the change of P_A_T, we query v$pgastat immediately after and the value of global memory bound and auto target were equal to 0 byte,
    2.) If you are able to change value of PGA_AGGREGATE_TARGET (P_A_T) to 10GB what happens with global memory bound and auto traget. They should be positive at least for a short time. As this is a dynamic parameter you can change it for a short time, run queries and set it back.We plan to do this tonight, we have an "heavy" ITIL change management procedures that allow us to make changes approved by change manager and only during night maintenance window on production system, I come back to you tomorrow. But we have been increasing from 1,7Gb to 4Gb to 6Gb, each time I have been querying v$sgastat in the next 2 mins and global memory bound and auto target were equal to 0 byte.
    3.) Have you checked on the OS level how much memory are using server processes - do these numbers come along with what Oracle says. Not during problematic activities, meaning active work areas performing HASH-JOIN, SORT... operators,
    unfortunately it is a production system, even if he performs poorly, we are not allowed to try or retry the poor queries, but if it comes again I'll do it,
    during low activities, here the results paste with the scripts I used:
    [pga processes info in oracle|http://pastebin.com/f2e540062]
    I spooled the result rows of this previous script in /var/tmp/pga_processes.log then I loop over all processes pid and display pmap output anon info like this:
    h5. cat /var/tmp/pga_processes.log | awk -F' ' '{print $5}' | xargs -n 1 -i pmap -x {}| grep -v 'Addres' |egrep 'Kb' 2>&1 > /var/tmp/pga_processes_os.log
    then I merge line by line the two files with unix paste command, here the results:
    [os and oracle pga informations|http://pastebin.com/f4135c8a6]
    4.) How many server processes are running on you system in average/max and are you using just dedicated processes or also shared?in average 250, we are only using dedicated processes,
    5.) At time of low activity is the global memory bound still 0 or becomes > 0. I have been querying every 15 min during more than 24 hours low activities, it still stay to 0,
    5.) Are you experiencing paging/swapping on OS level?No, here orca figures for details:
    [free memory|http://img509.imageshack.us/img509/5897/ohuron1asd2gauge1024xfr.png]
    swap
    [pagein pageout|http://img121.imageshack.us/img121/6946/ohuron1asd2gaugepginper.png]
    [memory usage|http://img19.imageshack.us/img19/2213/ohuron1asd2gaugeppkerne.png]
    6.) Please post the result of: select * from X$QESMMSGA ;during low activities, [results X$QESMMSGA|http://pastebin.com/f61df7093]
    While you will be answering to my questions I'll try to figure out what we can do to properly diagnose the problem. As you are on 9i it is a little bit harder.I am really kind of your help, as we say in my country, "if you need tow arms one day to carry something, call me."
    --Jeremy Baumont                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to enable and install Enterprise Manager on Oracle E-Business Suite R12

    how to install Oracle Enterprise Manager. Were using single node Oracle E-Business Suite R12 (12.0.6) and our dbase version is 10.2.0, running under RedHat Linux 4 x64.
    I am following the below note
    How to Enable Enterprise Manager on the Oracle E-Business Suite Release 12 (Doc ID 458533.1)
    These patches are not available (6272715 and 6141000)
    how to proceed

    I think if you are on 12.0.6 you do not need to have those patches applied -- Please query AD_BUGS table to verify if you already have those patches applied or not.
    If you cannot download those patches and you still think you need it, please log a SR and Oracle support should help.
    Thanks,
    Hussein

Maybe you are looking for

  • I tunes will not install due to quicktime

    hello, I have an older pc and everytime I go to install Itunes, it goes through the whole process and at the very end says it cannot install because quicktime is not installed correctly and gives me some error message. I have never had itunes on this

  • When Matching Users Via Email, Changing Email Address Does Not Change Login

    Well, the subject pretty much says it all, but here're some examples of what's going on: Initial Data - Create 2 Business Partners in SAP, C1 and C2. - Create 2 Contact Employees in SAP, Adam with email adam at eden.org in C1 and Eve with no email in

  • Problem with memo field displaying

    I have a table in MS access with a memo field. Everything the user inputs in the field is recorded in the table. When I try to output the memo field I am on getting part of the field. Attached is the code for displaying the data from the acty_comment

  • Requirement assignment tab in PM order

    Hi, Gurus I just want to know ,when and how i can use requirement assignment tab i PM Order . How it can be used.Is there any config sttings for it. When i am cretating WC for activity based costing , Requirement assignemnt tab is not there .

  • Image Won't Pass from Lr5.5 to Photoshop CC (not CC 2014)

    There are a lot of threads on images not opening in Ps CC2014 when handed off from Lr5.5.  I thought I should note that the same problem has arisen for me when trying to pass an image from Lr5.5 to Ps CC.  I should note that I had cc2014 installed an