Forum Replies Created

Viewing 15 posts - 1 through 15 (of 22 total)

  • RE: app to match clients in the different databases

    don't join on names. try SSN and date of birth, or just SSN, and ignore names.

    if you have nay otehr columns that uniquely idnetify a person(email, drivers license number, etc)...

  • RE: app to match clients in the different databases

    Lowell (10/1/2014)


    you are overthinking this if you think you need an app for that.

    no "app" is needed for this, as the data entry for any app that tried to do...

  • RE: smart first name matching in TSQL

    Yes, I think it will be 2 options: use "smart" first name matching or by last name only

  • RE: smart first name matching in TSQL

    Jan Van der Eecken (6/18/2013)


    May I humbly ask why you want to do this in the first place? My first name is Jan, which is both Dutch, Afrikaans and Polish...

  • RE: Matrix in Matrix report issue

    Maybe its bug and we should notify Microsoft?

  • RE: Matrix in Matrix report issue

    Can somebody at least reproduce issue?

  • RE: help to rewrite ugly query

    Thanks guys,

    Solution with "count(*) over" very nice

    Alex.

  • RE: min / max memory and lock pages in memory

    We have single SQL instance on dedicated server. So recommended value is 8Gb.

    Is there any possible issues can heppen if we keep it unchanged min =0 and max = 2147483647...

  • RE: Paramaterized query

    SQLkiwi (2/24/2011)


    onixsoft (2/24/2011)


    So now I have 2 choices: change Prod database to compatible mode SQL2005 and Parameterization = Forced or replace most used queries to use Stored Procedures instead dynamic...

  • RE: Paramaterized query

    Auto-parameterization work properly with Parm=Forced, and NonClustered Index for both your queries

    but when I back to Parm=Simple both not work. It seems previously nothing worked because my database was...

  • RE: Paramaterized query

    SQLkiwi (2/24/2011)


    I think I have a handle on this now, but I just want to be sure you see a successful auto-param in all cases (index, no index) for this...

  • RE: Paramaterized query

    And some more info:

    1.

    DB Compatible Level: SQL Server 2000

    Parametereization: Simple

    With NONCLUSTERED INDEX

    Auto-param not work

    DB Compatible Level: SQL Server 2000

    Parametereization: Forced

    With NONCLUSTERED INDEX

    Auto-param not work

    2.

    DB Compatible Level: SQL Server...

  • RE: Paramaterized query

    If I understand you correctly, you are saying that auto-param worked fine until you created that non-clustered index. Is that correct? Auto-param works for me with and without...

  • RE: Paramaterized query

    Thanks Paul, I was able to recreate table structure and did some more research and found what following line turn autoparameterization off :

    CREATE NONCLUSTERED INDEX [IDX_SSNHistory_IndID] ON [dbo].[SSNHistory] ([IndID]) ON...

  • RE: Paramaterized query

    SQLkiwi (2/24/2011)


    onixsoft (2/24/2011)


    So no way to fix it with less blood?

    If you run the IndId= GUID query from Management Studio, do you get an auto-parameterized plan? I would expect...

Viewing 15 posts - 1 through 15 (of 22 total)