Forum Replies Created

Viewing 15 posts - 256 through 270 (of 616 total)

  • RE: Write query for Suond like search

    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?

  • RE: Write query for Suond like search

    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') --...

  • RE: Two basic MySQL questions

    This is a SQL Server forum so TSQL is the flavour of SQL used not MySQL

  • RE: synonyms for table column

    Create a VIEW?

  • RE: SQL Server 2008R2 Memory

    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...

  • RE: Function for similar phrases

    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....

  • RE: userdefined function for average

    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)...

  • RE: Initial (MB) vs Autogrowth

    GilaMonster (4/3/2013)


    Abu Dina (4/3/2013)


    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...

  • RE: Initial (MB) vs Autogrowth

    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...

  • RE: Initial (MB) vs Autogrowth

    rob.phillips 38602 (4/3/2013)


    Does changing the Initial (MB) move the entire database file to a contigous physical space if it's been fragmented with autogrowth already? Does autogrowth add a contiguous space...

  • RE: identity and unique identifier

    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...

  • RE: VARCHAR(200) vs VARCHAR(2000)

    theashishtrivedi (4/2/2013)


    Thanks for reply.

    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...

  • RE: Covering Index help

    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...

  • RE: Updating covering Index

    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...

  • RE: Updating covering Index

    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)


    I am asking that because i have a big table with a column included...

Viewing 15 posts - 256 through 270 (of 616 total)