Find full text not working

guys,
We are using Suse Linux 11 SP3, with Groupwise 8.0.2, Windows XP SP3. I have a user who can't use the Tools/Find Full Text option. When the user searches for some words that are clearly in inboxe's emails, the search takes forever and does not find the results or finds a few emails that don't actually have the searched for phrases. That even applies to emails received the same day. Any thoughts? GWCheck was ran on the account and no problems are found. Thank you.

FYI: I already did the user's index "Delete and recreate" at the POA. No help. But what I noticed is that when the I try to find, the Find Results Appears for a second or so with some results, then it disappears and a new one appears with no results.
>>> bendeichp<[email protected]> 5/23/2013 3:36 AM >>>
Hi,
just to be clear: all steps are done on the users Workstation. Not on
the server.
I assume that the User with the Problem is working in the caching mode
and not in the online mode.
If he uses the online mode, this steps can't be done as there is no
local mailbox....
In fact the caching mailbox on the workstation of a user has also a
index DB, which can be corrupted. Therefore you can delete it and it
will be rebuild automatically.
The steps for that are:
1. Shut down the client
2. Delete all .idx and .inc files from under ofuser\Index
3. Start the client and wait until the rebuild of the index is done.
Then the search result should show you the expected mails :)
I've done these steps a couple times and it always worked for me.
Cheers,
Pascal
"Have you tried turn it off and on again?"
bendeichp's Profile: http://forums.novell.com/member.php?userid=62174
View this thread: http://forums.novell.com/showthread.php?t=466916

