Browse folders

Hi again,
great! Now that I've discovered this wonderful forum, I can ask all the questions I've always wanted to ask about XML DB but never dared to ;-)
I frequent use case with XML DB is that you want to find out about folders and subfolders from your application.
I'm wondering what is the recommended way to list them?
Say we've got:
SELECT any_path FROM resource_view WHERE UNDER_PATH(res,'/public')=1 AND EXISTSNODE(res,'/r:Resource[@Container="true"]','xmlns:r="http://xmlns.oracle.com/xdb/XDBResource.xsd"')=1
This will list me all folders under public. But it is rather slow and will take a few minutes to complete.
As an aside, interestingly, when I try:
SELECT any_path FROM resource_view WHERE EQUALS_PATH(res,'/public')=1 AND EXISTSNODE(res,'/r:Resource[@Container="true"]','xmlns:r="http://xmlns.oracle.com/xdb/XDBResource.xsd"')=1
I get ORA-31038: Invalid hexBinary value: "true"
Why? Weird, indeed!
OK. Trying now this:
SELECT any_path FROM resource_view WHERE UNDER_PATH(res,'/public')=1 AND EXTRACTVALUE(res,'/r:Resource/@Container','xmlns:r="http://xmlns.oracle.com/xdb/XDBResource.xsd"')='true'
Only this finishes in an acceptable time.
Unfortunately, when I try:
SELECT any_path FROM resource_view WHERE UNDER_PATH(res,1,'/public')=1 AND EXTRACTVALUE(res,'/r:Resource/@Container','xmlns:r="http://xmlns.oracle.com/xdb/XDBResource.xsd"')='true'
it doesnt use the XMLIndex I've created on the repository and it is slow again.
The depth parameter of UNDER_PATH seems to make it forget about the XMLIndex.
So, it's faster to read all folders from the whole repository than just one level.
Is there any way I can force it to use the XMLIndex anyway? Or is there a different way to find out only about folders?
Thank you,
republic

Some different attempts, probably no use yet, but enabling text indexing...
http://download.oracle.com/docs/cd/E11882_01/appdev.112/e16659/xdb18res.htm#insertedID5
SQL> conn / as sysdba
Connected.
SQL>  @?/rdbms/admin/dbmsxdbt
Grant succeeded.
Grant succeeded.
Grant succeeded.
Package created.
No errors.
Package body created.
No errors.
Procedure created.
No errors.
SQL> host cat $ORACLE_HOME/rdbms/admin/dbmsxdbt.sql
Rem
Rem $Header: rdbms/admin/dbmsxdbt.sql /main/11 2009/10/08 17:21:09 attran Exp $
Rem
Rem dbmsxdbt.sql
Rem
Rem Copyright (c) 2002, 2009, Oracle and/or its affiliates.
Rem All rights reserved.
Rem
Rem    NAME
Rem      dbmsxdbt.sql - XDB conText index setup
Rem
Rem    DESCRIPTION
Rem      Useful routines and scripts for conText indexes on XDB
Rem
Rem    NOTES
Rem      Must be connected as SYS to run this script
Rem
Rem    MODIFIED   (MM/DD/YY)
Rem    attran      09/09/09 - 8915200 - IFILTER -> PolicyFilter
Rem    badeoti     03/19/09 - dbms_xdbz.get_username moved to dbms_xdbz0
Rem    llsun       06/19/08 - bug 7137308: xdb.dbms_xdbt
Rem    petam       02/04/05 - fix for bug 4148632
Rem    najain      06/05/03 - dont use XDB_RESINFO
Rem    najain      08/01/03 - 3071986: index more fields
Rem    smuralid    01/08/03 - dbms_xdbt: ctx security rewrite
Rem    sichandr    10/03/02 - getCharsetId: handle Oracle names too
Rem    rshaikh     08/08/02 - bug2456600: change IndexMemory to be
Rem                           equal to MAX_INDEX_MEMORY
Rem    smuralid    01/28/02 - globalization support
Rem    smuralid    01/24/02 - Merged smuralid_repos_search
Rem    smuralid    01/23/02 - Created
Rem
Rem
Rem Make sure that XDB can see these packages
Rem
GRANT EXECUTE ON ctxsys.ctx_ddl TO xdb;
GRANT EXECUTE ON ctxsys.ctx_output TO xdb;
GRANT ctxapp TO xdb;
Rem
Rem Package to simplify context index creation on XDB
Rem
CREATE OR REPLACE PACKAGE xdb.dbms_xdbt AUTHID CURRENT_USER IS
  --  OVERVIEW
  --    This package provides utilities for creating and managing conText
  --    indexes on the XDB repository.
  --    The preferred mode of operation is as follows
  --    (a) drop any existing preferences. dbms_xdbt.dropPreferences
  --    (b) re-create preferences for the index
  --        (dbms_xdbt.createPreferences)
  --    (c) Create the index
  --        (dbms_xdbt.createIndex)
  --        Verify that things have gone smoothly using
  --          "select * from ctx_user_index_errors"
  --    (d) Setup automatic sync'ing of the index
  --        (dbms_xdbt.configureAutoSync)
  --    (e) Sit back and relax
  --    The package spec contains a a list of package variables that
  --    describe the configuration settings. These are intended to
  --    cover some of the more basic customizations that installations
  --    might require, but is not intended to be a complete set.
  --    There are 2 ways to customize this package.
  --    (a) Use a PL/SQL procedure to set the appropriate package variables
  --        that control the relevant configurations, and then execute
  --        the package. Obviously, this only applies to the set of existing
  --        package variables
  --    (b) The more general approach is to modify (in place, or as a copy)
  --        this package to introduce the appropriate customizations
  --    For instance, if you need to change the amount of memory available
  --    for indexing, you could use option (a).
  --    NOTES:
  --      If you're using this package as is, please note the following
  --    (a) Make sure that the LOG_DIRECTORY parameter is set using
  --        ctx_adm.set_parameter
  --        Alternately, turn off rowid logging by setting the
  --        'LogFile' package variable to the empty string.
  --    (b) Make sure that the MAX_INDEX_MEMORY parameter is at least
  --        128M. Other change the package variable 'IndexMemory'
  --        appropriately
TYPE varcharset IS TABLE OF VARCHAR2(100);
-- CONSTANTS
-- FILTERING OPTIONS
-- The following constants describe the kinds of filtering we may want
-- to do.
-- USE_NULL_FILTER simply sends the document over to the charset converter
-- USE_INSO_FILTER uses the IFILTER api of INSO to convert the document
--    into HTML
-- SKIP_DATA is used to completely ignore the document's contents for
-- filtering. (The document metadata is indexed, however)
USE_NULL_FILTER            CONSTANT PLS_INTEGER := 1;
USE_INSO_FILTER            CONSTANT PLS_INTEGER := 2;
SKIP_DATA                  CONSTANT PLS_INTEGER := 3;
-- Sync options
-- There are basically two mechanisms of automatic sync provided here.
-- SYNC_BY_PENDING_COUNT indicates that when the number of entries in the
--   pending queue reaches a threshold, it is time to sync up the index
-- SYNC_BY_TIME indicates that the index should be synced up at regular
--   intervals
-- SYNC_BY_PENDING_COUNT_AND_TIME is a combination of both these strategies
SYNC_BY_PENDING_COUNT      CONSTANT PLS_INTEGER := 1;
SYNC_BY_TIME               CONSTANT PLS_INTEGER := 2;
SYNC_BY_PENDING_COUNT_AND_TIME CONSTANT PLS_INTEGER := 3;
SyncTimeOut                NUMBER := NULL;
-- CONFIGURATION SETTINGS
-- This section contains the default settings for the index. This
-- section should be changed as appropriate.
-- The name of the context index
IndexName         CONSTANT VARCHAR2(32) := 'XDB$CI';
-- The default memory to be used for index creation and sync
-- NOTE: This must be less than (or equal to) the MAX_INDEX_MEMORY
--       parameter
IndexMemory       CONSTANT VARCHAR2(32) := '50M';
-- SYNC OPTIONS
-- The following section describes the automatic sync policy.
-- By default, the auto-sync policy (once it has been configured)
-- is to sync based on the pending count.
-- Should we sync up based on pending count, or time or both ?
AutoSyncPolicy             PLS_INTEGER := SYNC_BY_PENDING_COUNT;
-- This parameter determines the maximum size of the pending queue
--   before the index is sync-ed. Applies only when the sync policy
--   is SYNC_BY_PENDING_COUNT or SYNC_BY_TIME_AND_PENDING_COUNT
MaxPendingCount            PLS_INTEGER := 2;
-- This parameter determines the interval - in minutes - at
-- which the "regular" sync should be performed on the index.
-- Applies only to the SYNC_BY_TIME and the SYNC_BY_PENDING_COUNT_AND_TIME
-- policies
SyncInterval               PLS_INTEGER := 60;
-- This parameter determines how frequently - in minutes - the pending
-- queue is polled. Applies only to the SYNC_BY_PENDING_COUNT
-- (and the SYNC_BY_PENDING_COUNT_AND_TIME) policies
CheckPendingCountInterval  PLS_INTEGER := 10;
-- LOGGING OPTIONS
-- Please ensure that the LOG_DIRECTORY parameter is
-- already set if you need rowid logging
-- Logging options. This parameter determines the logfile used - for
-- rowid logging during index creation etc.
-- Set this parameter to NULL to avoid rowid-logging
LogFile                    VARCHAR2(32) := '';
-- FILTER OPTIONS
-- The following classes determine the filtering options based on the
-- mime type of the document
-- The skipFilter_Types list contains a list of regular expressions
-- that describe mime types for which the document is *not* to be
-- filtered/indexed. (The document metadata, however, is still indexed)
-- Use this for document types that cannot really be indexed. Good
-- examples of this class are images, audio files etc
-- The NullFilter_Types list contains a list of regular expressions
-- that describe mime types of documents for which no INSO filtering
-- is required - these documents should be basically text formats
-- and the only filtering required should be character set conversion
-- (if needed)
-- For any given document, the skipFilter_Types list is first scanned
-- to determine if any regular expression in that list matches the
-- document's content type. If it does, then the document content is
-- not indexed.
-- Failing this, the NullFilter_Types list is then scanned. If any
-- regular expression in this list matches the document's content type,
-- the document is sent through character-set conversion
-- failing this, the document is filtered using the INSO filter (using the
-- IFILTER interfaces)
SkipFilter_Types varcharset := varcharset('image/%', 'audio/%', 'video/%',
                                          'model/%');
