Viewing 15 posts - 226 through 240 (of 938 total)
I kinda figured it was a joke when I saw it yesterday sitting in my inbox -- it definitely caught my attention 🙂 I wasn't able to get the...
April 2, 2009 at 6:08 am
Matt (3/30/2009)
wiseman1982 (3/30/2009)
Give this a try to change handling of noise words:EXEC sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO
EXEC sp_configure 'transform noise words', 1
GO
RECONFIGURE
GO
Cheers, that seemed to do the trick, what's all...
March 30, 2009 at 11:30 am
james.spibey (3/30/2009)
Hi Mike,Great work! If I wanted to add the word "NOT" as an operator, would I just change
ExcludeOperator.Rule = Symbol("-")
to
ExcludeOperator.Rule = Symbol("-") Or Symbol("not")
Thanks
James
Hi James,
I can't look into it...
March 30, 2009 at 11:25 am
peter larsen (3/18/2009)
I found the solution.Sometimes it helps, when you write your problem down on 'paper'.
SELECT
T.c.value('../../@Id[1]','int') AS PropertyId,
T.c.value('(CountryCode/text())[1]', 'varchar(256)') as CountryCode,
T.c.value('(Number/text())[1]', 'varchar(256)') as PhoneNumber
FROM @x.nodes('//Property/PhoneList/Phone') T(c)
One caveat...
March 18, 2009 at 12:30 pm
Copyright Info
Someone asked me about copyright on the source code for this article. I can sum it up in one sentence:
"Feel free to use the source code however you...
February 13, 2009 at 7:06 pm
emzero (12/15/2008)
December 15, 2008 at 3:12 pm
Vincent Rainardi (11/29/2008)
Hi Mike, when different ranges are required we can create several Named...
November 29, 2008 at 10:01 am
TheSQLGuru (10/14/2008)
That site has a lot of really great stuff. Aaron Bertrand, IIRC.And I too think this is a presentation layer item. Or perhaps a CLR function??
Actually something...
November 28, 2008 at 4:19 pm
Got the book, reading it now. Great stuff!
I have a question for you though - I like to have a very large date dimension because the date ranges I...
November 28, 2008 at 4:14 pm
Hi Carsten,
Add the characters to the definition of the Terminals (see my previous post above). To keep the definition simple I only used the standard 26-character Latin alphabet.
Here's an...
November 22, 2008 at 5:31 pm
Try changing the definition for a Terminal to add a hyphen:
var Term = new IdentifierTerminal("Term", "!@#$%^*_'.?", "-!@#$%^*_'.?0123456789");
November 18, 2008 at 10:07 am
Hi panteluke,
I think you need to modify the grammar to handle international characters. Right now I use a pretty narrow definition for terminals: basically letters A-Z, a-z, numbers,...
November 9, 2008 at 3:40 pm
rherubin (11/3/2008)
November 3, 2008 at 11:37 am
Jamie Longstreet (10/17/2008)
if a thesaurus is consulted new words may be introduced and if it is possible that these words are stopwords then they would need to be processed after...
October 17, 2008 at 8:14 am
Mark Sumner (10/17/2008)
- it seems to me that you would want to eliminate stop words first, then look at the actual words for example: case sensitivity - it will reduce...
October 17, 2008 at 7:59 am
Viewing 15 posts - 226 through 240 (of 938 total)