Model stopclass bug or limitation?

Hello

I tried to use the new class of model stop in Oracle12c but continues to have problems with it.

I am trying to exclude indexing of numbers "decimal places" so I created this stopclass based on regular expressions:

ctx_ddl.create_stoplist exec ('DOC_STOPLIST', 'BASIC_STOPLIST');

exec ctx_ddl.add_stopclass ('DOC_STOPLIST', 'decimalnum', ' [[: digit:]] {1,} [-,-.] * [[: digit:]] {1,} "");

My index is created as follows:

CREATE INDEX TEMP_TEXT02 ON TEMP2 (FILEPATH)

INDEXTYPE IS CTXSYS. FRAMEWORK

PARAMETERS ("DATASTORE ctxsys.file_datastore

LIST OF WORDS EMPTY DOC_STOPLIST

SYNC (ON COMMIT)');

This method works for small files (decimal numbers are not indexed) but failed for large files (decimal numbers have been indexed!).

What is a class of model of stop bug or a limitation?  There is no work around for this?

I have attached my sample file - a small works; While the big one is not.

Any help is very appreciated.

Thank you!

It looks like a bug. If the file is no longer 16K size the regexp does not work correctly.

See my attached unit test.  With a length of file of 16380 that I only get the word 'blah' indexed. With a length of 16386 file I get "blah" and "1.23" indexed.

You can connect this bug yourself thanks to the support, or I can connect it. Customer bugs have tend to get looked at more quickly than those that I connect.

Roger

Tags: Database

Similar Questions

  • Subract bug or limitation

    I have two values with exactly 1 unit difference, e.g. (X + 1 and X + 2), when I subtracted another number (Y) other results aren't exactly 1 unit of differece ((X + 2-Y) and (X + 1 - Y) isn't exactly a 1 unit difference), there are a few changes in some decimal numbers. In the attached VI number 18 after, is different. All controls/indicators have the same representation/precision. It seams to Yves that when I add 1. (and if the an either subtract the result is 1)

    Can someone explain the reason why this case?

    Very strange...

    See attached example

    Please see discussion of Greg McKaskle to epsilon for an explanation of what you see.

    Ben

  • Foreign key constraint, not recognized during the synchronization of data with the model dictionary

    Hello

    Data Modeler is a foreign key constraints do not recognize when synchronizing data with the model dictionary, although the foreign key is there (in the database that a data dictionary is read). I can't find any criterion when a foreign key is not recognized by the Data Modeler. Are there limits to the length of the attribute, or the number of columns in a foreign key, or other limitations which may lead to this behavior not to recognize a fk by Data Modeler? I have columns more than 32 characters. I compared with the fk is recognized by DM, but I can't find anything that indicates why it is not recognized.

    I wonder if someone also has constraints of foreign keys that are not recognized in the comparison of data bases and model?

    Thank you

    Robert

    Hi Robert,.

    Thanks for the comments, I logged a bug.

    Philippe

  • Unable to apply the model of WLAN to the controller through WCS

    Unable to apply the model of WLAN to the controller through WCS

    1 update your config all of your controllers of WCS. Go to configure---> controllers--> select all controllers.
    2. in the drop-down "Select", choose "refresh the configuration from the controller and select 'Go'."
    3. choose Delete therefore WCS will take the last setting of the WLC and select 'go '.
    4. remove the WCS WLC.
    5. Add WLC to WCS.
    6 try to set up the model again.

    Also, you can upgrade to 6.0.170 as there are to many model feature bugs that have been fixed in this version.

    http://www.Cisco.com/en/us/docs/wireless/WCS/release/notes/WCS_RN6_0_170.html#wp44440

    -nael

  • not an expression GROUP BY - bug in Oracle 10 g?

    Hello
    I'm 00979. 00000 - "not a GROUP BY expression" error on Oracle 10g 10.2.0.4.0 - Production 64-bit.

    To illustrate my problem, I have created following the example.
    Think I have a shop with clothes. Whenever I sell something, I store this information in the database - storage in real time, type of clothing (pants, socks,...) and the size of the room (M, L, XL,...).
    Now, the system account statistics every hour. So he's going thru the table with parts sold and counts the number of pieces by clothing type and size from the start of the day. It is important to realize that it is since the beginning of the day. For this reason, the number of pieces sold in the statistical table grows every hour (or is at least on the same value as in the previous hour).

    Now, this table, I need to make new statistics. I want a statistic how many pieces by size, I sold every hour.
    I created this application for this:
    SELECT TIME, xSIZE, (SOLD  - NVL((SELECT SUM(S1.SOLD)
                                      FROM STATISTICS S1
                                      WHERE S1.xSIZE = S.xSIZE
                                        AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
                                        AND TO_CHAR(S1.TIME, 'HH24') != '23'
                                        AND S1.xSIZE IS NOT NULL
                                      GROUP BY TRUNC(S1.TIME, 'HH24'), S1.xSIZE),0)) SOLD
    FROM(
    
    
    SELECT TRUNC(S.TIME, 'HH24') TIME, S.xSIZE, SUM(S.SOLD) SOLD
    FROM STATISTICS S
    WHERE S.xSIZE IS NOT NULL
    GROUP BY TRUNC(S.TIME, 'HH24'), S.xSIZE
    --ORDER BY 1 DESC
    ) S
    ORDER BY TIME DESC, xSIZE ASC
    First I select the number of pieces sold by time and by size. To get the number of pieces sold for specific time, I need to subtract the value of number of pieces sold of the previous hour. I decided to do it with a parameter query.
    Runs the query like this I don't get "a GROUP BY expression" error. However, if I Uncomment 'ORDER BY DESC of 1' statement, the query works. I'm sure that he must do something with this line:
    AND TRUNC (S1. TIME, 'HH24') + 1/24 = S.TIME

    If you change the query like this:
    SELECT TIME, xSIZE, (SOLD  - NVL((SELECT SUM(S1.SOLD)
                                      FROM STATISTICS S1
                                      WHERE S1.xSIZE = S.xSIZE
                                        --AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
                                        AND TO_CHAR(S1.TIME, 'HH24') != '23'
                                        AND S1.xSIZE IS NOT NULL
                                      GROUP BY  S1.xSIZE),0)) SOLD
    FROM(
    
    SELECT TRUNC(S.TIME, 'HH24') TIME, S.xSIZE, SUM(S.SOLD) SOLD
    FROM STATISTICS S
    WHERE S.xSIZE IS NOT NULL
    GROUP BY TRUNC(S.TIME, 'HH24'), S.xSIZE
    --ORDER BY 1 DESC
    ) S
    ORDER BY TIME DESC, xSIZE ASC
    Join the removed occasionally truncated tables and grouping truncated at the time--> the query does not lack...
    And now the best... If you run the first query on Oracle 11 g (11.1.0.6.0 - 64 bit Production version), it works.
    Anyone know why the first query does not work on 10g? Are there bugs and limitations for this version of server?
    Please don't tell me to rewrite the query in a different way, I already did, to make it work on 10g more. I'm just curious as to why it does not work on 10g.

    Finally, here are some data for the test.
    CREATE TABLE STATISTICS(
      TIME DATE DEFAULT SYSDATE,
      TYPE VARCHAR2(20),
      xSIZE VARCHAR2(2),
      SOLD NUMBER(5,0) DEFAULT 0
    )
    
    
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'T-Shirt', 'M', 10);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Socks', 'M', 3);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'T-Shirt', 'L', 1);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Socks', 'L', 50);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Trousers', 'XL', 7);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Socks', 'XL', 3);
    
    
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'T-Shirt', 'M', 13);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'Socks', 'L', 60);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'Trousers', 'XL', 15);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'Socks', 'XL', 6);
    Edited by: user12047225 the 20.9.2011 23:12

    Edited by: user12047225 the 20.9.2011 23:45

    This is a known issue when the optimizer decides to expand the online display. You can add something (outside of ORDER BY you already used) in online mode to prevent the optimizer from its expansion. For example:

    SQL> SELECT  TIME,
      2          xSIZE,
      3          (SOLD - NVL(
      4                      (
      5                       SELECT  SUM(S1.SOLD)
      6                         FROM  STATISTICS S1
      7                         WHERE S1.xSIZE = S.xSIZE
      8                           AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
      9                           AND TO_CHAR(S1.TIME, 'HH24') != '23'
     10                           AND S1.xSIZE IS NOT NULL
     11                           GROUP BY TRUNC(S1.TIME, 'HH24'),
     12                                    S1.xSIZE
     13                      ),
     14                      0
     15                     )
     16          ) SOLD
     17    FROM  (
     18           SELECT  TRUNC(S.TIME, 'HH24') TIME,
     19                   S.xSIZE,
     20                   SUM(S.SOLD) SOLD
     21             FROM  STATISTICS S
     22             WHERE S.xSIZE IS NOT NULL
     23             GROUP BY TRUNC(S.TIME, 'HH24'),
     24                      S.xSIZE
     25           --ORDER BY 1 DESC
     26          ) S
     27    ORDER BY TIME DESC,
     28             xSIZE ASC
     29  /
             SELECT  TRUNC(S.TIME, 'HH24') TIME,
                           *
    ERROR at line 18:
    ORA-00979: not a GROUP BY expression
    
    SQL> SELECT  TIME,
      2          xSIZE,
      3          (SOLD - NVL(
      4                      (
      5                       SELECT  SUM(S1.SOLD)
      6                         FROM  STATISTICS S1
      7                         WHERE S1.xSIZE = S.xSIZE
      8                           AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
      9                           AND TO_CHAR(S1.TIME, 'HH24') != '23'
     10                           AND S1.xSIZE IS NOT NULL
     11                           GROUP BY TRUNC(S1.TIME, 'HH24'),
     12                                    S1.xSIZE
     13                      ),
     14                      0
     15                     )
     16          ) SOLD
     17    FROM  (
     18           SELECT  TRUNC(S.TIME, 'HH24') TIME,
     19                   S.xSIZE,
     20                   SUM(S.SOLD) SOLD,
     21                   ROW_NUMBER() OVER(ORDER BY SUM(S.SOLD)) RN
     22             FROM  STATISTICS S
     23             WHERE S.xSIZE IS NOT NULL
     24             GROUP BY TRUNC(S.TIME, 'HH24'),
     25                      S.xSIZE
     26           --ORDER BY 1 DESC
     27          ) S
     28    ORDER BY TIME DESC,
     29             xSIZE ASC
     30  /
    
    TIME      XS       SOLD
    --------- -- ----------
    20-SEP-11 L           9
    20-SEP-11 M           0
    20-SEP-11 XL         11
    20-SEP-11 L          51
    20-SEP-11 M          13
    20-SEP-11 XL         10
    
    6 rows selected.
    
    SQL> 
    

    Or use the subquery factoring (WITH clause) + undocumented hint of MATERIALIZATION:

    SQL> WITH S AS (
      2             SELECT  /*+ MATERIALIZE */ TRUNC(S.TIME, 'HH24') TIME,
      3                     S.xSIZE,
      4                     SUM(S.SOLD) SOLD
      5               FROM  STATISTICS S
      6               WHERE S.xSIZE IS NOT NULL
      7               GROUP BY TRUNC(S.TIME, 'HH24'),
      8                        S.xSIZE
      9             --ORDER BY 1 DESC
     10            )
     11  SELECT  TIME,
     12          xSIZE,
     13          (SOLD - NVL(
     14                      (
     15                       SELECT  SUM(S1.SOLD)
     16                         FROM  STATISTICS S1
     17                         WHERE S1.xSIZE = S.xSIZE
     18                           AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
     19                           AND TO_CHAR(S1.TIME, 'HH24') != '23'
     20                           AND S1.xSIZE IS NOT NULL
     21                           GROUP BY TRUNC(S1.TIME, 'HH24'),
     22                                    S1.xSIZE
     23                      ),
     24                      0
     25                     )
     26          ) SOLD
     27    FROM  S
     28    ORDER BY TIME DESC,
     29             xSIZE ASC
     30  /
    
    TIME      XS       SOLD
    --------- -- ----------
    20-SEP-11 L           9
    20-SEP-11 M           0
    20-SEP-11 XL         11
    20-SEP-11 L          51
    20-SEP-11 M          13
    20-SEP-11 XL         10
    
    6 rows selected.
    
    SQL> 
    

    SY.

  • Bug in the sorting matrix?

    Here is my code:

    for (var pNum:int = 0; pNum < = 144; pNum ++) {}
    var itemCount:Number = this [("P" + pNum)] .length;
    var left: Number = 58;
    . source.sortOn this [("P" + PNUM)] ("height", Array.DESCENDING);
    for (var theArray:int = 0; theArray < this [("P" + pNum)] .length; theArray ++) {}
    }

    If I have two items in my table, at height of 200 and the other to the tune of 80. The kind puts 80 to 200. If my point of heights are 80 and 40, it sorts correctly and put the 80 in front of the 40. If my point of heights are 140 and 100, then it sorts wrong, put 100 to 140. The sorting only works for numbers less than 100. Is it a bug, a limitation, or I do something wrong?

    Well, first of all looking at this block of code, I'd say that you might benefit from a bit of refactoring to simplify everything you do.

    for (var pNum:int = 0; pNum<= 144="" ;="">

    sortByHeight (pNum);
    }

    private void sortByHeight(index:int):void {}

    var itemCount:Number = this [index] .length;
    var left: Number = 58;
    Cette.source.sortOn [index] ("height", Array.DESCENDING);

    for (var theArray:int = 0; theArray< this[index].length="" ;="">
    }
    }

    You will maybe just do this instead of just "Array.DESCENDING", looks like it is sort your numbers as ASCII characters or something:

    Array.DESCENDING | Array.NUMERIC

  • Firefox 4 beta replace 3.6.9 or or them both still available?

    I want to try FF 4 beta but not if my work 3.6.9 version is replaced. What happens to the old installation when the beta is installed?

    Given that many people will ask on this issue, this issue should be addressed on the beta version download page and don't need to be asked.

    Firefox 4.0 beta versions are released for testing purposes and are disclosed unfinished with known bugs and limitations.

    You should not rely on them and always keep a regular release to use in case of problems.

    You should only use these test versions if you are experienced enough to deal with the issues.

    The beta version should install in a separate Directory and you must also create a new profile for this version avoid the alteration of the profile Firefox 3.6.x.

    See:

    http://kb.mozillazine.org/Profile_Manager
    http://kb.mozillazine.org/Testing_pre-release_versions
    

    You can also watch the daily discussions and other related topics as D2D in the forum MozillaZine Firefox Builds to follow the development of version 4.0.

    Firefox MozillaZine forum builds: http://forums.mozillazine.org/viewforum.php?f=23

  • a4311f

    I have the HP Pavilion a4311f desktop computer.  I want to upgrade the video card so I can add an additional monitor to my work of domestic work.  Not a gamer.  But I lead a course at home and need an additional monitor.

    What would be the best video card upgrade? (Not a Gamer) just add the 2nd monitor

    What would be the best diet to upgrade?

    Simple answers, just savy nor tech would be appreciated.  If we can not do, I would appreciate knowing that, as well.

    I tried once before and I hope I can get a clearer answer.

    Thanks in advance for your help.

    HP Pavilion a4311f desktop computer (Bookmark this page of support)
    http://h10025.www1.HP.com/ewfrf/wc/product?product=4124965 & CC = US & DLC = in & LC =

    Pavilion a4311f product specification Page
    http://support.HP.com/us-en/document/c01982713

    Your computer motherboard (Pegatron M2N68-;) HP Code Name: Narra6) is the integrated graphics card
    using nVidia GeForce 6150SE nForce 430.

    Here are the technical specifications of this graphics processor from nVidia
    http://www.nvidia.com/object/mobo_gpu_tech_specs.html

    Your computer has a PCI Express x 16 expansion for the module slot graphics cards *.
    NOTE: * built into the graphics card or the card PCI Express x 16 slot are usable at once; they can NOT be used simultaneously.

    NVIDIA and AMD/ATI are the largest 2 manufacturers of graphics cards.
    The two companies provide specific requirements of power supply (power) for their products.
    SELECT a current production model (supported) for your operating system AND Version "Next".

    Some traders, since this research and assessment criteria is a selection of several variable.

    1 video connectors (D-Sub/VGA, DVI, HDMI, Display Port)
    2. What is the maximum resolution of this second monitor?
    3 length of the video card to Add on, a computer cases are limited to the duration of the map that fits.
    4. is the expansion card, a card (wide angle) 2 locations? You will need an expansion slot side empty.
    5. even if a majority of MFG. motherboard have background clearances for graphics cards, some models of pushing the limits.
    6. some graphics cards the module require more power from the internal power supply.
    Not all power supplies provide this connector, but exist to the adapter.
    IF you need to upgrade the power supply (power), this connector is normally included.
    ===
    I would like to NARROW your search, a little. Given that your motherboard has already had nVidia GeForce chipset,
    Look at the graphic cards of nVidua GeFirce the module in this same range of products.

    Focus on OFFICE products.
    Series GeForce GTX targeted for players, while the GT series is at least demandung users.
    http://www.GeForce.com/hardware

    START by looking at the entry level GeForce GT 610, the power supply required is at least 300 watts.
    http://www.GeForce.com/hardware/desktop-GPUs/GeForce-gt-610

    Look closely at the SPECIFICATIONS: resolutions of display, connectors, multi-monitor support, etc.

  • Where to change the test limit

    A Council, we test a 17 subseqs in its sequence file. In one of these 17, two statements to check must have different limits for a different version of the Board of Directors. For now, the limits are hard coded numbers on the tab limits for the two statements to check. Is there some standard idioms or basic rules to know how to make the readings like this flexible?

    Thank you

    JVH

    Flexible how do you what it? If you don't mind the sequence to deal with new publishing models, you can the limits by writing them in local variables with a couple of precconditions. There is the shipper of the property and you can read the limits using them. This is the approach that I'll eventually take--whenever we can get everyone to agree on the design of database.

  • CQ57-425ER: Compaq Presario CQ57 does support UEFI?

    I have Compaq Presario CQ57-425ER and you want to use Windows 8.1 GPT disk. I made a bootable USB key with Rufus (TPG-UEFI chosen option), but my laptop can not boot from the flash drive. There is a message - no boot device. Among the drivers for my laptop, I found an environment to help HP Unified Extensible Firmware Interface (UEFI).  Here is a description: ftp://ftp.hp.com/pub/softpaq/sp55001-55500/sp55477.html. I found 2 interesting points in this description: supports GPT disks and provides support for the installation of the UEFI System Partition. I tried to run this flash with windows on another laptop and it works fine. But in my laptop, I always get the message that there is no bootable media. Yes, there is a support of UEFI in CQ57? And if so, what should I do?

    Hello

    This model of PC has limited support for Windows 8/8.1.  It does not support the GPT or UEFI 2.3.1 or later version.  It is the MBR only.

    -wes

  • A small question about the replacement of the DVD in a HP Pavilion dv6 - 2057cl

    I need to replace the DVD drive in this dv6, and I wonder if there is room for manoeuvre with regard to the replacement drive.  Can I use another drive to disc HP with a similar model # or am I limited on drive 'identical '?

    Some quick info follows:

    OS = Windows 7 home premieum (32 bit)

    The disk removed from the laptop:

    DVD Super Multi writer

    MODEL: GT20L

    FW: DC05

    HW: A2

    TYPE: AMCK702

    CT: 7AXVK012GY3NRY

    HP mPC REF: 461646-6 c 2

    S/N:
    {Removed privacy}

    MANUFACTURED: OCTOBER 2008

    I found a replacement with the same 'model' and even 'HP mPC PN' but it was made in 2009, and I don't know whether or not the implementation of the SATA connection on the rear of the car fits.

    Any help is very appreciated!

    Thank you

    DaFlash

    It seems that the reference is the same. As long as the part number is the same, it is essentially the same part and should work without any problems. The only time where this part can fail if the part number is different. If a part is different from another part (software, hardware, etc.), it will have a different reference number. Also long that 461646-6 c 2 is identical on both, there is no problem with the disk replacement.

  • HP PSC 2110: need HP solution center software for hp psc 2110 running windows 7 32 bit

    Hello

    The HP Solution Center software has disappeared since I move my laptop HP OS from Vista to Windows 7 32 bit.  I use HP Solution Center for the years software to create PDFs of the documents scanned the printer HP PSC 2110 all-in-one.

    Can you give us the link to download Win 7 HP Solution Center software? I searched on the HP support site using the name of the HP PSC 2110 product, he pointed me to the section of the driver; I followed the instructions, but there is no link to download the software.

    The printer is connected via USB and works fine.  That's all just annoying that I can't use the HP Solution Center software (previously Director of HP) to copy documents scanned to my computer.

    Thank you.

    You are welcome.

    You can download it from the following link:

    http://sourceforge.NET/projects/naps2/files/3.0b1/naps2-3.0b1-Setup.exe/download

    This means that as an older model, its functionality is limited, but there are a few available workarouds. It is surely worth a try.

    For a wireless printer you will need another printer indded, there are many factors to consider and recommend any specific printer, you have specific needs? would be for example you use a fax or not, I guess, it should be a color with a scanner printer... Do you use to print photos or more often good for a daily newspaper, printing and scanning capabilities, these factors may affect strongly any possible recommendation for more information you will find useful.

    However, any current HP device with a scanner supports scan PDF scanning in the HP software.

  • How to restrict access to the drive of Wndows xp sp3?

    I have 3 user account on my computer, it is has the administrator rights and the other is a standard user account.

    I want to restrict access to all readers for the standard player.
    I used gpedit.msc to enable the administrative model, but it also limits the account admin and me to access the road
    OS: windows XP SP3
    Please advice
    Hi Utkarsh.Ranjan,
     
    If you want to restrict access to a drive by using the Group Policy Editor, you can not apply for a particular user account. This will change for the user accounts.
     
    You can't restrict access to the complete transmission. However, you can resrtict access to folders and files inside a car to a particular user.
     
    Refer to the section "set, view, change, or remove special permissions for files and folders" in the following article and follow the steps to remove the authorization of the user access to the file/folder.
  • Not able to scan several Pages of flat of the large Format HP 7500 printer range

    Impossible to add pages to the document scanned in the glass of a HP Officejet 7500, model 910.  This limits the length of my file scanned on a single page.  Multi-page analysis works by ADF, but this feature apparently not available in glass for tasks such as single file scanning the pages of a book.    I use Windows 7 Home Premium and I'm connected wireless to my computer.  My previous HP scanners had all features of scanning more than a single page starting from the plateau.  Is there a software fix for this problem, or a driver to scan different can be downloaded?

    Hello DLins

    The option should be there if the scan from the printer software (see image below). Make sure that the DPI is set to high as different printers are limited to some PPP when you scan multipage documents. Make sure that the DPI is set to 600 or less. While the picture below was taken from the officejet 8600 software should be very similar. I would like to know if you have any questions or problems.

  • E280 V03.01.11A &amp; Micro SD 16 GB memory card

    I read that people believe this combo works, but someone has actually tried this yet with a nearly full up to 16Gb micro SD card and is recognized by the player E280 Sana?

    Thanks in advance for any comments.

    Herman,

    P.S. I know that the Micro SD 8 GB card works.

    It works according to this poster. Why?  You have one that does not? There is a bug that limits the amount of files in the database about 4000 +/-so this limit could certainly be achieved easily with 16 GB card. Some have already experienced with the 8 GB.

    One thing I would however recommend that you update your firmware. If you still use the original version de.11, you don't have even the USB mode switch in your menu settings as well as a few other improvements. You can find the firmware from the links in the quick reference card (shaded messages) at the top of the Board. You will need to do this manually (instructions in the post) and force in MSC mode (since your f/w does not have the option).

    With your Player off, set the HOLD switch to the headphone jack. You will see the below orange bar. Now, press and hold the rewind |< button="" while="" at="" the="" same="" time="" plugging="" the="" cable="" into="" your="" sansa="" (cable="" already="" connected="" to="" the="" computer).="" it="" should="" power="" up="" in="" msc="" mode.="" if="" it="" doesn't="" open="" a="" windows="" explorer="" window="" automatically,="" open="" one.="" double-click="" on="" your="" player's="" icon/drive="" to="" open="" it="" and="" follow="" the="" instructions="" for="" manually="" loading="" the="" firmware.="" when="" done,="" slide="" the="" hold="" switch="" back.="" it="" should="" re-boot="" and="" you'll="" be="" all="" up="" to="" date!="">

Maybe you are looking for