Showing posts with label english. Show all posts
Showing posts with label english. Show all posts

Wednesday, March 21, 2012

future of English Query??

I think English Query is a great utility, but I didn't hear anything about
the improvement and enhancement in SQL 2005.
Does anyone know the future of English Query? We should continue using
English Query in the development or we should decommission it?SQL Server 2005 Books Online says:
English Query has been discontinued. There are no upgrade options or setup
programs for English Query in this release.
--
HTH,
Vyas, MVP (SQL Server)
SQL Server Articles and Code Samples @. http://vyaskn.tripod.com/
"Kam" <Kam@.discussions.microsoft.com> wrote in message
news:E03C9DE5-201E-40E9-9522-DAF277331DA2@.microsoft.com...
I think English Query is a great utility, but I didn't hear anything about
the improvement and enhancement in SQL 2005.
Does anyone know the future of English Query? We should continue using
English Query in the development or we should decommission it?|||Do you know is there any product from Microsoft can replace it?
"Narayana Vyas Kondreddi" wrote:

> SQL Server 2005 Books Online says:
> English Query has been discontinued. There are no upgrade options or setup
> programs for English Query in this release.
> --
> HTH,
> Vyas, MVP (SQL Server)
> SQL Server Articles and Code Samples @. http://vyaskn.tripod.com/
>
> "Kam" <Kam@.discussions.microsoft.com> wrote in message
> news:E03C9DE5-201E-40E9-9522-DAF277331DA2@.microsoft.com...
> I think English Query is a great utility, but I didn't hear anything about
> the improvement and enhancement in SQL 2005.
> Does anyone know the future of English Query? We should continue using
> English Query in the development or we should decommission it?
>
>

Sunday, February 19, 2012

Full-text query failed because full-text catalog 'SIMCatalog' is not yet ready for queri

I have a server (W2k3) in wich i use arabic, french and english fulltext.
The arabic and french fulltext are correct but the english fulltext query
shows the following error :
Full-text query failed because full-text catalog 'SIMCatalog' is not yet
ready for queries.
Nb : SIMCatalog is my catalog fulltext for the three langages
Any help please
Chaieb,
Most likely your FT Catalog (SIMCatalog) need to be "populated" either via
the Enterprise Manager or via the following T-SQL code:
EXEC sp_fulltext_catalog 'SIMCatalog', 'start_full'
The above code runs a "Full Population" on your FT Catalog SIMCatalog.
Depending upon the size (number of row) of your FT-enable table, this may
take some time to complete. You can monitor this via the Enterprise Manager
under the Full Text Catalog icon.
Regards,
John
"Chaieb" <h.chaieb@.archimed.fr> wrote in message
news:OJnl2Gc4EHA.2316@.TK2MSFTNGP15.phx.gbl...
> I have a server (W2k3) in wich i use arabic, french and english fulltext.
> The arabic and french fulltext are correct but the english fulltext query
> shows the following error :
> Full-text query failed because full-text catalog 'SIMCatalog' is not yet
> ready for queries.
>
> Nb : SIMCatalog is my catalog fulltext for the three langages
>
> Any help please
>
>