NullFilter_Types varcharset := varcharset('%text/plain', '%text/html',
                                          '%text/xml');
-- STOPWORD Settings
-- This list describes the set of stopwords over and above that
-- specified by the CTXSYS.DEFAULT_STOPLIST stoplist
StopWords        varcharset := varcharset('0','1','2','3','4','5','6',
                                          '7','8','9',
                                          'a','b','c','d','e','f','g','h','i',
                                          'j','k','l','m','n','o','p','q','r',
                                          's','t','u','v','w','x','y','z',
                                          'A','B','C','D','E','F','G','H','I',
                                          'J','K','L','M','N','O','P','Q','R',
                                          'S','T','U','V','W','X','Y','Z'
-- LEXER preferences
-- This parameter determines if multi-language lexers can be
-- used.
-- Not supported currently, and this parameter should always be FALSE
UseMultiLexer   BOOLEAN := false;
-- SECTION GROUP
-- This parameter determines the sectioner to use.
-- By default, this is an HTML section group. No zone sections have been
-- created - (ie) WITHIN searches are not possible
-- If the vast majority of documents are XML or XML-like, consider using
-- the AUTO_SECTION_GROUP or the PATH_SECTION_GROUP or even a
-- NULL_SECTION_GROUP
SectionGroup    VARCHAR2(100) := 'HTML_SECTION_GROUP';
-- PUBLIC INTERFACES
-- The public APIs exposed by this package
  -- This procedure drops all preferences required by the context index
  PROCEDURE dropPreferences;
  -- This procedure creates all preferences required by the context index
  -- on the XDB repository.
  -- The set of preferences include Datastore, Storage, Filter, Lexer,
  -- SectionGroup, Stoplist and Wordlist preferences
  -- NOTE: This will raise exceptions if any of the preferences already
  --       exist
  PROCEDURE createPreferences;
  -- Creates the datastore preference
  -- Will raise an exception if the datastore already exists
  PROCEDURE createDatastorePref;
  -- Creates the storage preferences
  -- Will raise an exception if the preference already exists
  PROCEDURE createStoragePref;
  -- Creates the section group
  -- Will raise an exception if the preference already exists
  PROCEDURE createSectiongroupPref;
  -- Creates the filter preference
  -- Will raise an exception if the preference already exists
  PROCEDURE createFilterPref;
  -- Creates the lexer preference
  -- Will raise an exception if the preference already exists
  PROCEDURE createLexerPref;
  -- Creates the stoplist
  -- Will raise an exception if the preference already exists
  PROCEDURE createStoplistPref;
  -- Creates the wordlist
  -- Will raise an exception if the preference already exists
  PROCEDURE createWordlistPref;
  -- Creates the index
  -- This requires the above preferences to have already been created.
  -- (a) The LOG_DIRECTORY parameter must be set (to enable
  --     rowid logging during index creation)
  -- (b) Ensure that the memory size specified to index creation is less than
  --     the MAX_INDEX_MEMORY parameter
  PROCEDURE createIndex;
  -- Syncs up the index
  -- This can be used to explicitly sync up the index.
  -- The preferred mechanism is to set up automatic sync'ing with
  -- the "configureAutoSync" procedure
  PROCEDURE syncIndex(myIndexName VARCHAR2 := Indexname,
                      myIndexMemory VARCHAR2 := IndexMemory);
  -- Set a suggested time limit on the SYNC operation, in minutes.
  -- SYNC_INDEX will process as many documents in the queue as possible
  -- within the time limit.
  -- The maxtime value of NULL is equivalent to CTX_DDL.MAXTIME_UNLIMITED.
  PROCEDURE setSyncTimeout(timeout IN INTEGER := NULL);
  -- Optimizes the index
  PROCEDURE optimizeIndex;
  -- Configures for automatic sync of the index
  -- NOTE: The system must be configured for job queues. Also, the
  --   number of job queue processes must be non-zero
  PROCEDURE configureAutoSync;
  -- Procedure used by dbms_job to automatically sync up the context
  -- index
  -- Don't use this directly
  PROCEDURE autoSyncJobByCount(myIndexName VARCHAR2, myMaxPendingCount NUMBER,
                               myIndexMemory VARCHAR2);
  -- Procedure used by dbms_job to automatically sync up the context
  -- index
  -- Don't use this directly
  PROCEDURE autoSyncJobByTime(myIndexName VARCHAR2, myIndexMemory VARCHAR2);
  -- The user-datastore procedure
  -- Do *not* call this directly
  PROCEDURE xdb_datastore_proc(rid IN ROWID, outlob IN OUT NOCOPY CLOB);
end dbms_xdbt;
show errors;
CREATE OR REPLACE PACKAGE BODY xdb.dbms_xdbt AS
-- CONFIGURATION SETTINGS
-- This section contains the default settings for the index. This
-- section should be changed as appropriate.
-- The following are the default values for the policy_filter
-- used to filter out HTML, from BLOB into CLOB.
-- 'Policy-based' procedures do not make use of the Ctx index.
etc
Rem
Rem Create the "real" user-datastore procedure
Rem Note: This is around only for backward compatibility. In 9iR2, the
Rem user-datastore procedure needed to be owned by CTXSYS. In 10i, it needs
Rem to be owned by the index owner. Changing the user-datastore-proc name
Rem may require a rebuild of the index - which we don't really want, and
Rem hence we create a procedure of the same name in XDB's schema
Rem
CREATE OR REPLACE PROCEDURE xdb.xdb_datastore_proc(rid IN ROWID,
                                                   outlob IN OUT NOCOPY CLOB)
  AUTHID CURRENT_USER IS
BEGIN
  xdb.dbms_xdbt.xdb_datastore_proc(rid, outlob);
END;
show errors;
Rem Remember to set these
Rem exec ctxsys.ctx_adm.set_parameter('MAX_INDEX_MEMORY', '128M');
Rem exec ctxsys.ctx_adm.set_parameter('LOG_DIRECTORY', '/tmp');
SQL>  exec ctxsys.ctx_adm.set_parameter('MAX_INDEX_MEMORY', '128M');
PL/SQL procedure successfully completed.
SQL> exec ctxsys.ctx_adm.set_parameter('LOG_DIRECTORY', '/tmp');
PL/SQL procedure successfully completed.
[oracle@marcoxdb ~]$ sqlplus xdb/xdb
SQL*Plus: Release 11.2.0.2.0 Production on Mon Nov 8 16:14:44 2010
Copyright (c) 1982, 2010, Oracle.  All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> CREATE INDEX xdb$resource_ctx_i ON XDB.XDB$RESOURCE(OBJECT_VALUE)
  INDEXTYPE IS CTXSYS.CONTEXT;
  2
Index created.
SQL>

Similar Messages

  • Spotlight ability to "browse" folders?

    Hello,
    I want to ask, if there is a possibility to browse folders in Spotlight, instead of opening them in the finder.
    For example: I search for a music band name and get the band folder in the iTunes library as a result. Now I would like to browse inside this folder, choose the right album folder, browse into it and open the mp3 file… without leaving Spotlight or switch to another program… like I did with LaunchBar in the past. With LaunchBar you could open the folder in the finder or browse it in LaunchBar, till you have the right file to open.
    Now I have to open the band folder, browse to the right mp3 file in the finder, open it and switch back to the program I was using before…

    For what ever reason this works now again. Think it was related to the full Time Machine Backup, that prevented finder windows to open.

  • YOSEMITE IS SLOW: How to browse folders quickly in Finder?

    Hi all, I've noticed my Mac Mini mid2011 is slow at browsing folders and files in Finder. How can I make this process snapier? I just switched to browsing via "list mode" instead of Cover Flow and this seems to have helped. What else can I do?
    Thanks!

    I don't understand you?    

  • NMH305 unable to browse folders DLNA apps

    Hello all
    Bit of a strange one.  Recently upgraded the firmware to 3.18.15.
    I use a couple of iphone apps to stream music from the hub, namely 8player and buzz player.  They always had an option to browse / play the hub content by folder ( as well as the usual album/artist etc ) , but the moment i did the firmware upgrade the folder option disappeared.  Nothing changed with the apps, developers say all is ok so the only thing that is different is the firmware upgrade.
    Any ideas why this should be the case, and is there any way to roll back to the old firmware? 
    Many thanks
    Iggy

    You can always revert the medihub’s firmware by the resetting the mediahub.Upgrading the mediahub’s firmware should not affect an app from accessing the mediahub’s content folder, since the mediahub is only a location to which the media files where saved. You can actually replicate this scenario by letting the app to browse the content folders of the media files saved on your computer though.

  • Delete some E90 browser folders?

    There are some folders in the browser links that I cannot delete such as: Download graphics, Download sounds, App. Downloads, Download themes. I tried to delete them via sync with IE and Firefox but that doesn't work either. How to get rid of these useless folders? Thanks.
    E90, E61

    Well...I have to scroll through them all the time when I am going to other folders that I use more often. I use the browser a lot.
    It just seems silly. There is nothing useful in those folders, anyway, so it should be easy to simply delete them.
    E90, E61

  • Iomega StorCenter ix2-200 version 2.1.48.30125 - can't browse folders

    Hi, I have a Iomega StorCenter ix2-200.  Everything is working fine, I can browse and access folders using windows explorer.  BUT, as soon as I added it to our domain, if I access it from explorer using \\192.168.3.15\ it will prompt me for a password, and no password is working....so I cannot see any folder. I would like it to work as any NAS do, meaning I would like to see the folders and then set permissions on them. I do not want it to prompt for a password.  What am I doing wrong?  thank you!

    Hello lorenzo_phse,
    Are there any local users stored on the NAS?
    Those credentials should work.
    Have you tried mapping one of the shares from a Domain machine?
    It might also be worthy to note here that the firmware version is fairly old and it is possible that there may just be a compatibility issue.
    Here is a link to the support page for the ix2-200:
    https://lenovo-na-en.custhelp.com/app/cust_alp/p/1031,1071

  • How to browse folders within the ZenV plus player?

    Is it possible to?play all songs in a particular?folder?with assorted songs without creating a playlist? I mean, when there are assorted songs in a folder, the sort by?albums/artists will?never display all?the songs together, you will have to create a playlist for that. Are there any updates around for that?

    It's possible to trick it into doing this; here's what to do....
    On your PC make the folder you want to have on the player, eg? reggae;
    Copy to the folder all the individual tracks you want to have in it, from wherever you have them saved on your PC;
    Use an MP3 tag editorto change all the album names in the tags to be the same as your folder name ('reggae' in my example).
    I use Zortam, it's very good but you have to pay for it; it has a bulk editor for tags.
    I'm not fussed about keeping the original album names on the MP3 player - prefer to keep track of folders.
    Copy the folder to your MP3 player.
    ?Voila, now you have an album in your player, with the same name as the folder in your PC.
    If you want to have the tracks play in a particular order, you would also need to edit the ID tag track numbers
    with your tag editor.
    Hope this helps you.

  • Quicktime crashing windows while browsing folders

    Recently, after the new update, windows started crashing anytime I accessed a folder. I can view and access folders for a few seconds before I get a message telling me windows needs to restart. I looked up the event viewer a while back and noticed it was qtcf.dll that was faulting. I tried upgrading to a new version of quicktime only to see that explorer.exe had taken qtcf.dll's place as the fault. I uninstalled quicktime a second time and got no errors, then reinstalled it to find it was in fact quicktime related. help?
    PS I have an itouch that matters in some way

    QTCF.dll comes from QuickTime installer and is a component of QT, and is User Data. I'm thinking because of that it could be admininistrator permissions?
    C:\Program Files\QuickTime\QTSystem\QTCF.dll might be worth taking a look at who owns the file, and possibly if the name of the computer has been changed

  • Browsing folders - folder closes unexpectedly

    Hi,
    I just recently bought my first MacBook and I love it.
    I have only one problem with it, and I'm not sure why this happens.
    Twice when I was looking through my folders using Finder, the Finder window automatically closed whenever I tried to open a specific folder. In the most recent case, I couldn't access 3 folders. Each time I clicked on the folder to go into it, Finder closed itself. I ended up deleting the folders that were giving me problems.
    I don't know if this has anything to do with it, but the folders were not created from Finder. I dragged the folders (with data and pictures files in them) off a USB drive onto my MacBook.
    Any ideas why this would happen? Thanks in advance!
    MacBook   Mac OS X (10.4.9)   2GHz Intel Core 2 Duo

    OK!
    I went to work and tried it out on my boss' computer, which is the only other Mac around and it happened as well. So you must be right Thanks!
    I was just really worried that it was a problem with my MacBook.
    The odd thing is that I tried looking at it on a PC and I could open the folder. It turns out one picture out of the 4 in that folder was corrupt/non-viewable. So that must have been giving it problems.
    Anyway, just wanted to explain in case anybody else has the same problem. Thanks for your help!

  • When saving a file I can't see a list of folders when I hit the "Browse Folders" button.

    I am using the latest version of Firefox on W7 64 bit.
    I tried reinstalling Firefox and it resolved the issue then shortly afterwards the problem popped up again. Reinstalling a 2nd time didn't fix the problem. Resetting Firefox didn't fix it either.

    That dialog is definitely broken. I'm struggling to think of what could have been fixed by one reinstall but not by another one.
    Occasionally dialog problems can be caused by corruption in the file that stores your toolbar customizations. You can rename the file and return to default toolbar settings to see whether that makes any difference.
    Open your current Firefox settings (AKA Firefox profile) folder using
    Help > Troubleshooting Information > "Show Folder" button
    Leaving that window open, switch back to Firefox and Exit (File menu > Exit or orange Firefox button > Exit)
    Pause while Firefox finishes its cleanup, then rename '''localstore.rdf''' to something like localstore.old
    Restart Firefox. Any improvement?

  • Windows 7 VERY slow browsing and creating folders

    Hi!
    I'm having a rather strange problem with Windows 7 RC.  I've noticed that browsing folders is generally slower than in WinXP, but still acceptable.  But lately I'm having a lot of difficulties moving files, creating folders, renaming folders and files, and even waiting for an Explorer window to refresh after some external app has created or modified a file.  Sometimes I have to wait up to 30 seconds for a new folder to be created, and another 10 or 15 after I rename it (from "New Folder" to whatever else).
    This does not happen in every folder in my HDD, but I don't know exactly in which ones.  I thought it was the indexed folders, so I removed a few from the Windows Indexing database, and they were still slow (after system reboot and all).  Then I thought it would probably happen in folders that are part of a library, so I removed them and the problem was still there.  I can't think of another reason for this to happen in some folders and not others.  It seems to happen in my frequently used folders, which honestly sucks.
    Just for the record, here's my system's specs:
    Dell Inspiron 9400 laptop (e1705), late 2006 model
    2GB DDR2 667 ram
    320 GB 7200 rpm seagate HDD, aftermarket (really fast drive, not the problem here)
    Intel Core Duo (Centrino Duo) 2.0GHZ
    Windows 7 RC, multiboot with WinXP
    Thanks!!!

    For the benefit of those who are being driven nuts with SLLOOOWWWW Explorer 'Problems', I list the methodology which has worked for me.
    As always, 'Use at Own Risk' and 'Your Mileage May Vary'.
    Do NOT repeat NOT perform these steps unless youfully understand the ramifications and are prepared to live with the consequences.
    BACKUP FIRST !!! - Create a RESTORE POINT!
    The latest incarnations of Windows attempt to 'out-think' the user in order to provide a 'Better Computing Experience', and that is well and good for the average Joe-Blow, but NOT what the Power-User wants or expects.  There are MANY suggestions as
    to the cause and solution(s) for slow Explorer response, but we have to remember just how much work is going on behind the scenes.
    Much of that work is to provide 'pretty' screen enhancements and to make for 'simpler' Searching.  By foregoing some of these we can reclaim quite a lot of CPU cycles and Disk I/O for our own (Applications) use.
    Before you embark on any changes, carefully assess just how you use your PC. - How important are Thumbnails? - What value does Content View really provide? - Can you implement a Folder structure and File-Naming convention which makes Snippets and Content
    indexing of little use?
    You'll still be able to see local thumbnails if that's what you want, they will just be remade each time you open the folder and select Thumbnail (Large Icon) View.  This is usually less bothersome than the time loss of having a 'Master' Thumbnail
    cache maintained and updated for every file operation.
    Certainly, some 3rd Party 'add-ons' (Power Archiver for one! & similar) may cause problems, as can poorly configured A/V programs (realtime checking of Notepad for instance, every time it is opened??? Why not bring back the old innoculate method?) -
    but I digress.
    For many, the slow Explorer problem exists without any of the suspects / causes mentioned in previous Posts, or elsewhere online.
    I repeat: 'This methodology has worked for me - Your Mileage May Vary'.
    Now for the fun & games:
    Kill the time and resource hog 'Indexing Services' - Plenty of advice on how to do that is available online.
    DISALLOW Indexing on all volumes.
    To retain the ability to search for my files, I have been using the Search Everything tool from:
    http://www.voidtools.com/ which searches ONLY on local or removable NTFS volumes. (ie NOT FAT32 USB Drives!)  But that poses very little problem when I examine my real-world use of any Search Tool.
    SE needs Administrator privileges for its low-level file-system access, certainly not an issue to have a responsive Global Search at your fingertips.
    With 34.5 Gb (> 137,000 files in > 20,000 folders) on HDD, and 627 Gb (> 2,300,000 files in > 82,500 folders) on a Portable USB Drive, Search Everything has about 74Kb RAM usage and the db file is 10.5 Mb on disk - not a huge overhead.
    The initial run occupied about 10 minutes of my setting options and less than 5 minutes for the building of the database.
    The online FAQ has plenty of information including how to use wildcards, Path Matching, boolean operators and regex use.
    With a lean mean responsive search at hand, now to clobber some more of the 'features' which are supposed to 'help' us in our computing experience...
    Big Guns Time!
    Start Group Policy Editor -
    Start > Run > gpedit.msc
    Navigate to:
    Local Computer Policy > Computer Configuration > Administrative Templates > Windows Components > Windows Explorer
    Locate and ENABLE the settings as listed:
    1. Turn off the display of thumbnails and only display icons on network folders
    Disables the display of thumbnails on network folders in Windows Explorer.
    Windows Explorer displays thumbnails on network folders by default.
    If you enable this policy. Windows Explorer will only display icons and never display thumbnails on network folders.
    That gets rid of the first time-waster - Network access is slow enough without adding the extra traffic for thumbnails, and many PCs are stand-alone anyway.
    2. Turn off the caching of thumbnails in hidden thumbs.db files.
    Turns off the caching of thumbnails in hidden thumbs.db files.
    This policy setting allows you to configure Windows Explorer to cache thumbnails of items residing in network folders in hidden thumbs.db files.
    If you enable this policy setting, Windows Explorer does not create, read from, or write to thumbs.db files.
    If you disable or do not configure this policy setting, Windows Explorer creates, reads from, and writes to thumbs.db files.
    This goes hand-in hand with 1.
    3. Turn off Windows Libraries features that rely on indexed file data
    This policy setting allows you to turn off Windows Libraries features that need indexed file metadata to function properly. If you enable this policy, some Windows Libraries features will be turned off to better handle included folders that have been
    redirected to non-indexed network locations. Setting this policy will:
    * Disable all Arrangement views except for "By Folder"
    * Disable all Search filter suggestions other than "Date Modified" and "Size"
    * Disable view of file content snippets in Content mode when search results are returned
    * Disable ability to stack in the Context menu and Column headers
    * Exclude Libraries from the scope of Start search
    This policy will not enable users to add unsupported locations to Libraries.
    If you enable this policy, Windows Libraries features that rely on indexed file data will be disabled.
    If you disable or do not configure this policy, all default Window Libraries features will be enabled.
    Well, with Indexing turned OFF, this one is a real no-brainer, isn't it?
    4. Turn off the display of snippets in Content view mode
    Disables the display of snippets when Content view mode is turned on.
    Windows Explorer shows snippets in Content view mode by default.
    If you enable this policy, Windows Explorer will not display snippets in Content view mode.
    That stops peeking into every file and trying to decode the snippet - MORE time-saving.
    5. Turn off caching of thumbnail pictures
    This setting controls whether the thumbnail views are cached.
    If you enable this setting, thumbnail views are not cached.
    If you disable or do not configure this setting, thumbnail views are cached.
    Note: For shared corporate workstations or computers where security is a top concern, you should enable this setting to turn off the thumbnail view cache, because the thumbnail cache can be read by everyone.
    It (IMHO) is faster to generate the thumbnails as needed (for my usage anyway), rather than to be attempting to maintain a global cache each time a file is created, modified, deleted or moved.
    This completely cuts out the thumbnail caching overheads, and makes quite an impressive speed difference.  Even on an old 1.7 GHz Laptop with 2 Gb RAM and an Intel 915GM Graphics Card (NOT the best choice for Win 7 by any means!).
    6. Turn off numerical sorting in Windows Explorer
    This policy setting allows you to have file names sorted literally (as in Windows 2000 and earlier) rather than in numerical order.
    If you enable this policy setting, Windows Explorer will sort file names by each digit in a file name (for example, 111 < 22 < 3).
    If you disable or do not configure this policy setting, Windows Explorer will sort file names by increasing number value (for example, 3 < 22 < 111).
    Do I REALLY want to waste the time on this procedure? If I want to sequence my files, I'll prefix the filenames with 0's - 003 < 022 < 111. Not a problem!
    Subjectively, these changes make for a much more responsive system.
    Objectively, moving over 2.3 Gb (7,500+ files) via 'Drag & Drop' from HDD to USB Drive shrank from 12 Mins+ to about 8 Mins. Explorer did NOT 'freeze', and I could freely change the displayed folders in both the Source and Target Explorer windows.
    I hope that this is of use to others, it has served me well for the last several months.
    A few minor delays when wanting thumbnail views, but certainly FAR LESS DELAY than before the changes, and
    no more stalled Explorer.
    2010: - Windows? - MAC OS X? - LINUX? - UBUNTU? - 1982: - Commodore C=64? - Amiga? - BBC Micro? - Apple II? - Same old play, only the actors have changed.

  • Problem viewing video-content folders in Adobe Bridge

    Hi there.
    I have problem browsing folders inside Adobe Bridge CS6. When I get into a folder that contains files that are not just images, Adobe Bridge would not responding and would have to be closed. With the folders contains only images I have no freezing issue and Adobe Bridge run very fast and normal. I usually store images and videos inside the same folder on my image-video albums. I am running windows 8.1 on my laptop computer. I have selected several files with diverse formats inside a test folder each time to check if the program is able to represent the folder or not. I choose a mp4 file inside an image album and it did not response. I replaced mp4 with a ts video file, a wma (audio) file and a docx file (Microsoft word) to see if Bridge can show the folder or not.  Only in case of Microsoft word file the program worked but with the mouse indicator twinkling. Is there any solution to the problem? Should I use a newer version of PS to overcome this drawback?
    Thanks for your attention.

    Even the latest versions of Photoshop do not support all types of video files, only some.
    Please note that these are user forums, you are not addressing Adobe here in the user forums.  You are requesting help from volunteers users just like you who give their time free of charge. No one has any obligation to answer your questions.
    A lot more information about your hardware and software is needed.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CC", but something like CC2014.v.2.2) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    a screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • After upgrading to ios7, i cannot see multiple mail folders on the mailboxes page

    On ios6, i could see all my accounts and browse folders of each account on my iphone. Why is this not visible on ios7?

    Hi, I think you will need to go to your Aol email page as you want it, then open Options (cog wheel) - in the 3-bar menu unless you've moved it, > General tab, and set 'Home Page' to Use Current Page. You may also want to set 'When Firefox starts' to Show my homepage.
    Hope that works for you.

  • Is there any way to browse a USB disk while booted from OSX install disk?

    My hard drive died on me the other day (the mac partition anyway) and I'm trying to use a data recovery program to get my data back. I have the application on my USB key, and I assumed I'd then be able to use the OS X installer disk to boot up and then run this program from the USB drive but the installer doesn't let me browse folders or quit... Is there any way to do this? I don't have another mac to firewire or anything so it's either this or order a recovery program on a bootable disk, which I really don't want to do as I need this done fast... Any suggestions?

    Your utility for data recovery usually should have come with a Mac bootable DVD with its own application on it. If it didn't, contact them for a disc that will boot your Mac with the utility on it. Your other option is to get a Firewire hard drive, partition it, and install the operating system there on one partition large enough for the operating system, while leaving the other partition large enough to recover the entire unbootable hard drive.
    Partitioning is described here, and will WIPE your entire hard drive:
    http://docs.info.apple.com/article.html?artnum=61301

  • Windows Explorer Refuses to Open Folders In Same Window

    I have Windows Vista Ultimate SP1. Under Organize->Folder and Search Options->Browse folders I have the radio button, "Open each folder in the same window" checked. However, Vista refuses to do so and opens each folder in its own window. This does not work well for me because I end up with tons of open windows and its a pain to close them. This behaviour just started. Yesterday it did not do this. This is a fresh install with only Visual Studio 2005, Visual Studio 2008, SQL Server 2005, Expression Studio 2, Adobe CS3 and InstallAware installed.
    Also worth noting is that if I right click on a folder, the default action of Open is in bold. If I click it then it will open the folder in the same window. However, every time I double click it opens a new window.
    Please help as I really don't want to have to switch to a third party file management tool over this.
    Thanks!

    Guys,
    This problem has been driving me nuts for weeks now. I've cruised this and several other forums, and tried every damn "fix" out there.
    WINDOWS 7 HOME PREMIUM (All updates applied)
    I've done registry edits, registered .dll files, changed folder option settings back and forth, uninstalled software, re-installed software,  etc, etc.. Ad nauseam. (I
    don't have IE8 or Source Gear Vault) Although both of these seem to come up often in these discussions. 
    I bumbled into something on one these forums, and    ** I FOUND THE SOLUTION!**
    It is very easy to do
    Presumably SAFE (It comes from Microsoft) 
    I suggest you bookmark this site for future use. (I did, and plan on using it for some of my clients computers
    when having weird problems)
    Go to this web site: http://support.microsoft.com/fixit/
    Then, in section 2 click on "Use desktop features, or open programs and files"
    In the window below will be a list of solutions. Simply "Run Now" the one called : Diagnose and repair Windows File and Folder Problems automatically 
    After running the "fixit" my problem of a new window opening all the time in Windows Explorer went away! Worked perfect!
    Ps.  In my Browser rather than running when I clicked "Run",  it downloaded the file. So I ran it locally. No big deal, they suggest doing that anyway if you need the file to run on a computer that is not online. When I ran the program I chose
    the second option, which is to NOT fix the problem automatically, but to see a list of repair options first. (rather than choosing to repair automatically)
    My results were two things:
    Rebuild my icon cache (didn't really have troubles with that anyway)
    Repair folder options
    I decided to let it "fix" both problems, even though I haven't had any problems with icons. After the program finished (about 20 sec) I checked and no longer had the problem of a new window opening in explorer, however the acid test was going to be will
    it continue to work properly after I re-boot. Guess what? PROBLEM WAS FINALLY SOLVED!
    Anyway, I hope this works for any of you guys too. I see that "some" of these other solutions worked for some of you, but none of them worked for me until I ran the "FIXIT" program from Microsoft. There is also a
    ton of other AUTOMATIC FIXIT's on the site for various other computer problems. I hope they all work as well as this one did! (I'll try to post this in some of the other forums, but feel free to do so yourself)
    Good luck everyone.....
    Mark

Maybe you are looking for

  • Finder issues when copying large amount of files to external drive

    When copying large amount of data over firewire 800, finder gives me an error that a file is in use and locks the drive up. I have to force eject. When I reopen the drive, there are a bunch of 0kb files sitting in the directory that did not get copie

  • Student Help advice! what is best iMac model for Final Cut Pro and logic pro

    Hi I am currently looking into getting a iMac, but is toggling to device if I need a 27inch or a 21inch(top model),which will be used for Final Cut Pro and logic There is a lot of money being invested iMac, and I really not want to be stu k with a co

  • Organization of the dirty buffers in the write list

    Hello, 1.) Where places the server process the dirty buffers in the write list, at the beginning or at the end? Dirty buffers would like to become a flag in the write list? Can anybody explain me the organisation of the WRITE LIST of the database buf

  • To Run Selected Code in Batch or Asynchronous

    Hi All, I have a part of code in my program, which doesn't have dependency on any other place in the program. I need to run this part asynchronously so that I get better throughput time. Is it possible using ABAP. If so please advice how to do it.  T

  • Is NI-DAQmx 7.3 compatible with XEON processor ?

    I tried to install NI-DAQmx 7.3 on my PC with a XEON 3 GHz processor. After reboot, Windows XP does not start properly. So I suspect DAQmx 7.3 being NOT compatible with XEON processor. Has someone the same problem ? Which solution ?