Viewing 15 posts - 256 through 270 (of 616 total)
Yea.. SOUNDEX is fairly basic and probably best suited for US English pronunciations.
Have you had a chance to look at the links mentioned by Chris above?
April 9, 2013 at 3:20 am
Based on the sample names you've mentioned, SOUNDEX will work:
select SOUNDEX('Poonam') -- P550
select SOUNDEX('Punam') -- P550
select SOUNDEX('Veenita') -- V530
select SOUNDEX('Vinita') -- V530
select SOUNDEX('Amita') -- A530
select SOUNDEX('Ankita') -- A523
select SOUNDEX('Ramita') --...
April 9, 2013 at 2:36 am
This is a SQL Server forum so TSQL is the flavour of SQL used not MySQL
April 8, 2013 at 3:51 am
lianvh 89542 (4/8/2013)
At the beginning of the week SQL Server only uses 50 gigs of memory. By Wednes it uses 150 gig and remains there.
SQL Server will consume memory...
April 8, 2013 at 2:24 am
Check out the following post that I started last July: http://www.sqlservercentral.com/Forums/Topic1337370-391-1.aspx
Chris@Home kindly provided a really good token matching algortihm and it's ultra fast as it's implemented as iTVF.
SOUNDX is rubbish....
April 5, 2013 at 9:36 am
You're almost there!
Try this:
CREATE FUNCTION dbo.rollavg (@data_in char(3))
RETURNS int
AS
BEGIN
DECLARE @data_out int
SET @data_out = (SELECT [/color]AVG(u.data) FROM (SELECT TOP 10 @data_in AS data FROM table01 WHERE pkart3='A' ORDER BY lfnr DESC)...
April 4, 2013 at 2:25 am
GilaMonster (4/3/2013)
Abu Dina (4/3/2013)
GilaMonster (4/3/2013)
April 3, 2013 at 7:57 am
GilaMonster (4/3/2013)
If autogrow kicks in during peak usage time, the users may well notice a degradation in performance. If you grow the file manually at a quiet time, they won't.
Even...
April 3, 2013 at 7:47 am
rob.phillips 38602 (4/3/2013)
April 3, 2013 at 7:19 am
Well if you have no natural primary key for your table then you can generate your own surrogate keys.
Careful with GUIDs though, they consume 16 bytes each and can...
April 3, 2013 at 3:10 am
theashishtrivedi (4/2/2013)
I agree with your explanation and I do follow as you said. Can you tell me if there is any performance gain, if I maintain the length...
April 2, 2013 at 4:10 am
My understanding of this is as follows:
INCLUDED columns in the index go in the SELECT part of the query whilst the actual column that make up the index are used...
March 28, 2013 at 5:54 am
I had a similar issue last week with a table of 80 million+ rows which had several indexes with included columns. But now I remember I had to perform several...
March 27, 2013 at 8:02 am
nadersam (3/27/2013)
will that update statement trigger an update on Idx1 or not?.
Yes, I'm afraid it will.
nadersam (3/27/2013)
March 27, 2013 at 7:37 am
Viewing 15 posts - 256 through 270 (of 616 total)