> Have a look at this to help you get started.
>
[quoted text clipped - 13 lines]
> >
> > I am totally unawear of Full Text Search of SQL,so please gide me the same
Pallavi,
Yes, the Indexing Service (new name for "Index Server" since its was
incorporated in the OS starting with Windows 2000 Server) and SQL Server
Full-Text Search (FTS) are related. However, both differ in purpose:
1) The Indexing Service is used to Full-text Index files on disk.
2) SQL Server FTS is used to Full-text Index text and files in a SQL Server
table.
URL for procedure to implement Free Text Search via Indexing Service (using
ASP.NET and VB.NET)
How to use an ASP.NET application to query an Indexing Service catalog by
using Visual Basic .NET
http://support.microsoft.com/default.aspx?scid=kb;en-us;820105
URL for procedure to implement Free Text Search via SQL Server Full-text
Search:
Full Text Search using SQL Server 2000/ASP.NET (w/ Tutorial)
http://www.freevbcode.com/ShowCode.asp?ID=4224 and download:
source/full_text_search.zip Unzip the file and review "Tutorial for Full
Text Index.htm" and see "CREATE PROCEDURE freetext_rank_proc" for details.
Hope that helps!
John

Signature
SQL Full Text Search Blog
http://spaces.msn.com/members/jtkane/
> Hell Sir,
> Thanks for this...
[quoted text clipped - 22 lines]
> > >
> > > I am totally unawear of Full Text Search of SQL,so please gide me the same
Pallavi Kulkarni. - 21 Jul 2005 06:07 GMT
thanks a lot Sir...I have gone thru the docs...
I have to implement search engine for one website which will exract searched
items from ASPX's,HTML,XLs,DOCs,Db for which I am using Index Server and FTS
SQL server,Reg that I have following query
1] I am not able to exract contents which are binded in server tags (Text
inside asp:Label tag is not searchable) but aspx is accessable...(Eg.If I
search for "AAA" text,so if it is inside HTML tag then that ASPX comes in
search result,but on the other hand if I bind in ASP LAbel tag,then AAA
search will not give that ASPX in result set.)
2] Will it be possible via Full text server to find cotents from multiple
table for one text.
3] Can it be possible to get data of FTS in Dataset.
4] How to combine result of Index server which will be inside Dataset,and
result of FTS so as to display both results on same ASPX Page.
> Pallavi,
> Yes, the Indexing Service (new name for "Index Server" since its was
[quoted text clipped - 52 lines]
> > > > I am totally unawear of Full Text Search of SQL,so please gide me the
> same
Hilary Cotter - 21 Jul 2005 11:10 GMT
1) you can only index some html tags (i.e. title, Author, custom metatags)
and what is in the body tags. Indexing Services is not able to render the
aspx code.
2) not unless you union all the tables you are interested in
3) through an openquery to a linked server using the MSIDXS provider and
unioning this with your SQL FTS querys
4) See 3

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
> thanks a lot Sir...I have gone thru the docs...
> I have to implement search engine for one website which will exract searched
[quoted text clipped - 67 lines]
> > > > > I am totally unawear of Full Text Search of SQL,so please gide me the
> > same
Pallavi Kulkarni. - 21 Jul 2005 06:42 GMT
Can it be possible to exract SQL table contains as search result Using Index
Server,??
> Pallavi,
> Yes, the Indexing Service (new name for "Index Server" since its was
[quoted text clipped - 52 lines]
> > > > I am totally unawear of Full Text Search of SQL,so please gide me the
> same