Large lists and indexing not working

I have a library with 7000 entries in it.  I have 5 custom fields in the library, 2 lookup, 2 choice, 1 multiline text.  I have indices on the choice and lookup fields as well as title and modified.
If I make a view and filter on doc type (indexed, choice) all is good. 
If I make a view and filter on Category (indexes, lookup) I get the displaying only the newest results warning because the results are too long.  If I make a view and filter on Category and Subcategory (both indexed and both lookup fields)
I get an exception (Exception from HRESULT: 0x80131904).
So, is there a limit to using lookups as an indexed field?  I've not seen that described anywhere but that is what this seems to be?  Any suggestions as to what is causing the exception?  Are the two things related?
Thanks

Hi Marcus,
Per my knowledge, we can use two indexed lookup columns to filter list view.
For troubleshooting this issue, I recommend to check the things below:
Use another indexed lookup column in the list view filter to see how it works.
To narrow down the issue, please save the list as a template, and then create a new list based on this template. Test with the same list view filter and then check the results.
Check ULS log for more detailed error message for further research.
Make sure that there are still enough free space for the SQL Server.
What operators did you use in the view filter?
Best regards,
Victoria Xia
TechNet Community Support
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
[email protected]

Similar Messages

  • Office 2010 Outlook Search and Indexing not working

    Hello,
    I'm hoping someone may be of assistance as this has been plaguing my outlook for some time now.
    Problem:
    When attempting to search for any emails via the search bar, it appears as if it is attempting to search, but I receive no results. 
    Windows 7 x64 Service Pack 1
    Office 2010 Service Pack 2
    Connected to Office 365 Exchange
    In services Windows Search service is not running, though Automatic (Delayed Start is selected), I attempted starting the service but it returned with an error saying it started and then stopped.
    In Outlook options > Search > Indexing Options > the service is shown as "Indexing is not Running" and the list of indexed folders is empty. Everything else is grayed
    out except "Advance Tab" which only has one button available called "Rebuild", everything else is grayed out.
    I am aware this question was asked a few years back but the linked articles referenced are no longer working.
    Though I seem to be having a similar problem and any assistance and new suggestions would be greatly appreciated!

    Hi,
    Please check if you can search mailbox in OWA. If OWA works well, the issue is related Outlook.
    If it is the same issue in OWA, in Exchange 2013, you can use the following command to check the content index state of the mailbox database where this user is.
    Get-MailboxDatabaseCopyStatus | fl name, contentindex*
    If the content index status is Failed, please try to reseed the search catalog. After that, please rebuild the index in Outlook to check the result.
    If you are using Office 365, I recommend you ask this question in Office 365 forum which is staffed by more experts specializing in this kind of this problem. You might get a better answer there.
    http://community.office365.com/en-us/forums/default.aspx
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Itunes 10.6.1.7 I have 2 sets of playlists the first set displays greyed out lists and does not work The second set is fine. How do I get rid of the non working set of playlists?

    I have 2 sets of playlists in the sidebar of itunes. I have recently upgraded to 10.6.1.7 but this condition remains the same
    The top list refers to greyed out listings and does not function
    The list below works fine
    How do I get rid of the "false" list?

    I think the greyed out playlists must be listed from your device which is set up to mirror your library. Because the device is synced you can't edit content directly on the device. From the top of the left-hand column do you have?
    Library > Music, Movies...
    Store > iTunes Store, iTunes Match...
    Devices > <Your Device> > Music, Movies, and all the other "dummy" lists...
    Genius > Genius, Genius Mixes...
    Playlists > iTunes DJ, and then all your playlist folders and playlists...
    If so then that is perfectly normal when your device is connected, either directly or over wi-fi and you have the lists expanded. Simply click the small triangle to the left of the device name to hide all the playlists.
    tt2

  • Field list on/off drag and drop not working in smartforms

    Hello Friends,
    field list on/off drag and drop not working in smartforms.
    is there any settings or some components needs to be activated ??
    i can drag the fields from the list but when i drop in the text node its not dropping tht field.
    Regards,
    Sunny

    Hi Friends,
    Even I am facing the same problems. What is the solutions for this ?
    And may I know what software version (sap gui) are you using.

  • Parallel hint as part of index not working

    Hello,
    I think that I am misusing the parallel hint on this one, and would appreciate some guidance. I have an insert statement as such:
    INSERT INTO TABLE1
    SELECT column1, column2
    FROM table2;
    I modified the query so that it has a parallel:
    SELECT /*+ FULL(table2) PARALLEL(table2, 4) */
    column1, column2
    FROM table2;
    This parallel helps with the query's speed. However, when I use it with the insert statement on the top, it does not insert any record, nor does it give an error message:
    INSERT INTO TABLE1
    SELECT /*+ FULL(table2) PARALLEL(table2, 4) */
    column1, column2
    FROM table2;
    I put EXECUTE IMMEDIATE 'ALTER SESSION ENABLE PARALLEL DML'; at the beginning of the procedure, but that did not help.
    I really need the parallel to be in the SELECT statement, that statement runs for about 3 hours without a parallel (due to large amounts of data - no problems with query itself), however it returns only about 10,000 records, and I don't need to insert those with a parallel hint.
    Edited by: user577453 on Mar 17, 2009 12:25 PM -- Added last paragraph.

    user577453 wrote:
    I think that I am misusing the parallel hint on this one, and would appreciate some guidance. I have an insert statement as such:
    I put EXECUTE IMMEDIATE 'ALTER SESSION ENABLE PARALLEL DML'; at the beginning of the procedure, but that did not help.
    I really need the parallel to be in the SELECT statement, that statement runs for about 3 hours without a parallel (due to large amounts of data - no problems with query itself), however it returns only about 10,000 records, and I don't need to insert those with a parallel hint.First of all, your subject is probably supposed to be "Parallel hint as part of *insert* not working" rather than "Parallel hint as part of *index* not working", am I right?
    Can you show us the EXPLAIN PLAN output you get for your query and the one you get for your INSERT when using the parallel hints as posted?
    Please mention your database version (4-digits, e.g. 10.2.0.3).
    Please use DBMS_XPLAN.DISPLAY to format the EXPLAIN PLAN output if you're already on 9i or later, and please use the \ tag before and after the DISPLAY output to format it in fixed font for readability.
    What seems to be odd that you say that the result of the query seems to be different when using it as part of the INSERT statement? Are you sure that running the query standalone returns data whereas using exactly the same query in the INSERT statement inserts no records? This would be buggy behaviour.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Why bitmap index not working?

    I have a table containing 4.2M rows and 16 distinct fs_type_code. So I created a bitmap index ntr_fs_type_code_ind on the column. Then I run the query:
    update /*+ INDEX_COMBINE(NTR_FS_TYPE_CODE_IND) */ ntr_CORPALL_20050801 d
    set eqt_basket_id = NULL, index_weight = NULL
    where
    fs_type_code in ('EQGR','EQVG','EQDL')
    and eqt_basket_id = equity_symbol
    and index_weight = 0;
    I clearly tell optimizer to use the bitmap index. But it turns out the optimizer ignore the index and still use full table scan.
    When I created regular b-tree index, the same query (without hint) use index scan.
    Can anybody tell me why the bitmap index not working here?
    Thanks,

    <quote>I clearly tell optimizer to use the bitmap index</quote>
    You are clearly not doing it right (see bellow). But anyway …
    1. For frequently modified tables (OLTP type application) you may want to rethink the applicability of bitmap indexes …
    low cardinality in itself is not enough justification for using bitmap indexes.
    2. Your update statement may modify a minority, a majority, or anything in between of the total number of
    rows in your table … here is no one universal access method which is always better
    (if there were one they wouldn’t have bothered with coding the rest).
    In short, index access is not always the better way.
    3. Don’t rush into hinting (because that optimizer is such a lousy piece of software) …
    and if you do, make sure you do it correctly and for the right reasons.
    flip@FLOP> create table t as select * from all_objects;
    Table created.
    flip@FLOP> insert into t select * from t;
    30043 rows created.
    flip@FLOP> insert into t select * from t;
    60086 rows created.
    flip@FLOP> insert into t select * from t;
    120172 rows created.
    flip@FLOP> insert into t select * from t;
    240344 rows created.
    flip@FLOP> create bitmap index tx on t (object_type);
    Index created.
    flip@FLOP> exec dbms_stats.gather_table_stats(user,'T',method_opt=>'for all indexed columns',cascade=>true)
    PL/SQL procedure successfully completed.
    flip@FLOP> select object_type,count(*) from t group by rollup(object_type);
    OBJECT_TYPE          COUNT(*)
    CONSUMER GROUP             32
    DIRECTORY                  32
    EVALUATION CONTEXT         16
    FUNCTION                 1648
    INDEX                   23152
    INDEX PARTITION          2048
    INDEXTYPE                 128
    JAVA CLASS             163024
    JAVA RESOURCE            3120
    LIBRARY                   224
    LOB                        16
    MATERIALIZED VIEW          32
    OPERATOR                  464
    PACKAGE                  5488
    PACKAGE BODY               32
    PROCEDURE                 640
    SEQUENCE                  144
    SYNONYM                202512
    TABLE                   18816
    TABLE PARTITION           880
    TRIGGER                  4768
    TYPE                    10640
    TYPE BODY                  16
    VIEW                    42816
                           480688
    flip@FLOP> set autotrace on explain
    update few rows … CBO goes with the index … no hinting
    flip@FLOP> update t d set object_id=object_id-1 where object_type in ('INDEX','PACKAGE','PACKAGE BODY','TABLE');
    47488 rows updated.
    Elapsed: 00:00:09.02
    Execution Plan
       0      UPDATE STATEMENT Optimizer=CHOOSE (Cost=536 Card=47488 Bytes
              =1044736)
       1    0   UPDATE OF 'T'
       2    1     INLIST ITERATOR
       3    2       BITMAP CONVERSION (TO ROWIDS)
       4    3         BITMAP INDEX (SINGLE VALUE) OF 'TX'
    update lots of rows … CBO goes with the ft … no hinting
    flip@FLOP> update t d set object_id=object_id-1 where object_type in ('JAVA CLASS','SYNONYM');
    365536 rows updated.
    Elapsed: 00:00:25.04
    Execution Plan
       0      UPDATE STATEMENT Optimizer=CHOOSE (Cost=638 Card=365536 Byte
              s=8041792)
       1    0   UPDATE OF 'T'
       2    1     TABLE ACCESS (FULL) OF 'T' (Cost=638 Card=365536 Bytes=8
              041792)
    update lots of rows … wrong hint syntax … CBO goes with the ft
    flip@FLOP> update /*+ index_combine(tx) */ t d set object_id=object_id-1 where object_type in ('JAVA CLASS','SYNONYM');
    365536 rows updated.
    Elapsed: 00:00:21.00
    Execution Plan
       0      UPDATE STATEMENT Optimizer=CHOOSE (Cost=638 Card=365536 Byte
              s=8041792)
       1    0   UPDATE OF 'T'
       2    1     TABLE ACCESS (FULL) OF 'T' (Cost=638 Card=365536 Bytes=8
              041792)
    update lots of rows … correct hint syntax … CBO goes with the index … but was it better than the ft?
    flip@FLOP> update /*+ index_combine(d tx) */ t d set object_id=object_id-1 where object_type in ('JAVA CLASS','SYNONYM')
    365536 rows updated.
    Elapsed: 00:00:25.01
    Execution Plan
       0      UPDATE STATEMENT Optimizer=CHOOSE (Cost=1665 Card=365536 Byt
              es=8041792)
       1    0   UPDATE OF 'T'
       2    1     INLIST ITERATOR
       3    2       BITMAP CONVERSION (TO ROWIDS)
       4    3         BITMAP INDEX (SINGLE VALUE) OF 'TX'
    flip@FLOP>

  • Ultraslim wireless keyboard and mouse not working

    Hi ,  I purchased the Lenovo Ultraslim Wireless Keyboard & Mouse (pn: 57Y4700) about 4 months ago for use with my T60 laptop (which i use with a docking station and large lenovo monitor at work).
    Everything was woking fine until last Monday when I can into work after the weekend and neither the mouse or keyboard worked. I replaced the batteries in both, rebooted the machine several time, switch the USB ports for the nano receiver, but nothing seems to have worked.
    I looked online for troubleshooting options, but did not find anything.
    The mouse and keyboard don't seem to have a "sych" button - if I recall correctly everything worked right out of the box.
    My theory is that the nano reciever was damaged (not sure how) -- but don't know how to proceed:
    can the nano reciever be replaced;
    any other options to troubleshoot;
    any chance that this could be a software problem
    Thanks

    Hi coffee12345,
    Welcome to the HP Forums!
    I have read your post on your wireless keyboard and mouse not working with your desktop, and I would be happy to help you! To begin, I need to ask you a few introductory questions:
    What is the Product and Model Number of your desktop?
    What version of Windows are you using?
    Is this a recent issue, or has it been like this since day one?
    Are you using a USB hub to connect your peripherals or is it directly plugged into the computer?
    Please re-post with the necessary information, and I look forward to your reply!
    Regards
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

  • Microphone and Webcam not working/We​bcam not recognized by YouCam

    Hello,
          I have a dv7-6c95dx and my YouCam  program tells me that it does not recognize my integrated webcam. I have read all of the webcam forums on this site and clicked on all of the links people have posted in the forums. I have uninstalled the CyberLink YouCam program and it still comes up with the same messages. The webcam also does not show up in my device manager. The microphone is malfunction as well, it will not work any any programs including skype. 
         I have heard that the webcam can come unplugged internally, will that also cause the microphone to stop working? I have run out of options and I do not want to pay anyone to fix it. I would appreciate any advice on this subject. 

    Hi DillOrNoDill,
    Thank you for visiting the HP Support Forums and Welcome. I have read your thread on your HP Pavilion dv7-6c95dx Notebook and sound and microphone issues and Webcam not working correctly. I would be happy to assist if needed. Try these steps first.
    1. Right click speaker icon (right hand corner)
    2. Select Playback devices
    3. Right click Speakers
    4. Enable it and set as Default
    5. Click Apply/Ok
    You could also try Microsoft troubleshooter located on your Notebook.
    Here is a document on WebCam troubleshooting. The Webcam will be listed in your device manager under Imaging devices. You should be able to click the action button and scan for new hardware.
    Hope this helps.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Wireless network and bluetooth not working on touchsmart 600

    This has not worked since day 1 and I have been using wired internet.
    I really need to setup a home network and need to use wireless.
    Research on the net has led me to belive I should have HP WIRELESS ASSISTANT on my machine... is that correct?
    Everytime I try to download it is seem to be for a notepad... mine is a touchsmart desktop...
    Please advise  

    Hi coffee12345,
    Welcome to the HP Forums!
    I have read your post on your wireless keyboard and mouse not working with your desktop, and I would be happy to help you! To begin, I need to ask you a few introductory questions:
    What is the Product and Model Number of your desktop?
    What version of Windows are you using?
    Is this a recent issue, or has it been like this since day one?
    Are you using a USB hub to connect your peripherals or is it directly plugged into the computer?
    Please re-post with the necessary information, and I look forward to your reply!
    Regards
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

  • My Ipod touch 4th generation is not working, its frozen, ive tried everything and its not working, its just frozen on an app and i really really need HELP!!!

    My Ipod is frozen!!! Its a 4th generation and its frozen on an app, Ive tried everything like holding down the lock screen and stuff and its not showing the red thing to slid to shut it down....This is my only thing to use to contact my friends and its not working, i dont have a phone and i cant get one, so this is the onlything i have.....PLEASE HELP!!!

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • How can I get my itunes onto my new laptop? Do I need to download itunes again or can I just copy it? My ipod classic has since been soaked in water and does not work so I cannot copy from there. Can anyone help?

    How can I get my itunes onto my new laptop? Do I need to download itunes again or can I just copy it? My ipod classic has since been soaked in water and does not work so I cannot copy from there. Can anyone help?

    You should copy everything from your old comptuer to your new one.

  • Keyboard and Trackpad Not Working; Mac OSX Unexpectedly Quit?

    Hey everyone... I think I may need to stop by the Apple store to figure this one out, but I just wanted to make sure if there was anything I could do on my own first.
    So basically, on my MacBook Pro that I got nearly two years ago (late September of 2006) for the past month and a half has had problems. In the beginning, the mouse and keyboard would freeze up and just not work. Restarting the comp did nothing. Some times were worse than others (once it was frozen for 1.5 hours). Then it stopped, every now and then having a few freezes (sometimes when the keyboard froze but the trackpad was still good), but two days ago I had my comp not hooked up to an adapter. When the battery got low, the comp froze. I went to bed and closed the laptop, and the next day it was still frozen. I unfroze it, but then it happened again (I'm pretty sure the same situation... almost no battery)... and it is still frozen, even after multiple restarts.
    Also, during the time when freezes weren't as bad, sometimes the keyboard would get stuck on one key, usually the volume up button (very annoying)... then I was told to restart the comp. When I came back, I was told that Mac OS X had unexpectedly quit.
    Sorry that was a lot to read, but any help is really appreciated! Thanks!
    Not sure if this is also important, but I did spill some water on the keyboard a very long time ago (late December '06)... it wouldn't take this long for that to cause the problem, would it?

    Does booting up in [Safe Mode|http://support.apple.com/kb/HT1455?viewlocale=en_US] help at all? This boot mode checks the disk on startup and disables non-apple start up items and certain kernel extensions.
    Steve

  • While updating my ipad to new software through itunes it got stuck and does not work anymore - it just displays the screen with symbols of itunes and the cable to connect to it - help - what should i do?

    while updating my ipad to new software through itunes it got stuck and does not work anymore - it just displays the screen with symbols of itunes and the cable to connect to it - help - what should i do?

    Disconnect the iPad, do a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. The screen will go blank and then power ON again in the normal way.] It is 'appsolutely' safe!, reconnect and follow the prompts.
    If that does not work then see here http://support.apple.com/kb/HT1808

  • Hi i have a ipod touch 4 generation 64gb and my camera is blocked and dose not work i cant update the ipod either

    hi i have a ipod touch 4 generation 64gb and my camera is blocked and dose not work i cant update the ipod either

    Try:
    - Reset the iOS device. Nothing will be lost       
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                                     
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar

  • Since I downloaded the upgraded software, my charger that came with my phone says "this cable or accessory is not certified and may not work reliably with this iphone"  It worked before but now it doesn't...I don't think I should have to buy a new one...

    since I upgraded to the new operating system my charger no longer works...
    It says"this cable or accessory is not certified and may not work reliably with this iPhone"

    Try checking your cable socket/lightning cable for dirt, grime, pocket lint, etc. I could not find the solution to this issue myself and after much searching I found someone stating that cleaning this out helped them immensely.
    After taking a wooden toothpick (making sure the phone was OFF first) and gently clearing out the edges and inside of the lightning socket this went away.) It is worth noting that I had a significant amount of dust or lint buildup along the edge rails which I think was causing the iphone to believe it was plugged into something when it was not.
    Try it and see, ensure you are very careful and do not use any conductive tools to clean the area in question. Compressed air also does wonders here.

Maybe you are looking for