Full text search returns no results

  • Hai everybody,

    I have a table with text column. The structure is

    TblData

    -----------

    LngIdnumeric(20)

    VchNameVarchar(100)

    VchEmailVarchar(100)

    TxtDataText

    VchRemarksVarchar(1000)

    I have created a catalog in the DB and added the table and column. I also started the full population of catalog. But when i issue a query(like the one i have given here) no data is returned even if theres a matching row. No error is also reported.

    select * from TblData where CONTAINS(TxtData,'ASP')

    But when i issue a simple query like

    select * from TblData

    rows are returned.Pls help me.

    Regards,

    Saravanan K

    Regards,

    K.Saravanan


    Regards,
    K.Saravanan

  • Hi, try: -

    select * from TblData where CONTAINS(TxtData,'"ASP*"')

    (i.e. '"ASP*"' and not 'ASP')

    Regards,

    Andy Jones

    .

  • Verify whether login BUILTIN\Administrators has been removed. If it does, you have to grant system account [NT Authority\System] to access your SQL Server with 'sa' righr.

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply