Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion Groups
DB Engine
SQL ServerMSDESQL Server CE
Services
Analysis (Data Mining)Analysis (OLAP)DTSIntegration ServicesNotification ServicesReporting Services
Programming
CLRConnectivitySQLXML
Other Technologies
ClusteringEnglish QueryFull-Text SearchReplicationService Broker
General
Data WarehousingPerformanceSecuritySetupSQL Server ToolsOther SQL Server Topics
DirectoryUser Groups
Related Topics
MS AccessOther DB ProductsMS Server Products.NET DevelopmentVB DevelopmentJava DevelopmentMore Topics ...

SQL Server Forum / Other Technologies / Full-Text Search / January 2007

Tip: Looking for answers? Try searching our database.

newbie: fulltext setup (Express Edition with Advanced Services)

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
R.A.M. - 20 Jan 2007 18:05 GMT
Hello,
I have installed SQL Server 2005 Express Edition with Advanced Services.
Could you tell me please what should I do to enable full-text indexing?
I have read in a book that I should run MSFTESQL service, but I don't know
how. Will you help me?
Thank you very much!
/RAM/
Simon Sabin - 21 Jan 2007 10:37 GMT
Hello R.A.M.,

The service should be running. Looking in Services in adminstrator tools
and there should be an entry for SQL Server Full Text (SQLEXPRESS). Makre
sure it is started.

Then when you create a database make sure you check the enable full text
checkbox.

Or you can run the following after you have created the database. Have a
look in Books Online for more information

sp_fulltext_database 'enable'

Simon Sabin
SQL Server MVP
http://sqlblogcasts.com/blogs/simons

> Hello,
> I have installed SQL Server 2005 Express Edition with Advanced
[quoted text clipped - 6 lines]
> Thank you very much!
> /RAM/
Hilary Cotter - 22 Jan 2007 12:55 GMT
I would first off verify that SQL FTS is installed. To do this issue the
following command via Query Analyzer, or SQLCMD.

SELECT FULLTEXTSERVICEPROPERTY('isfulltextinstalled')

A value of 1 indicates it is. To run this via SQLCMD do the following at a
command prompt:

sqlcmd -S.\SQLServerExpressInstanceName -E -Q"SELECT
FULLTEXTSERVICEPROPERTY('isfulltextinstalled');"

Now if this comes with a 1, it is a matter of creating your SQL FTS indexes
and catalogs from the command line; here is an example
save this as C:\myscript.sql

USE FullTextDatabase
GO
create fulltext catalog MyCatalog as default;
GO
create fulltext index on mytable(charcol) key index mytablepk;
GO
alter fulltext index on mytable enable;
GO

sqlcmd -S.\SQLServerExpressInstanceName -E -i"c:\MyScript.sql"

Then do the following
Signature

Hilary Cotter

Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html

Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com

> Hello,
> I have installed SQL Server 2005 Express Edition with Advanced Services.
[quoted text clipped - 3 lines]
> Thank you very much!
> /RAM/
xkeops@gmail.com - 23 Jan 2007 03:36 GMT
One more thing: in SSMSE (SQL Server Studio Management Express) you
don't have much visual control on the full-text features.

> Hello,
> I have installed SQL Server 2005 Express Edition with Advanced Services.
[quoted text clipped - 3 lines]
> Thank you very much!
> /RAM/
R.A.M. - 28 Jan 2007 04:47 GMT
I have checked:
SELECT FULLTEXTSERVICEPROPERTY('isfulltextinstalled')
return 0 so full text search is not installed. But I had checked it to be
installed during setup.

I have a question: could you tell me the URL from which I should download
SQL Server 2005 with full text search? I have downloaded SQLEXPR_ADV.EXE and
SQLEXPR_TOOLKIT.EXE from Microsoft's download center but maybe it's not
proper version...
Please help.

/RAM/
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.