Forum Replies Created

Viewing 15 posts - 2,431 through 2,445 (of 11,678 total)

  • RE: Should my dimension table be this big?

    ps_vbdev (6/30/2014)


    Thanks Koen

    I was actual reading about these but was not sure if i was on the correct path. In my case would i have a product dimension of granularity...

  • RE: Should my dimension table be this big?

    1. Yes, 1,9M rows is quite a lot for a dimension table (especially if you are going tenfold in the US). If you are going to use SCD type 2,...

  • RE: rewrite join

    Replace the NOT IN with a LEFT OUTER JOIN and filter on NULL values.

  • RE: Return Count

    kapil_kk (6/30/2014)


    Koen Verbeeck (6/30/2014)


    kapil_kk (6/30/2014)


    only SELECT

    It works fine here.

    CREATE PROC dbo.MyTestProc AS

    SELECT 1 AS Test;

    GO

    DECLARE @cnt INT;

    EXEC dbo.MyTestProc;

    SET @cnt = @@ROWCOUNT;

    SELECT @cnt;

    Does it make any impact if I used SET...

  • RE: rewrite join

    ramrajan (6/30/2014)


    the objective is to replace the NOT in with some joins

    OK, so why don't you?

  • RE: rewrite join

    What's the problem? Performance? Try replacing the NOT IN with NOT EXISTS.

    edit: any special reason the query is full with "WITH (NOLOCK)"?

  • RE: Return Count

    kapil_kk (6/30/2014)


    only SELECT

    It works fine here.

    CREATE PROC dbo.MyTestProc AS

    SELECT 1 AS Test;

    GO

    DECLARE @cnt INT;

    EXEC dbo.MyTestProc;

    SET @cnt = @@ROWCOUNT;

    SELECT @cnt;

  • RE: Clustering for SSIS (SQL 2008 R2)

    EdVassie (6/30/2014)


    How about SSIS 2012, where everything in the project deployment model is stored inside the SSISDB database? Can SSIS be clustered in that case?

    If you are certain that there...

  • RE: How do you describe what you do?

    Depends on the age of the person that asks.

    From old to young(er):

    * something with computers

    * something with databases

    * reporting on top of databases

    * business intelligence (data manipulation and visualization if...

  • RE: Return Count

    What does the stored procedure do? Insert, update, delete, select?

  • RE: Clustering for SSIS (SQL 2008 R2)

    EdVassie (6/30/2014)


    If you can be certain that you will only ever have one SQL instance on your Windows cluster then it can be safe to cluster SSIS in the way...

  • RE: What is 268435456?

    Interesting question, thanks.

  • RE: Are the posted questions getting worse?

    Lynn Pettis (6/29/2014)


    Koen Verbeeck (6/29/2014)


    Lynn Pettis (6/28/2014)


    It is scary how people manage to get into working with databases and then expect others to bail them out when they are in...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (6/28/2014)


    It is scary how people manage to get into working with databases and then expect others to bail them out when they are in over their head.

    And the...

  • RE: Are the posted questions getting worse?

    Evil Kraig F (6/27/2014)


    Eirikur Eiriksson (6/27/2014)


    The Dixie Flatline (6/27/2014)


    Grant Fritchey (6/27/2014)


    Koen Verbeeck (6/27/2014)


    Grant Fritchey (6/27/2014)


    Anyone think they can help this person? I think they really need it, and what's more,...

Viewing 15 posts - 2,431 through 2,445 (of 11,678 total)