Similar Messages

  • Adobe PDF iFilter SQL Server 2008 R2 Full Text not working

    Unable to get the SQL Server 2008 R2 to index PDF files for full-text searching.
    Environment: Windows 7 SP1 Enterprise 64-bit, SQL Server 2008 R2 Express SP3 64-bit, Adobe Reader 11.x
    Installed PDF iFilter 64 (11.0.01) from
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5542
    Added its folder (C:\Program Files\Adobe\Adobe PDF iFilter 11 for 64-bit platforms\bin\;) to the PC system Path variable. Rebooted PC.
    Confirmed SQL Server sees the Adobe PDF iFilter ..... SELECT * from sys.fulltext_document_types where document_type = '.pdf' 
    Inserted PDF files to my table (see below for CREATE statement).
    The SQLFT log says  ... Warning: No appropriate filter was found during full-text index population for table or indexed view '[TestDB].[dbo].[pdfifiltertable]' (table or indexed view ID '2105058535', database ID '7'), full-text key value '1'.
    Some columns of the row were not indexed.
    Installed other filters for Office. Added files of type DOC, XPS. Confirmed the search query works for those file types. So as such SQL Full-Text is enabled and working.
    Below my T-SQL commands:
    Exec sp_fulltext_service 'load_os_resources', 1
    Exec sp_fulltext_service 'verify_signature', 0
    Exec sp_fulltext_database 'enable'
    CREATE TABLE pdfifiltertable(
    PdfID INT IDENTITY NOT NULL,
    PdfFileName VARCHAR(MAX),
    Ext VARCHAR(10) ,
    PdfText VARBINARY(MAX),
    CONSTRAINT PK_PdfID PRIMARY KEY (PdfID)
    GO
    CREATE FULLTEXT CATALOG pdfCatalog AS DEFAULT
    GO
    CREATE FULLTEXT INDEX ON pdfifiltertable([PdfText] Type column [Ext]
    ) KEY INDEX PK_PdfID with change_tracking auto
    GO
    SELECT pdfFileName FROM pdfifiltertable WHERE CONTAINS(pdftext, 'payment')

    What edition are you using? Like is it SQL-Express or SQL-Standard etc.
    Adding files using C# desktop application.
    Tested in another PC SQL-Server Express 2008 with Windows 7 64-bit. Same issue.
    C# source code ... add a button called uploadPDF and a datagridview called datagridview to the form.
    using System;
    using System.IO;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    namespace UploadPDF
    public partial class Form1 : Form
    #region Properties
    protected static string ConnectionString {
    get {return "Integrated Security=SSPI;database=Testdb;Data Source=localhost\\SQLEXPRESS;Workstation ID=localhost;";}
    protected static SqlConnection Connection {
    get {return new SqlConnection(ConnectionString);}
    protected DataTable pdfDataTable;
    #endregion
    public Form1()
    InitializeComponent();
    populateDataGrid();
    protected void populateDataGrid()
    SqlConnection con = Connection;
    con.Open();
    try
    pdfDataTable = new DataTable();
    SqlCommand cmd = new SqlCommand( "select * from pdfifiltertable", con);
    SqlDataAdapter adapter = new SqlDataAdapter(cmd);
    adapter.Fill(pdfDataTable);
    dataGridView.DataSource = pdfDataTable;
    dataGridView.Columns[3].Visible = false;
    finally {
    con.Close();
    private void uploadPDF_Click(object sender, EventArgs e) {
    if (DialogResult.Cancel == fileOpenDialog.ShowDialog()) return;
    try {
    byte[] content = FileToByteArray(fileOpenDialog.FileName);
    uploadPDFBlob2DataBase(fileOpenDialog.FileName,content);
    populateDataGrid();
    } catch (Exception ex) {
    MessageBox.Show(ex.Message, "PDFiFilter11", MessageBoxButtons.OK, MessageBoxIcon.Error);
    public byte[] FileToByteArray(string _FileName) {
    byte[] pdfBuffer = null;
    try {
    System.IO.FileStream _FileStream = new System.IO.FileStream(_FileName, System.IO.FileMode.Open, System.IO.FileAccess.Read);
    System.IO.BinaryReader _BinaryReader = new System.IO.BinaryReader(_FileStream);
    long TotalNumberOfBytes = new System.IO.FileInfo(_FileName).Length;
    pdfBuffer = _BinaryReader.ReadBytes((Int32)TotalNumberOfBytes);
    _FileStream.Close();
    _FileStream.Dispose();
    _BinaryReader.Close();
    } catch (Exception _Exception) {
    Console.WriteLine("Exception caught in process: {0}", _Exception.ToString());
    return pdfBuffer;
    public void uploadPDFBlob2DataBase(String fName, byte[] content) {
    SqlConnection con = Connection;
    con.Open();
    String ext,filename;
    ext = Path.GetExtension(fName);
    filename = Path.GetFileName(fName);
    try {
    SqlCommand insert = new SqlCommand( "insert into pdfifiltertable ([PdfFileName],[Ext],[PdfText]) values ((@pdfFileName),(@extension),(@pdfcontent))", con);
    SqlParameter pdffilenameParameter = insert.Parameters.Add("@pdfFileName", SqlDbType.NText);
    pdffilenameParameter.Value = filename;
    pdffilenameParameter.Size = filename.Length;
    SqlParameter extParam = insert.Parameters.Add("@extension", SqlDbType.NVarChar);
    extParam.Value = ext;
    extParam.Size = ext.Length;
    SqlParameter pdfcontentParameter = insert.Parameters.Add("@pdfcontent", SqlDbType.Binary);
    pdfcontentParameter.Value = content;
    pdfcontentParameter.Size = content.Length;
    insert.ExecuteNonQuery();
    } finally {
    con.Close();
    } //class
    } //namespace

  • In OS Yosemite the search function in Mail, Finder, Spotlight- does not work

    MacBook Pro (Retina, 15-inch, Late 2013)
    2,6 GHz Intel Core i7
    16 GB 1600 MHz DDR3
    NVIDIA GeForce GT 750M 2048 MB
    OS Yosemite,
    Finder versión 10.10.1
    Mail Versión 8.1 (1993)
    In OS Yosemite the search function in Mail, Finder, Spotlight… does not work. Messages or documents with the search criteria are there and one could find them manually, but the search function fails to find them. Following advice from Apple Support (728965377):
    1. I applied an Apple protocol for adware removal (Remove unwanted adware that displays pop-up ads and graphics on your Mac); I had none, because I had formally utilized a similar protocol that I had found in Internet, actually an app that implemented automatically Apple's adware removal protocol.
    2. I rebuild the post boxes in Mail (Mail (Yosemite): Reconstruir buzones); It took a while but it functioned properly
    3. I re-install the System (OS X Yosemite: Reinstalar OS X); It took about 4 hours but there was no problem whatsoever with the installation.
    Afterwards I searched for messages in Mail, and documents in Finder and Spotlight, without any difficulty. The search function in all of them was working properly. But the next time that I needed to search messages or documents, an hour later or so, the problem reappear and a couple of new issues occurred:
    1. in app RagTime 6.5.2 (Build 1821), www.ragtime.de, the menu bar disappears (it is invisible), when one performs certain operations, e. g., calculating a value with a formula, whether it is in a spreadsheet or some other component (text, drawing, etc.). After touching with the cursor the menu bar is visible again.
    2. after reading an e-mail in Mail or copying an address, this is seeing as a floating object in the finder and over every application. There is no logical way to get rid of the floating object and neither copying or deleting or cutting it. It is not a big issue but nonetheless bothersome.
    3. In Mail, messages with Flag or in VIP contacts cannot be seen in the appropriate folders, only in the Incoming mail folder, together with other messages. It seems to me, this issue is part of same search function problem.
    4. The preview function within Mail does not show the attached documents to a message, whether it is in the IN, OUT or Draft boxes.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then try again to re-index Spotlight. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.

  • Variable Text not working as dynamic header in Crystal report

    Dear Experts,
    I'm working Crystal report that connected to Query BEX SAP BW trough SAP integration kit,
    currently i have case that need report dynamic header using variable text from BEX query, but seem the variable text not working in Crystal reports. the header in Crystal report shown as Desription\technical name, not result from the variable text in Query BEX in SAP.
    In https://wiki.sdn.sap.com/wiki/display/BOBJ/Crystal%20Reports%20and%20BW%20query%20elements stated that the "Text variable" with "replacement path" is supported, but i don't know in my query is not working.
    i already set in Database -> options->  table and fields -> Show Both, but the text variable still not working.
    can you help me
    Crystal Reports 2008 12.2.0.290
    SAP Integration KIT 12.1.0.890
    Thanks
    Luqman

    Post your question BEX and B1 and classic SAP data source issues to the Integration Kit forum

  • Search to find country is not working

    Search to find country is not working and I could not able to find the country, India and the subscription rates to subscribe. pls suggest me the solution

    Hi, Harigermany, and welcome to the Community,
    If you are referring to call rates related to the country of India, please see this FAQ article: https://support.skype.com/en/faq/FA34487/why-can-i-no-longer-make-calls-to-india-from-india?
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • I have a MacBook, made in 2010. I can't get the eject function to work. I have a DVD in now and want to eject it and put another one in. Command-E, dragging it to the trash or Find-Eject does not work. Ideas?

    I have a MacBook, made in 2010. I can't get the eject function to work. I have a DVD in now and want to eject it and put another one in. Command-E, dragging it to the trash or Find-Eject does not work. Ideas?

    Hi there. Hear are some other options . Hold down for click on the track pad while restarting and keep it down all the way thru boot. Or use right click on a mouse. If it's stuck, sometimes sticking a business card in top edge of slot while trying the eject option can work.

  • Why is predictive text not working on my iPhone 5s anymore

    Why is predictive text not working on my iphone anymore

    Actually, I just found the answer to my issue in this thread: The type correct/predict function for mail and text in iOS 8.0.2 was working fine then suddenly disappeared and reverted to the old style. I've checked all settings that seemed appropriate. How do I restore? I actually liked the new version. 
    Which says "a thin gray bar with a white dash in the middle of it immediately above the keyboard, you can reopen the suggestions by sliding up with one finger on the white dash." 
    That did it.
    I too have noticed a change, it seems with the new IOS update. My Predictive setting is on, but it seems before it would come up more often in predicting words and also give me a few choices. Now, it's not coming up as much and only providing one 'predictive' word which is not always right. This change is not very useful.

  • Find my iPhone not working

    My son's iPhone 4s was locked a few months ago by some friends who were playing a joke on him.  They input the wrong passcode over and over again until it was locked indefinietly.  I had to restore the iPhone using a method I found online and got his phone working again.  I didn't realize it until recently, but his Find My iPhone app no longer works.  It is on and logged in as my Apple ID (although I have to continually put the password in).  Anytime I try to use Find My iPhone to locate his phone, it shows me that his phone is offline.  Even when I open the app on his phone and try to locate his phone, it says it's offline.
    I feel that this issue has something to do with the restore that I did.  I don't remember exactly HOW I restored the phone, but know I used iTunes.  I've checked his settings for Location Services and Find My iPhone...All are active and Find My iPhone is active on my sons phone. His phone is also updated to the most recent iOS software. The wierd thing is, I CAN find him or his phone using the Find Friends app.  He has a tendency to misplace his phone in our home and the Find My iPhone app is great because it allows me to send a signal to play a sound to help us locate it.  The Find Friends app doesn't have that capability.  Has anyone else had an issue with Find My iPhone not working after a restore?

    Usually Apple recommended the below steps :
    Why your iPhone (iPad, or iPod Touch) not appear in Find My iPhone?
    Here are some reasons:
    Your iCloud account is not configured on your device. Choose Settings > iCloud and enter your iCloud account information.
    Your device is not update. It needs to be running iOS 5 or higher.
    The date is incorrect on your device. Choose Settings > General > Date & Time to check and set the date.
    Your device has lost network connectivity. If you have access to your device, and it appears to have an active Internet connection, in this case enable and then disable Airplane mode or turn the device off and back on.
    Your device appears in Find My iPhone, but is offline, the reasons:
    Your device is powered off, such as when the battery has run out.
    Your iPhone’s cellular service has been terminated by your wireless service provider.
    Your iPod Touch, iPad, or Mac is asleep and not connected to a known Wi-Fi network. The command will be processed when your device is awakened and connected to the Internet.
    <Edited by Host>

  • Find My Mac not working for a non-admin account

    I would appreciate some advice, or comment, on what I perceive is "Find my Mac" not working.
    I use a Mac Mini (late 2009) to run my home media; it on 7/24, connected to a drobo drive and is running the latest Mac OX X Lion. I did a complete erase and install of the OS, and the recovery partition IS there.
    I use an auto-login account, but with no administrative privileges. There is no monitor, keyboard or mouse connected to it, but in case it gets stolen, I want to find it.
    When I log in with an admin account, I can turn on Find My Mac, under icloud prefs. When I relog into the normal user account, this preference is greyed out, and says "Needs administrative authorization".
    So, is Find my Mac running, cause I turned it on with an admin account, or not?
    If no, how do I make sure it is always running?
    thanks

    These are the notes of the steps I took which finally got my MBP to appear in FMM:
    I clicked on the MBP remove device-> I took the MBP Wi-Fi off line-> I went to iCloud Pref's, unchecked find my Mac-> turned Wi-Fi back on-> went to iCloud pref's re-checked 'Find my Mac'-> went online to iCloud.com, selected the MBP, which had found it's location. I sent a message and sound to the MBP from the Mac mini, which instantly came up on the MBP.
    SO, eventually my MBP 'Find my Mac' is working.

  • Find my phone not working

    Find my phone not working - Location services on, feature is turned on in Icloud, everything is on for this to work, wifi on too, why isnt it locating my device? Can anyone help?  It is showing offline, even though phone is not.  Please help, thanks in advance bella

    Try turning it off, then back on in Settings on your phone.

  • Have JQuery for List View web part, But Full Text Not Visible

    I have a list view web part on a page with which, I've edited the view the way I need which includes grouping.
    Inside IE's Developer tools, I can see the structure (TD and then an anchor tag linking to document) and see the class SharePoint uses for that TD. BUT - when I view the source for the page, none of the actual text in the created view shows up at all!
    What I need to do is to wrap the text inside that TD with more html tags, along with adding a left padding. Adding the padding to the CSS file actually works fine.
    The problem is, that when I add the JQuery to wrap everything in the TD the way I need it, since it technically hasn't been rendered yet, even with a document ready function around it, the JQuery never does what it is supposed to do.
    here's the JQuery:
    $('td.ms-vb').each(function() {
    $(this).find( 'a' ).wrap(
    $('<ul style="padding:0px;margin:0px;;">
    <li style="list-style-type:disc;color:white"></li></ul>') );
    I know the JQuery code works because I've tried it on a plain HTML page. The problem is the way the List View web part renders the output. since it's not available on the screen, the JQuery does not work.
    I really need to do this without any programming, since this type of interface appears many times throughout the site.
    Any ideas on how to accomplish this (get the HTML to show in 'view source' so I can apply the JQuery)?

    (bump)
    anyone?

  • Dreamweaver CS6 "Find and Replace" not working

    Since I've started working in DW CS6 I've noticed that the Find and Replace feature isn't working completely.
    E.g. If I select a block of code, then open Find and Replace, tell it to find "<br />" and replace it with "</li>" it only replaces the first instance. The rest of the <br />'s are still <br />'s.
    Is this happening to anyone else? I may have to switch back to CS5.

    bracdiver wrote:
    ** ANSWER/Workaround
    Change the selection in the 'Search:' dropdown from the default 'Source:'  to 'Text' or 'Text (Advanced)' and you will get the desired result.
    bracdiver, your post may be useful in some examples, like the ones I posted above. However, this does not work in my intended example below (which is source code specific), where the actual source code needs to be replaced:
    Sample
         <p>These are true or false questions. Place your answer on the blank under each question.</p>
    <ol>
        <li>There are twelve in a baker's dozen</li>
        <li>35% of people are going to school.</li>
        <li>There are seven books in the Harry Potter series.</li>
        <li>The longest running play is "Les Miserables"</li>
        <li>There is no blank under this question. <i>Answer beside this question instead.</i></li>
    </ol>
    Using these options
    Find in: Selected Text (first four list items)
    Search: Source code:
    Find: </li>
    Replace: <br />___________________</li>
    Options enabled: Match case
    Desired output:
    <p>These are true or false questions. Place your answer on the blank under each question.</p>
    <ol>
        <li>There are twelve in a baker's dozen<br />___________________</li>
        <li>35% of people are going to school.<br />___________________</li>
        <li>There are seven books in the Harry Potter series.<br />___________________</li>
        <li>The longest running play is "Les Miserables"<br />___________________</li>
        <li>There is no blank under this question. <i>Answer beside this question instead.</i></li>
    </ol>
    CS6 DW output:
    <p>These are true or false questions. Place your answer on the blank under each question.</p>
    <ol>
        <li>There are twelve in a baker's dozen<br />___________________</li>
        <li>35% of people are going to school.</li>
        <li>There are seven books in the Harry Potter series.</li>
        <li>The longest running play is "Les Miserables"</li>
        <li>There is no blank under this question. <i>Answer beside this question instead.</i></li>
    </ol>
    Using your workaround (with 'Inside Tag' option set to li), this will not work as does not change any text at all.

  • Full Text not Displaying in table

    Hi Experts
    I am displaying Long text in Text elements in table But  It is not displaying full Text only Half of text is displaying.
    How to overcome this? Is there any length limitation for text elements in table.
    and Variable type is STRING
    i am concatenating lines from Read text FM.
    Regards
    Jagadish
    Edited by: acj_vy on Aug 17, 2010 10:23 AM

    Hi,
    You should not concatenate the text into string which you read using READ_TEXT.
    You should loop at the table and then display the text using work area of the table.
    It will be displayed line by line as it is getting displayed in your standard transaction.
    Thanks,
    Archana

  • Organizer full screen not working

    When Photoshop elements 12 loads the full screen does not show. The top menu and left margin ( file selection folders) are not visible. Using Win 7 shortcut keys to maximise the window does not work. The editor works fine and all the win 7 shortcut keys operate correctly on the editor. Effectively the organizer is not functioning as I cannot select any folders as they are not visible

    Sorry, man. No I never got an answer to the question. So I'm
    just hoping that an update comes soon that will address this
    problem. If you find out something, reply to this topic so I can
    see if it works for me.

  • I restored Mavericks using OS X Restore but Finder still does not work

    Mac Mini running Mavericks 10.9.5, 2.5 GHz, 4GB memory, etc
    I can login remotely via ssh, so I can see that my files and applications are all there.
    But the Finder shows an empty interface. No HDs, nothing in the Dock except Calendar,
    which does not open, no files on the Desktop even tho' I know they are there.
    "vi newfile" fails when I try to save using "w" or "w!":
    Error message "out of memory (file system full??)", and only an empty file is created.
    This is false as there is about 350 GB free on the hard drive.
    "ps" typically says:
    Finder: 165% cpu time
    quickllookd 40%
    xpcd 175% for first halfhour then very small, 1%.
    ======
    peter% df
    Filesystem    512-blocks      Used Available Capacity  iused     ifree %iused  Mounted on
    /dev/disk0s2   975093952  96201248 878380704    10% 12089154 109797588   10%   /
    devfs                370       370         0   100%      640         0  100%   /dev
    /dev/disk1s2   976101344 478906144 497195200    50% 59863266  62149400   49%   /Volumes/Molika-Backups
    map -hosts             0         0         0   100%        0         0  100%   /net
    map auto_home          0         0         0   100%        0         0  100%   /home
    ======
    *** How can I get a working Finder, and have a working mail Server ?? ***
    Thanks,
    --Peter R

    iTunes: Missing folder or incorrect permissions may prevent authorization - http://support.apple.com/kb/TS1277 - Shared folder issues with Store authorization.
    iTunes permissions re-set with Terminal after user deleted a directory used by iTunes - http://superuser.com/questions/80573/itunes-unable-to-authorize-and-unable-to-do wnload-media

Maybe you are looking for

  • How to delete multiple duplicates of multiple songs?

    How to delete multiple duplicates of multiple songs from my library at the same time, rather than each individually?

  • SAPWebConsole - dropdown field works in ABAP but does not work on Web

    Hi All, I am writing an RF transaction in ABAP using regular dialog programming. My transaction works fine in the GUI. But it does not work OK when I access the transaction over the web (using IE) via SAPWebConsole. My issue is that on the SAPGUI I h

  • Third Party integration and Delta Mechanism

    Hi Gurus, We have the following Scenario: An SAP R/3 system with 3-4 different tables (without TimeStamp) and seperate DBMS (Non-SAP) reporting application with 4-5 different tables (without TimeStamp). Questions: What is the best approach to integra

  • Can't sign back to Game Center

    All of the things I have needs Game Center so please help me!!!!!!!

  • Help on reformatting an external HD

    I currently have an external Hard Drive (Mybook 500GB) and I cannot figure out for the life of me how to reformat it so that I can use it for Time Machine. Please if someone could give me a quick step by step on how to reformat an external I would be