Are memory only databases shared?

Greetings,
If I open several db files and create a memory db in the same environment, and do this from several concurrently running processes, it is possible that the memory db would be shared? I need the memory db to be private to each process and wondered how I can ensure that it is?
The only difference in the way I am opening the db files vs. the memory db is by passing null for a filename and DB_CREATE for the memory db.
Thanks,
Matthew

Thanks for the reply. I am opening each memory database with its own handle (didn't know it was possible to do otherwise?)
If multiple private databases are opened in the same shared environment, they
will each occupy space in the cache, so you need to ensure that the cache is
large enough to hold all of the data if you want to make sure that the data stays
in memory.What happens when I open the environment from multiple processes, and each process is calculating the cache size based on the lookup files it will need? Your statement made me think that maybe I could be causing a problem for myself. I have about 20 or so lookup tables, but each process only uses a subset of those based on its job.
So if process #1 opens 10 of the lookup tables and requests a cache large enough to keep all the lookups in memory, what happens when process #2, #3, #4, etc. start and request a cache size for their respective lookups? All processes open the same database files in the same directory, so are they also sharing the same environment?
Matthew

Similar Messages

  • SHARED MEMORY AND DATABASE MEMORY giving problem.

    Hello Friends,
    I am facing problem with EXPORT MEMORY and IMPORT MEMORY.
    I have developed one program which will EXPORT the internal table and some variables to the memory.This program will call another program via background job. IMPORT memory used in another program to get the first program data.
    This IMPORT command is working perfect in foreground. But  it is not working in background.
    So, I have reviewed couple of forums and I tried both SHARED MEMORY AND DATABASE MEMORY.  But no use. Still background is giving problem.
    When I remove VIA JOB  parameter in the SUBMIT statement it is working. But i need to execute this program in background via background job. Please help me . what should I do?
    pls find the below code of mine.
    option1
    EXPORT TAB = ITAB
           TO DATABASE indx(Z1)
                FROM   w_indx
                CLIENT sy-mandt
                ID     'XYZ'.
    option2
    EXPORT ITAB   FROM ITAB
      TO SHARED MEMORY indx(Z1)
      FROM w_indx
      CLIENT sy-mandt
      ID 'XYZ'.
       SUBMIT   ZPROG2   TO SAP-SPOOL
                      SPOOL PARAMETERS print_parameters
                       WITHOUT SPOOL DYNPRO
          *_VIA JOB name NUMBER number*_
                       AND RETURN.
    ===
    Hope every bidy understood the problem.
    my sincere request is ... pls post only relavent answer. do not post dummy answer for points.
    Thanks
    Raghu

    Hi.
    You can not exchange data between your programs using ABAP memory, because this memory is shared between objects within the same internal session.
    When you call your report using VIA JOB, a new session is created.
    Instead of using EXPORT and IMPORT to memory, put both programs into the same Function Group, and use global data objects of the _TOP include to exchange data.
    Another option, is to use SPA/GPA parameters (SET PARAMETER ID / GET PARAMETER ID), because SAP memory it is available between all open sessions. Of course, it depends on wich type of data you want to export.
    Hope it was helpful,
    Kind regards.
    F.S.A.

  • App file sharing: files are displayed only the first time...

    clicking somewhere else and then back to the application that you want to share files are not there any more.
    I've to close and re-open the itunes in order to see them again.
    itunes is running on windows 7 64bit.
    is this a bug ?
    thank you.

    Hi! I have the same, exact problem. The files are displayed only the first time I look at the apps listed under File Sharing. If I look at another app on the list, the files on the one I previously checked are gone when I look at it again. Is there any way to fix this? I have a Lenovo X61s on Windows XP Professional 32 bit.

  • Callback function may be NULL only when database handles are read-only

    Hi,
    I am getting some errors when trying to run my java code that will try to open a few cursors and join them to fetch the data.
    ath .:/usr/src/db-4.7.25.NC/java/src:/usr/local/BerkeleyDB.4.7/lib/db.jar bdbtest
    MyDbs: Callback function may be NULL only when database handles are read-only
    Error on inventory secondary cursor:
    java.lang.IllegalArgumentException: Invalid argument: Callback function may be NULL only when database handles are read-only
    What does that error mean? How can I resolve it? I am following the sample program and I can't find anything related.
    Here is my code.
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.Database;
    import com.sleepycat.db.SecondaryDatabase;
    import com.sleepycat.db.DatabaseConfig;
    import com.sleepycat.db.DatabaseType;
    import java.io.FileNotFoundException;
    import com.sleepycat.db.DatabaseEntry;
    import com.sleepycat.db.SecondaryCursor;
    import com.sleepycat.db.Cursor;
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.LockMode;
    import com.sleepycat.db.OperationStatus;
    import com.sleepycat.db.SecondaryCursor;
    import com.sleepycat.db.SecondaryConfig;
    import com.sleepycat.bind.EntryBinding;
    import com.sleepycat.bind.serial.SerialBinding;
    import com.sleepycat.bind.tuple.TupleBinding;
    import com.sleepycat.db.Cursor;
    import com.sleepycat.db.DatabaseEntry;
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.LockMode;
    import com.sleepycat.db.OperationStatus;
    import com.sleepycat.db.SecondaryCursor;
    public class bdbtest {
    public static void main(String args[]) {
    SecondaryDatabase myDatabase = null;
         Database primDB = null;
         Cursor cursor = null;
    try {
    // Open the database. Create it if it does not already exist.
    DatabaseConfig dbConfig = new DatabaseConfig();
         dbConfig.setErrorStream(System.err);
    dbConfig.setErrorPrefix("MyDbs");
         dbConfig.setType(DatabaseType.BTREE);
    dbConfig.setAllowCreate(true);
         SecondaryConfig mySecConfig = new SecondaryConfig();
         mySecConfig.setErrorStream(System.err);
    mySecConfig.setErrorPrefix("MyDbs");
         mySecConfig.setType(DatabaseType.BTREE);
    mySecConfig.setAllowCreate(true);
         primDB = new Database("/tmp/bdb_ca_db.db",
    "bdb_ca_db",
    dbConfig);
    dbConfig.setAllowCreate(true);
    myDatabase = new SecondaryDatabase("/tmp/bdb_ca_sdb.db",
    "ca_sdb_res_alias",
    primDB,
    mySecConfig);
         String res ="in-1";
         SecondaryCursor secCursor = null;
         DatabaseEntry searchKey =
    new DatabaseEntry(res.getBytes("UTF-8"));
         DatabaseEntry foundKey = new DatabaseEntry();
    DatabaseEntry foundData = new DatabaseEntry();
         secCursor =
    myDatabase.openSecondaryCursor(null, config);
    // Search for the secondary database entry.
    OperationStatus retVal =
    secCursor.getSearchKey(searchKey, foundKey,
    foundData, LockMode.DEFAULT);
         if (retVal == OperationStatus.SUCCESS){
              System.out.println("succ");
         }else {
              System.out.println("fail");
    while (retVal == OperationStatus.SUCCESS) {
    String keyString = new String(foundKey.getData(), "UTF-8");
    String dataString = new String(foundData.getData(), "UTF-8");
    System.out.println("Key | Data : " + keyString + " | " +
    dataString + "");
    secCursor.getNextDup(searchKey, foundKey,foundData, LockMode.DEFAULT);
         } catch (Exception e) {
    System.err.println("Error on inventory secondary cursor:");
    System.err.println(e.toString());
    e.printStackTrace();
         finally {
    // Make sure to close the cursor
              try {
              cursor.close();
              }catch (com.sleepycat.db.DatabaseException e) {
    System.out.println("All done.");
    }

    Hi,
    The error is because either the primary database or the secondary database is configured as read only and the callback to create the secondary keys is null. A quick glance of the code, it appears as if you did not set up the secondary database correctly. In the Getting Started Guide for JAVA API chap 10, we have detailed information on what needs to be done as well as a code example. Please refer to http://www.oracle.com/technology/documentation/berkeley-db/db/gsg/JAVA/index.html and look for Chap 10.
    regards,
    Mike Brey, Oracle Berkeley DB

  • In-memory only DB

    Updated.
    Hi,
    I just started to write some test programs to test BDB C APIs. I have a questions:
    How do I create a DB entirely in shared memory? I tried this:
    env_flags = DB_CREATE | DB_INIT_MPOOL | DB_SYSTEM_MEM;
    I got the following error:
    BDB1546 unable to join the enviroment
    Environment open failed: Resource temporarily unavailable
    Thanks
    Han
    Edited by: 902412 on Dec 14, 2011 4:45 PM
    Edited by: 902412 on Dec 14, 2011 4:48 PM

    Emily Fu, Oracle Berkeley DB wrote:
    Hi,
    Do you mean to create BDB environment in shared memory, or database file, or log? There are different Berkeley DB files that could be created in memory. You might refer to http://docs.oracle.com/cd/E17076_02/html/articles/inmemory/C/index.html.
    My main purpose is to have the database file in shared memory because I am looking for: a) best possible performance. and b) persistent data across process restarts. It is ok to lose data after system reboot. What will be the best approach to do a) and b) ?
    >
    As the system memory is architecture-dependent, could you please let us know what platform you are running on? To use shared memory region, you might refer to http://docs.oracle.com/cd/E17076_02/html/programmer_reference/env_region.html and http://docs.oracle.com/cd/E17076_02/html/api_reference/C/envopen.html.
    I am running Ubuntu Linux on Intel Xeon CPU platform.
    thanks
    Han
    >
    Emily Fu
    Oracle Berkeley DB

  • After EM agent installation, only database is not visible in EM Grid Contro

    Dear All,
    I am using Oracle 10g2 database. I have a problem with EM agent configuration. After installation the database (SID=BITEX) is not visible in the EM Grid Control, which is installed on the other host. Listener, ASM and host are visible and show actual state, only database instance is missing . Below, I attached some output from the listener, agent and targets.xml
    Thanks fro any advice
    Groxy
    Output from "lnsnctrl status":
    oracle@bitex2:~/product/10.2/db_1/bin> lsnrctl status
    LSNRCTL for Linux: Version 10.2.0.2.0 - Production on 05-DEC-2007 14:33:35
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=bitex2.bitex.com.pl)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.2.0 - Production
    Start Date 05-DEC-2007 14:17:14
    Uptime 0 days 0 hr. 16 min. 21 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /opt/oracle/product/10.2/db_1/network/admin/listener.ora
    Listener Log File /opt/oracle/product/10.2/db_1/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=bitex2.bitex.com.pl)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC2)))
    Services Summary...
    Service "+ASM" has 1 instance(s).
    Instance "+ASM", status BLOCKED, has 1 handler(s) for this service...
    Service "+ASM_XPT" has 1 instance(s).
    Instance "+ASM", status BLOCKED, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "BITEX.WORLD" has 1 instance(s).
    Instance " BITEX ", status READY, has 1 handler(s) for this service...
    Service " BITEXXDB.WORLD" has 1 instance(s).
    Instance "SA BITEX NEX", status READY, has 1 handler(s) for this service...
    Service " BITEX _XPT.WORLD" has 1 instance(s).
    Instance " BITEX ", status READY, has 1 handler(s) for this service...
    The command completed successfully
    oracle@ bitex2:~/OracleHomes/agent10g/bin> ./emctl status agent
    ./emctl status agent
    Oracle Enterprise Manager 10g Release 10.2.0.2.0.
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    Agent Version : 10.2.0.2.0
    OMS Version : 10.2.0.2.0
    Protocol Version : 10.2.0.2.0
    Agent Home : /opt/oracle/OracleHomes/agent10g
    Agent binaries : /opt/oracle/OracleHomes/agent10g
    Agent Process ID : 22193
    Parent Process ID : 22177
    Agent URL : https://bitex2.bitex.com:3872/emd/main/
    Repository URL : https://grid. bitex.local:1159/em/upload
    Started at : 2007-12-05 14:25:46
    Started by user : oracle
    Last Reload : 2007-12-05 14:25:46
    Last successful upload : 2007-12-05 14:33:32
    Total Megabytes of XML files uploaded so far : 1.84
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 50.69%
    Last successful heartbeat to OMS : 2007-12-05 14:33:51
    Agent is Running and Ready
    /opt/oracle/OracleHomes/agent10g/sysman/emd/targets.xml
    <Targets AGENT_TOKEN="05b0697c77651ee3933abf6fa56180dd62c4be3b">
    <Target TYPE="oracle_emd" NAME="bitex2.bitex.com.pl:3872"/>
    <Target TYPE="host" NAME="bitex2.bitex.com.pl"/>
    <Target TYPE="oracle_database" NAME="BITEX.WORLD">
    <Property NAME="MachineName" VALUE="bitex2.bitex.com.pl"/>
    <Property NAME="Port" VALUE="1521"/>
    <Property NAME="SID" VALUE="BITEX"/>
    <Property NAME="OracleHome" VALUE="/opt/oracle/product/10.2/db_1"/>
    <Property NAME="UserName" VALUE="f614471b2cb8c5b7" ENCRYPTED="TRUE"/>
    <Property NAME="password" VALUE="0d16396a5b89b576b58f90a69cbd2c55" ENCRYPTED="TRUE"/>
    <Property NAME="ServiceName" VALUE="BITEX.WORLD"/>
    </Target>
    <Target TYPE="oracle_listener" NAME="LISTENER_bitex2.bitex.com.pl">
    <Property NAME="Machine" VALUE="bitex2.bitex.com.pl"/>
    <Property NAME="LsnrName" VALUE="LISTENER"/>
    <Property NAME="Port" VALUE="1521"/>
    <Property NAME="OracleHome" VALUE="/opt/oracle/product/10.2/db_1"/>
    <Property NAME="ListenerOraDir" VALUE="/opt/oracle/product/10.2/db_1/network/admin"/>
    </Target>
    <Target TYPE="osm_instance" NAME="+ASM_bitex2.bitex.com.pl">
    <Property NAME="SID" VALUE="+ASM"/>
    <Property NAME="MachineName" VALUE="bitex2.bitex.com.pl"/>
    <Property NAME="OracleHome" VALUE="/opt/oracle/product/10.2/db_1"/>
    <Property NAME="UserName" VALUE="SYS"/>
    <Property NAME="password" VALUE="0d16396a5b89b576b58f90a69cbd2c55" ENCRYPTED="TRUE"/>
    <Property NAME="Role" VALUE="SYSDBA"/>
    <Property NAME="Port" VALUE="1521"/>
    </Target>
    </Targets>

    I don't see where your listener hostname matches hostname for your agent, thus agent discovery might have issue putting two and two together. Thus, the need to add it manually, or adjust it in targets.xml file first.
    reference
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=bitex2.bitex.com.pl)(PORT=1521)))
    Agent URL : https://bitex2.bitex.com:3872/emd/main/

  • Is there a web-only database development environment?

    I have a database solution to create that only needs to be accessible via web browsers. I do not have an existing database, so it is not a matter of connecting an existing database to the web.
    Is there a web-only database development environment that would allow me to create the entire database without some non-web database environment like Oracle, Access, 4D, FileMaker etc.
    I guess what I want is a web-native database, I don't want to construct it in some environment that has to be "interpreted" in order for it to be presented to a web browser.

    Databases are databases. I'm not aware of any products that are specialized for web-only access. And I can't see such a product succeeding, since the existing products are already accessible via web programming.
    I don't know what the remarks about "interpreted" mean so I can't help you there.

  • Query to find the memory of database in oracle,sql

    Hi All,
    Please let me know the query to find the memory of database in oracle,sql.
    Thanks,
    sajith

    How do I find the overall database size?
    The biggest portion of a database's size comes from the datafiles. To find out how many megabytes are allocated to ALL datafiles:
    select sum(bytes)/1024/1024 "Meg" from dba_data_files;
    To get the size of all TEMP files:
    select nvl(sum(bytes),0)/1024/1024 "Meg" from dba_temp_files;
    To get the size of the on-line redo-logs:
    select sum(bytes)/1024/1024 "Meg" from sys.v_$log;
    Putting it all together into a single query:
    select a.data_size+b.temp_size+c.redo_size "total_size"
    from ( select sum(bytes) data_size
    from dba_data_files ) a,
    ( select nvl(sum(bytes),0) temp_size
    from dba_temp_files ) b,
    ( select sum(bytes) redo_size
    from sys.v_$log ) c;
    Another query ("Free space" reports data files free space):
    col "Database Size" format a20
    col "Free space" format a20
    select round(sum(used.bytes) / 1024 / 1024 ) || ' MB' "Database Size"
    , round(free.p / 1024 / 1024) || ' MB' "Free space"
    from (select bytes from v$datafile
    union all
    select bytes from v$tempfile
    union all
    select bytes from v$log) used
    , (select sum(bytes) as p from dba_free_space) free
    group by free.p
    This is what I use :P From http://www.orafaq.com/wiki/Oracle_database_FAQ#How_do_I_find_the_overall_database_size.3F

  • Photographs all are read only??

    Hi folks. I wasn't sure where to put this question so it may not be in the right place. I have the iMac and my wife has a Dell PC (poor thing :0)). I copied all of the photo's she has collected onto a DVD to transfer them to my iMac for editing and future publishing to the web. I use Photo Shop Elements 6 to do this with, but it would not let me edit due to insufficient permissions! I must admit I chuckled when that came up since I took most of these photo's. So I opened Finder, browsed to the directory where the photo's are and using "Get Info" I found that all of these photo's and directories and subdirectories (literally hundreds of photo's) are read only permission. All I'm looking for is a way to make them all read/write en masse. Is there a way?
    Thanks,
    Rich

    Hi Richard
    I don't have a-lot of experience with the windows OS's, but do share hundreds of JPEG images every year with PC user's and that sounds like a problem with the photo files or the way they were burned onto the DVD. If you have a MS-DOS FAT 32 formatted External HD, a Flash Drive or Card Reader & Camera Card you should have no problems transferring the Original JPEG Photo Files back and forth between a Windows box and Mac.
    See → http://support.apple.com/kb/HT2518
    For network sharing, See ↓
    http://www.ifelix.net/tech/3020.html
    http://forums.mactalk.com.au/20/42765-how-share-files-between-mac-os-x-leopard-v ista.html
    Dennis

  • Scheduling workbooks in read only database

    We have a standby server for our OLTP and it is read only database. Read only database is not allowing to schedule discoverer reports. Can anyone suggest how to handle this?

    Its a replication of OLTP. Every day night OLTP logs are applied into this read only database. We cannot change anything in EUL. Whatever the changes we do in OLTP EUL it gets reflected in the read only database.

  • Is it possible to update only the Shared Install component?

    We are running MDM 7.1 with all components at 7.1.06.211.  We opened an OSS ticket due to an issue with CCMS monitoring and SAP told us to upgrade the MDM Shared Install component to at least 7.1.06.230.  We want to use sapinst --> update to apply the patch but cannot find a way to select only the shared install component.  Is the correct procedure to:
    1. In sapinst on the "Update - MDM Instances" screen, select  "Update all MDM instances of the SAP system" (MDS00, MDIS01, MDSS02)
    ...and then...
    2. In sapinst on the "Update - Content Archives" screen, extract only the shared.sar archive and deselect the others (mds.sar, mdis.sar, mdss.sar).
    Will this procedure update the shared installation component only and not the others?  Is this possible?  If not, will all of the other components have to be updated even though SAP said to update only the shared installation component?
    We have searched OSS and SDN but cannot find a clear explanation of how this should work.  Note 1481741 states that all components within the same SP level (e.g. 7.1.06.xx) are compatible and recommends upgrading only the component affected by the fix, which is what we want to do.
    Any help will be appreciated.
    Thanks and regards,
    WL

    Camoracer got it - my work computer has limited hardware/system resources. It can handle iTunes audio, but iTunes video slows it to a crawl and makes it so I can't get any work done. There are video podcasts I'd like to listen to at work, but can't for that reason. So I'd like to just play the audio stream from the podcast while disabling the video stream. The video portion isn't necessary anyway, it's usually just a talking head and not anymore informative than the audio portion alone.

  • Memory only runs at 2T

    My Corsair 1GB (2x512) Value memory only runs at 2T. This is the setting that comes up in AUTO. I tried going manual and setting it to 1T but the system froze and wouldn't boot then, I had to clear the bios and start over. I don't have any experience with overclocking, but thought it should be running at 1T. Any suggestions? Thanks.

    About 1T/2T:
    Quote
    Hello,
    1T and 2T Command Rate, also known as CPC or Command Per Clock, is a motherboard timing not a memory timing. 1T/2T commands indicate how the system clocks are allocating the timings of a command to the system. 1T = 1 clock cycle and 2T = 2 clock cycles.
    On average there may be a performance difference in between 7-10% (depending on who you talk to, platform being run, benchmark used, etc)
    1T/2T Command Rates can be setup differently based on manufacture, motherboard, processor type (Intel Vs. AMD) etc. At higher speeds, drivers, board layouts, chipset requirements all can add up to the system performance overall. Changing the 1T to a 2T command rate can stabilize the system if issues arise.
    Since 1T-2T command rates are not a memory specification, Crucial does not list this as part of our overall module specification.
    THOMAS THOR
    Technical Support Analyst
    Tel: (800) 336-8896
    Tel: (208) 363-5790 (outside US & Canada)
    Fax: (208) 363-5501
    mailto:[email protected]
    EDIT: Winnie og Venice CPU?

  • Can we conform in memory via in memory only query?

    Can we conform in memory via in memory only query?
    In other words, if I do in memory query only, does the query result will represent changes done in the UOW so far?
    I thought that was the case, but then I saw this comment in EclipseLink 1.1.3, class ReadAllQuery:
    // PERF: Fixed to not query each unit of work cache (is not conforming),
    // avoid hashtable and primary key indexing.
    // At some point we may need to support some kind of in-memory with conforming option,
    // but we do not currently allow this.

    We want to be able to do conforming against session via uow so include state in uow, and also only against uow.
    Please show us how it can be done using existing API.
    Scenario 1:
    We have 1000 organizations loaded in the session cache, we always cache all of them, so we know we don't need to hit the db. So we would like to do query in memory via UOW to pick-up the cases we are in the middle of a transaction modifing/creating/deleting an organization and also get the session object not yet transfered to the UOW.
    Scenario 2:
    I do not want to flush before each query, it is a popular query. The class queried against have many thousands objects in the session cache, also there is no garanty the objects are already loaded. I send to the db the query truncating all the columns of the select except for the primary keys columns, so using report query asking for primary key only. I then verify if the objects are present in the cache, if some are not present, I retrieve the missing objects in batch from DB using the ids. Most of the time we have 100% cache hit. Then I transfer all the objects to the UOW. Then to get modification done so far in the transaction, I query in memory only in the UOW not accessing session cache because would have to iterate thousands of objects. That sound convoluted scenario but it's actually very useful in our application to get better performance without introducing stale issue. Similar scenario is that we have some query that are repeted many times during the same UOW. We can keep trace that the query have been executed one time against the DB, so that the result is loaded in memory. But then, we still need to execute again to pick-up the change in the transaction but we don't want to pay the price of iterating the many thousands instances in the session cache, when we already know UOW has all the objects that the query needs.
    Thanks for helping us to leverage query in memory, an exclusive feature of TopLink/EclipseLink.

  • I have installed 20GB memory - Only 16GB / 13GB showing in Premiere Pro - Any Help?  (Specs and pics below)

    I have installed 20 gb memory - Only 13 gb showing in Premiere Pro - Any Help?
    (Windows 7 64 bit - Quadro 4000 card - 20gb DDR3 PNY RAM) I doubled Checked with SPECCY that something wasn't amiss

    Thanks much cc_merchant
    Quick question - would this memory problem still cause a lag in project playback?  I have some pretty hefty HD .avi after effects and a few places where there are up to 9 video frames in one window. But I was watching a Terry White video and he said the lag should be gone with a Quadro Video card and CUDA enabled.
    I also occasionally get this card is not enabled for CUDA and I have to restart PP

  • HT3819 How do I find what computers are on my home sharing network?

    How do I find what computers are on my home sharing network?

    skyeski wrote:
    Home Sharing network thru iTunes.
    I can only check the two that I know about with my iTunesID and password. How do I find out what the other three are?
    Im confused.
    How do you know there are three other computers on your network using Home Sharing?
    Do you have 5 computers, all powered on with iTunes running?

Maybe you are looking for