Full-Text Search has not worked since we upgraded to 2012

I have a filestream database and table. Our full-text searches have always worked until we upgraded to SQL 2012 in December.  Now, no file that has been uploaded since December is searchable.  What has gone wrong here.  It should have been
a clean upgrade.  We are not getting any error messages.  We are just not getting any records returned when we search on a word that we know are in the documents we've uploaded since December (for instance, the word 'aluminum'). 
Filestream is enabled for the instance.
A full-text catalog exists and contains a full-text index (the same one we've always had).  Full-text indexing is ENABLED.
I've tried rebuilding the catalog and the index.  I've tried to do a FULL POPULATION on the table.
We haven't changed our queries nor the way the files are uploaded.
Nothing works.  I have been a database administrator since the SQL 2005 days and I have never seen anything like this.
Please help.

Hi GINGER PIERCE,
Since the issue regards SQL Server Search. I will help you post the question in the related forums. It is appropriate and more experts will assist you.
According to your description, in theory , if you can do a full-text search for SQL Server 2008, when upgrading the SQL Server version from 2008 to 2012, the Full text indexing feature should be run well in SQL Server 2012 databases. If not , you can try
to restore your database from SQL Server 2008 to SQL Server 2012, create an new Full-Text Catalog and Index on the table or view in the database, and then use Full Text Index to search words, phrases and multiple forms of word or phrase via FREETEXT() and
CANTAINS() with “and” or “or” operators.  check if it is normal that the full-text search feature is enabled in the SQL Server 2012 instance. For more information , see:
Full Text Search step by step in SQL Server 2012.
Note:  In SQL Server 2012 SP1 , the server will report that Full Text Search is not supported in this edition of SQL Server when it clearly is. The workaround is to create the initial catalog by using a T-SQL query:
CREATE FULLTEXT CATALOG  
In addition, since it is a fileStream database, we need to verify if you do Full Text Searches on documents in FileTables, if yes, you should enable FileStream database for your SQL Server, and enable FileTable options for the database. For more information,
see:
Full Text Searches on Documents in FileTables.
Regards,
Sofiya Li
If you have any feedback on our support, please click here.
Sofiya Li
TechNet Community Support

Similar Messages

  • Full-Text search is not working with PDF files - SQL Server 2012 64 bit

    Hi,
    We are in the process of storing PDF files in SQL Server 2012 with Full-Text search capability.
    I followed the steps as below and it works fine with word document but not for PDF files. I tried with PDF ifiler 11 & 9 and both are unsuccessful.
    Server/DB Level Settings:
    1)
    Enable FileStream
    2)
    Install Full-Text
    then restart
    3)
    Use [specific db]
    alter
    database [db name]
    add
    filegroup Files
    contains filestream;
    alter
    database [db name]
    add
    file (
    name = N'Files',
    filename =
    N'D:\SQL\DATA') to
    filegroup [Files];
    3)
    Database level
    Settings:
    FileStream:
    FileStream
    Directory name:
    [Set the name]
    FileStream
    non-transacted
    Access: [set Appropriate]
    3a)
    Add a
    datafile to DB
    with filestreamdata
    filetype.
    4)
    Share D:\SQL\DATA
    directory and
    add specific accounts
    with read/write
    access
    5)
    Give bulkadmin
    access to those
    specific accounts
    at server
    level
    6)
    From the
    page (link)
    download and
    install the *.pdf
    IFilter for
    FTS. Link:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5542
    7)
    To the
    PATH global system
    variable add
    path to the
    catalog,
    where you installed
    the plugin.
    Default for
    this version is:
    C:\Program
    Files\Adobe\Adobe
    PDF iFilter 9
    for 64-bit
    platforms\bin
    8)
    From the
    page (link)
    download a
    FilterPackx64.exe
    and install
    it. Link:
    http://www.microsoft.com/en-us/download/confirmation.aspx?id=20109
    9)
    Now from
    SSMS execute the following
    procedures:
    -sp_fulltext_service
    'load_os_resources',1
    -sp_fulltext_service
    'verify_signature', 0
    EXEC
    sp_fulltext_service
    'update_languages';
    -- update language list
    EXEC
    sp_fulltext_service
    'restart_all_fdhosts';
    -- restart daemon
    reconfigure
    with override;
    10)
    Restart the
    server
    11)
    select document_type,
    path from
    sys.fulltext_document_types
    where document_type
    = '.pdf'
    -select
    document_type,
    path from sys.fulltext_document_types
    where document_type
    = '.docx'
    12) Results are OK.
    Following is my Table /Index/ catalog script:
    CREATE
    TABLE dbo.DocumentFilesTest
    DocumentId  INT
    IDENTITY(1,1)
    NOT NULL
    PRIMARY KEY,
    AddDate datetime
    NOT NULL,
    Name nvarchar(50)
    NOT NULL,
    Extension nvarchar(10)
    NOT NULL,
    Description nvarchar(1000)
    NULL,
    FileStream_Id UNIQUEIDENTIFIER
    ROWGUIDCOL NOT
    NULL UNIQUE DEFAULT
    NEWSEQUENTIALID(),
    FileSource varbinary(MAX)
    FILESTREAM DEFAULT(0x)
    go
    --Add default add date for document   
    ALTER
    TABLE dbo.DocumentFilesTest
    ADD CONSTRAINT
    DF_DocumentFilesTest_AddDate
    DEFAULT sysdatetime()
    FOR AddDate
    EXEC
    sp_fulltext_database
    'enable'
    GO
    IF
    NOT EXISTS
    (SELECT
    TOP 1 1 FROM sys.fulltext_catalogs
    WHERE name
    = 'Ducuments_Catalog_test')
    BEGIN
    EXEC sp_fulltext_catalog
    'Ducuments_Catalog_test',
    'create',
    'D:\SQL\PDFBlob';
    END
    --EXEC sp_fulltext_catalog 'Ducuments_Catalog_test', 'drop'
    DECLARE
    @indexName nvarchar(255)
    = (SELECT
    Top 1 i.Name
    from sys.indexes
    i
    Join sys.tables
    t on 
    i.object_id
    = t.object_id
    WHERE t.Name
    = 'DocumentFilesTest'
    AND i.type_desc
    = 'CLUSTERED')
    PRINT @indexName
    EXEC
    sp_fulltext_table
    'DocumentFilesTest',
    'create',
    'Ducuments_Catalog_test', 
    @indexName
    EXEC
    sp_fulltext_column
    'DocumentFilesTest',
    'FileSource',
    'add', 0,
    'Extension'
    EXEC
    sp_fulltext_table
    'DocumentFilesTest',
    'activate'
    EXEC
    sp_fulltext_catalog
    'Ducuments_Catalog_test',
    'start_full'
    ALTER
    FULLTEXT INDEX
    ON [dbo].[DocumentFilesTest]
    ENABLE
    ALTER
    FULLTEXT INDEX
    ON [dbo].[DocumentFilesTest]
    SET CHANGE_TRACKING
    = AUTO
    ALTER
    FULLTEXT CATALOG
    Ducuments_Catalog_test REBUILD
    WITH ACCENT_SENSITIVITY=OFF;
    INSERT
    INTO DocumentFilesTest(Extension,
    Name,
    FileSource)
    SELECT
     'pdf'
    'BOL12006553.pdf'
    * FROM
    OPENROWSET(BULK
    'd:\SQL\PDFBlob\BOL12006553.pdf',
    SINGLE_BLOB)
    AS BLOB;
    GO
    INSERT
    INTO DocumentFilesTest(Extension,
    Name,
    FileSource)
    SELECT
     'docx'
    'test.docx'
    * FROM
    OPENROWSET(BULK
    'd:\SQL\PDFBlob\test.docx',
    SINGLE_BLOB)
    AS Document;
    GO
    SELECT
    d.*
    FROM dbo.DocumentFilesTest
    d WHERE
    Contains(d.FileSource,
    'BILL')
    Returns nothing. it should come from PDF file
    SELECT
    d.*
    FROM dbo.DocumentFilesTest
    d WHERE
    Contains(d.FileSource,
    'TEST')
    Returns from word document as follows:
    2           2014-06-04 10:11:41.393            test.docx docx           
    NULL   [BINARY Value]  [Binary Value]
    Any help is appreciated. Its been a long wait.
    Thanks,
    Vel
    Vel Thavasi

    Hello,
    Did you check the fulltext log files for more details about the errors. If the filter isn’t working, there should be errors in the error log file.
    The following thread is about similar issue, please refer to:
    http://social.msdn.microsoft.com/forums/sqlserver/en-US/69535dbc-c7ef-402d-a347-d3d3e4860d72/sql-server-2008-64bit-fulltext-indexing-pdf-not-working-cant-find-ifilter
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • I have an Iphone 4 and the camera shutter wont open, I have tried most things and it has still not opened, it has not worked since I have got it. What should I do?

    I have an Iphone 4 and the camera shutter wont open, I have tried most things and it has still not opened, it has not worked since I have got it. What should I do?

    Here's basic troubleshooting for iOS:
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/troublesh ooting-ios
    (Note that my links to other pages may promote my organization, and this should not be taken as an endorsement by Apple)

  • HT6114 My Apple 7.2 mail does not work since I upgraded to OS X Mavericks, what has gone wrong?

    My Apple 7.2 mail does not work since I upgraded to OS X Mavericks, what has gone wrong?

    Have you tried using http://support.apple.com/kb/HT4505 guidance for scanning?  Has always worked for me with my Epson scanner.

  • I cannot conect to APP Store. I upgraded to IOS 8.3 and APP Store has not worked since. I am being asked to tipe my user name /password and nothing happens afterwards. No error messages either.

    I cannot connect to APP Store. I upgraded to IOS 8.3 and APP Store has not worked since. I am being asked to type my user name /password and nothing happens afterwards. No error messages either.

    hey the sever is down for the moment try again latter tonight... we have been attepting and i eveen went to the apple store third Street Primonade and alejadnro could not help me he said to try soon
    John

  • Everytime i plug my iphone into my computer it says device not recognized i was syncing my phone and it got interupted and has not worked since i have iphone 4 with 4.1 software lol what can i do to not lose everything

    Everytime i plug my iphone into my computer it says device not recognized i was syncing my phone and it got interupted and has not worked since i have iphone 4 with 4.1 software lol what can i do to not lose everything

    I'd start with the following document with that one:
    iPhone, iPad, iPod touch: How to restart the Apple Mobile Device Service (AMDS) on Windows

  • The remember me dialog box does not work since I upgraded to OS 10.10.1 and Safari 8.0

    The remember me dialog box on various web sites does not work since I upgraded to OS 10.10.1 and Safari 8.0

    Try running the combo update.
    10.9.2

  • The App Store search has stopped working since I updated to 8.2 on iPad

    Hi
    since I updated my software to 8.2 on my iPad the App Store search has stopped working but other features work on the App Store only the search option is not responding and says " the App Store is temporary unavailable please try again later "
    I have turned my iPad off and on couple of times but with the same result each time.
    the 8.2 update is for the new Apple watch and health app.
    can any one help?

    Based on the numerous posts regarding iTunes and the App Store, there appears to be an issue at Apple's end. Although Apple has not provided any indication on the cloud status page.
    Do not change your settings.
    Edit

  • Bug: Text Search is not working for Excel spreadsheets

    Hi,
    We have published several Excel, Word and PowerPoint file items to our portal application content area.
    However, The intermedia text search is not returning the excel files - it is working on other file formats though!
    I have even tried directly issueing select from sqlplus. eg.,:
    select name,filename from wwv_document$ where name like '%.XLS'
    AND CONTAINS(BLOB_CONTENT,'network')>0;
    Result>> No rows selected.
    We are using Portal3.0.9 and 8.1.7 DB.
    Thanks in advance!
    Ram

    Firstly, are you syncronizing your indexes. Newly added content is not searchable until the indexes have been synced. See the Portal configuration guide for how to do this.
    Are your Excel files being indexed successfull? After indexing, are there any entries for the WWSBR_DOC_CTX_INDX in the ctx_user_index_errors view. You should be able to join via the rowid to the wwdoc_document$ table to see which docs are failing if any are.

  • IChat not working since Leopard upgrade

    Using a 2GHz iMac. Trying to connect to my brother's 2 GHz (running 10.4) Macbook. Used to work fine. Since upgrading to 10.5 earlier this week, I keep getting messages such as "There was a communication error during your chat" "Did not receive a response from........etc.", and never actually get through.
    The iMac's on a wireless network, - an airport extreme and an airport express, bridged together to extend the range.
    I've had a look at the other similar problems on the discussions board, tried changing the network port settings, turning off internet sharing, changing the Quicktime streaming speed, but no luck.
    Anyone have any similar issues, or better, any solutions? Not much point giving me the ability to change the background in iChat, if nobody but me can see it!

    Possibly.
    Depends on how the Tiger person has ports open in their routing device.
    This Doc http://docs.info.apple.com/article.html?artnum=93208 Say iChat goes through a set of Stages using 6 ports (Invite on port 5678 - Negotiation on port 5060 and then the chat on 4 ports starting at 16384 and going up)
    This Doc for iChat 4 http://docs.info.apple.com/article.html?artnum=306688
    Says it does everything on one port but starts at the top of the range listed in the first Doc and then moves down oly if the others are busy or do not work And this is limited to 10 ports.
    Now some devices can only Port Forward. On top of that some of those can only Port Forward 20 ports and the Tiger list is from 29 ports and on two protocols which can mean 31 entries.
    These users have been managing 1-1 chats on the lower ports fine by missing out setting certain ports they don't need like Bonjour and /or Jabber and possibly some of the top end of the group of twenty.
    Jabber and Bonjour can be a total of 7 entries and therefore is used significantly cut into the group of twenty.
    This leaves a potential gap between iChat 3 and iChat 4 in certain circumstances.
    I hope I have made that clear enough.
    Thanks for the points
    8:10 PM Sunday; November 4, 2007
    Message was edited by: Ralph Johns (UK)

  • Seagate external hard drive is not working since I upgraded to yosemite. Can some one help me?

    I can't connect my seagate external hard drive since I updated to yosemite. Im getting error code 71, can someone help me?

    Try restarting with your drive plugged in. I have a very old 100GB seagate drive and it has been working fine for me so I assume yours would too.
    -crazy

  • MacBook Air Camera not working since software upgrade

    My camera has stopped working on my macbook air.  I am running Mac OS X Version 10.7.5  I have had a quick look on line and a site suggested I may have lost the file <QuickTimeUSBVDCDIgitizer.component> I couldn't locate the file on my PC.  Any thoughts??

    iSight troubleshooting
    http://support.apple.com/kb/HT2090
    Reset SMC.     http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
    Best.

  • "Recently Added" has not updated since I upgraded

    My "Recently Added" playlist hasn't updated since I upgraded Friday afternoon. I cannot find any user setting that allows you to change this or set up your own.
    I find the "Recently Added" section an easy way to play together the most recently downloaded podcasts. Now, nothing updates.

    i've had the exact same problem since i upgraded. Not just the Recently Added not working, but none of the new music I download will import or add to the library.

  • My TV video/audio cable will not work since the upgrade. Only get audio on TV.

    My TV video/audio accessoriy cable will not work after the iOS5 upgrade. Only the audio goes through to the TV. Any solutions?

    no answer

  • IChat worked great under 10.4.6, has not worked since 10.4.7

    We use IChat to video conference between offices(in different cities.) We have VPN and our connectivity at both ends is T3 supplied by the same vendor. We have a server which supplies DHCP to the network.
    Before 10.4.7 it all worked great, simple and easy. Since the update we can see each other, text each other and invite each other to video chats, but every time the invitation hangs with the "error -8" so many people are complaining about.
    I checked the forums for things to do.
    Checked for any ports blocked at the ISP end, Tried port 443 instead of 1080, tried with Firewall on or off etc etc. Thus far nothing has worked and I have spent SO much time on this with no result.
    It all leads me to these questions:
    1. why am I forced to spend so much time trying to make this work, when it was working fine before and the only change we made was updating OSX to 10.4.7?
    2. How can Apple expect people to have to change things like port settings on a product which was widely touted as simple to use?
    3. How could we have gone through several updates since 10.4.7 without this clearly widespread issue not being resolved?
    I am a lifetime mac user, and though there have been occasional let downs, I am a generally a very happy mac user.
    I must say I have never been left out to dry like this. I advised my company to use Ichat for video coferencing, and now I have egg on my face, and Apple does not seem to be even taking responsibility for this.
    whats going on? can anyone please help me?
    G5 dual 2Ghz Mac OS X (10.4.8) T3
    G5 dual 2Ghz Mac OS X (10.4.8) T3
    G5 dual 2Ghz   Mac OS X (10.4.8)   T3

    Sometimes when expiriencing trouble after an update this is a way that often fixes these issues:
    Common workarounds after system updates.
    Apply the Mac OS X 10.4.8 combo updater Once again, re-application of the current combination updater (Mac OS X 10.4.8 for PowerPC or Intel) has proven useful in the case of Security Update 2006-008. Doing so overwrites potentially problem-causing files.
    Apply the Mac OS X 10.4.8 combo updater from an alternate startup volume Failing the above, a more involved process that requires applying the combo updater from a separate startup drive can clear various issues.
    JP

Maybe you are looking for