Viewing 14 posts - 16 through 29 (of 29 total)
What does it bring back?
A syntax error or just no results?
May 3, 2006 at 7:39 am
Does it work fast on substequent searhces if you use different queries?
May 3, 2006 at 6:23 am
A J,
Try specifying the format for the date in your convert statement and try casting to a specific type e.g.
SELECT col_names
FROM tablename
WHERE
CAST(T_DATE as DATETIME) < CONVERT(datetime,dateadd(d,7, getdate()),103)
Also make sure that...
May 3, 2006 at 1:12 am
Do you have a population schedule in place? Could this be interfering with the population of the catalogue and hence slowing down your search?
I can't see any options for the...
May 3, 2006 at 1:02 am
LXZ20 and Amit,
Are you saying this doesn't work?
FROM ColumnName
WHERE CONTAINS(FulltextCatelogueName, '"*men*"')
This is my code exactly I've just taken from a project which is verified to work:
SELECT DISTINCT Res.RANK AS RANK, ...
May 3, 2006 at 12:09 am
Sorry, just trying to help, i have it all coded somewhere but was working from memory to give you pointers. I would have looked it up for you if you...
May 2, 2006 at 11:01 am
No problem,
Try putting a wild card in so it becomes:
SELECT ColumnName
FROM ColumnName
WHERE CONTAINS(FulltextCatelogueName, '%men%')
Hope that helps.
Ed
May 2, 2006 at 10:56 am
Mark,
Can you elaborate on a 'good salary'? Are / What any additonal benefits?
Will you consider remote workers?
Ed
May 2, 2006 at 6:43 am
Amit,
I'm assumung you've already created a full text catelogue for this table?
If you have you just need to run a query like this one:
SELECT ColumnName
FROM ColumnName
WHERE CONTAINS(FulltextCatelogueName, 'men')
Hope this helps
Ed
May 2, 2006 at 1:25 am
I just found this out myself yesterday, pitty it was 3 days after I set-up all my databases manually...always the way!
April 28, 2006 at 10:31 am
Hi Joseph,
Thanks for the reply and here goes a little more info.
Every once in a while (could be every few days, every day or once a year) I would like...
March 20, 2006 at 7:06 am
Glad to have helped.
That query looks fine to me, if it works, it works.
I generally tend to use NEAR as with bigger data sets if cuts the wheat from the...
March 17, 2006 at 2:48 am
Dan,
Yes you need to use a RANK clause and can I suggest maybe using a NEAR boolean opperator instead of OR or AND as it will bring back results with...
March 17, 2006 at 12:49 am
Yes you can install the full text searching service.
Try
Put in the SQL Server CD, run the auto install, go through the normal install route and just tick the Fulltext search...
February 20, 2006 at 1:09 am
Viewing 14 posts - 16 through 29 (of 29 total)