Showing posts with label feature. Show all posts
Showing posts with label feature. Show all posts

Wednesday, March 21, 2012

create site search using sql server "full text search"

would you use sql server "full text search" feature as your site index? from some reason i can't make index server my site search catalog, and i wonder if the full text is the solution. i think that i wll have to you create new table called some thing like "site text" and i will need to write every text twice- one the the table (let's say "articles table") and one to the text. other wise- there is problems finding the right urlof the text, searching different tables with different columns name and so on...

so i thought create site search table, with the columns:

id, text, url

and to write every thing to this table.

but some how ot look the wrong way, that every forum post, every article, album picture or joke will insert twice to the sqr server...

what do you think?

Full text search is handled by SQL Server itslef (via an external windows service) and is a good solution but you need to go through pros and cons and take care about when to generate the indexes and what columns to index. Refer these articles for details:

http://www.eggheadcafe.com/articles/20010422.asp

http://www.developer.com/db/article.php/3446891

Hope this helps,

Vivek

Wednesday, March 7, 2012

Create login from certificate question.

Howdy all. Can someone please point me to a good white paper that will show
me how to make use/ the benefits of this feature?
TIA, ChrisRHi Chris
I don't know of any white paper but Raul Garcia's and Laurentiu Cristofor's
blog
have examples of using certificates and creating logins from them for example:
http://blogs.msdn.com/raulga/archive/2006/07/03/655587.aspx
http://blogs.msdn.com/lcris/archive/2005/06/15/429631.aspx
John
"ChrisR" wrote:
> Howdy all. Can someone please point me to a good white paper that will show
> me how to make use/ the benefits of this feature?
> TIA, ChrisR
>
>