How do you ...properly....purge the cache?

I have PS CS4.
When I start my computer up, I always get the message that says,
"Bridge encountered a problem and is unable to read the cache. Please try purging the central Cache Preferences to correct the situation".
I've already "purged" the cache, I guess. But I keep getting the same message each time I start up my computer.
What am I supposed to do?
Thanks.

What did you do to purge the cache?
I would disable the auto startup for Bridge – it only causes problems.
And next time you start Bridge, hold down the Ctrl key as you click the icon and keep it down until you get a dialog . Select all options and see if things are better.

Similar Messages

  • How do you properly shutdown the OLite MA server?

    Does anyone know the "proper" shutdown command for the OLite 10g Mobile Admin [Java] server? By "proper", I mean something other than Cntrl-Break when the DOS box has focus. I have not been able to find anything in the documentation on it, only the startup command. I would have thought there would be a rather obvious "Shutdown MA Server" option on the browser admin ui....
    TIA,
    Scott

    My classpath is
    C:\>set classpath
    CLASSPATH=D:\oracle\sdk\MOBILE\CLASSES\OLITE40.JAR;D:\oracle\ora92\MOBILE\CLASSES\OLITE40.JAR;D:\oracle\ora92\Mobile\CLASSES\AQLite.jar;D:\oracle\ora92\Mobile\CLASSES\AQOracle.jar;D:\oracle\ora92\Mobile\CLASSES\AQCommon.jar;D:\oracle\ora92\Mobile\Server\bin\webtogo.jar;
    But seems it is not matter. Class com/evermind/server/OC4JServer is included to oc4j.jar and we have added it in paramters -Djava.class.path=oc4j.jar
    Well, check in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ {SERVICE_NAME}\Parameters
    1) "Current Directory" should be like D:\oracle\ora92\mobile_oc4j\j2ee\home\
    2) "JVM Library" should point on something like C:\j2sdk1.4.2_04\jre\bin\server\jvm.dll
    3) finally "JVM Option Number 0" should be -Djava.class.path=oc4j.jar
    You can also try to execute service using yours login.

  • How do you properly set the RAM timings?

    In an effort to solve random crashes on my pc I adjusted the RAM timings. I managed to stop the crashes, but I really didn't know what I was doing.
    Recently I was playing with the cpu overclock options and I started crashing again, even after I was back to normal cpu settings. I managed to get it running stable again by adjusting the RAM timings, but again it was by trial and error.
    I have read a lot of forums where people who have upgraded to a GF4 on several different systems have been plagued with crashes similar to mine. Is it possible that something is out of sync between the video, cpu, and ram? Is there anything that can be adjusted on the video card? Just a thought.
    Any help would be appreciated.
    System specs.....
    AMD 1800+
    MSI KT3 mobo
    Visiontek GF4 Ti4600
    SB Live
    Liteon CD/DVD
    Samsung PC2700, 512mb
    40 gig hd
    350 watt Enermax psu(This is new, replaced a 300watt generic because I thought it was the problem.)

    bios set uplink
    ram timming articlelink

  • Purge the cache

    Hi,
    How to purge the cache in obiee 11g
    thanks

    Hi,
    There are 2 ways to disable cache,
    1)edit \OracleBI\server\Config\NQSConfig.INI, change to
    ===================================
    [ CACHE ]
    ENABLE = NO;
    ===================================
    OR
    2)uncheck the "Cacheable" checkbox on the property dialog of each physical tables and views
    WILL METHOD 1 AND METHOD 2 RETURN SAME EFFECT ??
    Specific report:
    In the advanced tab of the report, under prefix you need to mention:
    SET VARIABLE DISABLE_CACHE_HIT=1;
    Refer below link
    http://tipsonobiee.blogspot.com/2009/06/step-by-step-to-bypass-all-caches.html
    Hope this hlep's
    Thanks,
    satya

  • Purging the cache entries accordingto table and SA

    Hi Gurus,
    I have few questions on Cache purging
    1>How many types of purging.
    2>Is it possible to purge the cache based on tables i.e.(if entries are generated on table A only that entries should purge in cache manager).
    3>Is it possible to purge the cache based on Subject Areas i.e.(if entries generated on subject area A only that entries should purge in cache manager).
    4>supose in cache manager there are 100 entries and i want to purge only selected entries i.e.(if i want to purge 25th, 50th and 75th,100th entries ) how i can achieve this.
    Regards,

    The same you can get it from Helpfile
    To purge the cache manually with the Cache Manager facility
    Use the Administration Tool to open a repository in online mode.
    Select Manage > Cache to open the Cache Manager dialog box.
    Select Cache or Physical mode by selecting the appropriate tab in the left pane.
    Navigate the explorer tree to display the associated cache entries in the right pane.
    Select the cache entries to purge, and then select Edit > Purge to remove them.
    In Cache mode, select the entries to purge from those displayed in the right pane.
    In Physical mode, select the database, catalog, schema or tables to purge from the explorer tree in the left pane.
    In Cache mode, you can purge:
    One or more selected cache entries associated with the open repository.
    One or more selected cache entries associated with a specified business model.
    One or more selected cache entries associated with a specified user within a business model.
    In Physical mode, you can purge:
    All cache entries for all tables associated with one or more selected databases.
    All cache entries for all tables associated with one or more selected catalogs.
    All cache entries for all tables associated with one or more selected schemas.
    All cache entries associated with one or more selected tables.
    SAPurgeCacheByQuery. Purges a cache entry that exactly matches a specified query. For example, using the following query, you would have a query cache entry that retrieves the names of all employees earning more than $100,000:
    select lastname, firstname from employee where salary > 100000;
    The following call purges the cache entry associated with this query:
    Call SAPurgeCacheByQuery('select lastname, firstname from employee where salary > 100000' );
    SAPurgeCacheByTable. Purges all cache entries associated with a specified physical table name (fully qualified) for the repository to which the client has connected.
    This function takes up to four parameters representing the four components (database, catalog, schema and table name proper) of a fully qualified physical table name. For example, you might have a table with the fully qualified name of DBName.CatName.SchName.TabName. To purge the cache entries associated with this table in the physical layer of the Oracle BI repository, execute the following call in a script:
    Call SAPurgeCacheByTable( 'DBName', 'CatName', 'SchName', 'TabName' );
    NOTE: Wild cards are not supported by the Oracle BI Server for this function. Additionally, DBName and TabName cannot be null. If either one is null, you will receive an error message.
    SAPurgeAllCache. Purges all cache entries. The following is an example of this call:
    Call SAPurgeAllCache();
    SAPurgeCacheByDatabase. Purges all cache entries associated with a specific physical database name. A record is returned as a result of calling any of the ODBC procedures to purge the cache. This function takes one parameter that represents the physical database name and the parameter cannot be null. The following shows the syntax of this call:
    Call SAPurgeCacheByDatabase( 'DBName' );
    For Q4:
    SAGetSharedRequestKey. An ODBC procedure that takes a logical SQL statement from the Oracle BI Presentation Services and returns a request key value.
    The following shows the syntax of this procedure:
    SAGetSharedRequestKey('sql-string-literal)
    Pls mark if helps

  • Purging the Cache in OBIEE 10.1.3.4 on Linux

    Hi,
    I was trying to purge the cache from linux using ./nqcmd . Following is the error faced
    *./nqcmd: error while loading shared libraries: libnqsgenericodbcinterface.so: cannot open shared object file: No such file or directory*
    I have checked for the libnqsgenericodbcinterface.so in usr/lib directory. Its not present there. Is this the Obiee specific library file? Should it be present in usr/lib during the Installation?
    Is there any work around for the same?
    Thanks in advance.

    Hi Ravi,
    There might be some environment setup issues here.
    Can you try running
    /oracle/product/OracleBI/setup/common.sh
    /oracle/product/OracleBI/setup/sysenvinit.sh
    and see if the command runs fine later? I remember seeing this kind of case earlier and hence would like you to try
    Hope this helps.
    Thank you,
    Dhar

  • HT4859 how do you get to the set up assistant

    how do you get to the set up assistant

    Nothing will happen until/unless the shuffle shows an light (LED) when connected through the dock to a USB port... make sure the shuffle is properly positioned and pressed into the dock.

  • Purging the Cache on Solaris

    How to purge the cache in a way that no server restart is required?
    OS: SUN SOLARIS

    http://obiee101.blogspot.com/2008/03/obiee-manage-cache-part-1.html
    nqcmd also is available in Unix OBIEE instalations under ./OracleBI/server/Bin.

  • How do you properly disconnect a vga monitor?

    I use a vga monitor at work about 2 to 3 times a week. I have a MBP 13, 2011.  I use it for powerpoint presentations.
    I was wondering how do you properly disconnect it once I'm done?
    I normally close out the application; turn off VGA, and then just disconnect.
    I feel like this may not be the proper way to do this.  I've looked for some sort of eject, but haven't found anything.
    Any feedback would be greatly appreciated.

    If you are switching between a monitor and a projector and the display resolutions are not the same as the MBP's then you should turn off the computer as well. I have found when using a projector that things tend to work best if the computer's display resolution is set to the resolution of the projector. It may not turn out to be necessary, but keep it in mind.

  • How do you shut off the apps that are running? Before the update you hit the button twice then it would showing all the apps and u can then shut them off.

    How do you shut off the apps? Before update I just hit the side button twice then it would show all the apps. Then I would shut them off.

    http://manuals.info.apple.com/en_US/ipad_user_guide.pdf
    View running apps.
    Double-click the Home button to reveal the multitasking display. Swipe left
    or right to see more. To switch to another app, tap it.
    Quit an app.
    If an app isn’t working properly, you can force it to quit. Drag the app up from the
    multitasking display. Then try opening the app again

  • How do you turn on the radio feature?  I don't see it on the home screen.

    How do you turn on the radio feature?  I don't see it on the home screen.

    If you don't see the radio icon on the home screen, it is likely just turned off in the settings. Go to
    Settings > General > Home Screen >
    There you will see radio listed. Make sure that the slider is set to ON.
    i

  • HT204053 I have multiple devices used by family members, how do you make sure the kids don't see Moms messages from Dad and visa versa?

    I have multiple devices used by family members, how do you make sure the kids don't see Moms messages from Dad and visa versa?

    Hi Roger:
    Thanks for the reply.  I think I figured out the problem.  Apple has confused (at least in my mind) the different IDs that people can have.  In the iCloud settings, they use the term Apple ID and not iCloud ID.  I guess there really is no such thing as an iCloud ID.  There are Apple IDs with various attributes.  This is not clearly explained or easy to see (how could I look up to see if my Apple ID is associated with iTunes for example?).
    I created, what I thought were iCloud IDs for each family member, but we all use my Apple ID for iTunes.
    One other question - why does the syncing of Notes using iCloud require an @me.com email account.  That makes no sense to me.
    Thanks for your help!
    AO

  • TS4425 How do you agree to the latest iCloud Terms of Service if you don't have an iOS device only a Mac computer and an Apple TV with an iCloud account?

    How do you agree to the latest iCloud Terms of Service if you don't have an iOS device only a Mac computer and an Apple TV with an iCloud account?

    Part 2
    Thanks for the feedback Skhorchid.  Glad it worked for you too.
    A bit later I discovered that Photo Stream was not working on my Windows 7 PC either.  If I opened the iCloud control panel and put a check in the box to turn on Photo Stream, and then closed and reopened the control panel, the check mark was gone again.  Also, nothing happened when I clicked on the options button beside the Photo Stream check box.  I already had version 2 of the iCloud control panel so I could not upgrade further. 
    I ended up uninstalling the iCloud control panel, rebooting, downloading a fresh copy from Apple, and reinstalling it.  This worked and I now have photo stream working on my Windows 7 system as well.

  • How can you delete all the e mail at one time instead of one at a time?

    How can you delete all the e mail at one time instead of one at a time?

    you'd have to do it from the computer,

  • How can you turn off the braille setting on an iPhone 4s, once on it won't let you slide the phone into use mode to change the settings or do anything?

    How can you turn off the braille setting on an iPhone 4s, once on it won't let you slide the phone into use mode to change the settings or do anything?

    An alternate method is Accessibility Settings when connected to iTunes. You should be able to turn it off there. I would also check out some of the answers listed to the right of this post and see if they can help.

Maybe you are looking for