Forum Replies Created

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

  • RE: Variable not getting reset inside the loop

    Sean Lange (3/23/2012)


    Eugene Elutin (3/23/2012)


    Sean Lange (3/23/2012)


    Please! "Even better, don't use loops."? Why? :w00t:

    I do not agree!

    If you say that, you should say it right!

    OK, don't use loops in...

    -Vikas Bindra

  • RE: Variable not getting reset inside the loop

    Thanks guys for clarification. Got it now.

    -Vikas Bindra

  • RE: Get the data when there is no Primary key in table

    SELECT * FROM table1

    except

    SELECT * FROM table2

    -Vikas Bindra

  • RE: What exactly does this mean?

    It means Unicode. All Unicode strings should be prefixed with N.

    http://support.microsoft.com/kb/239530

    -Vikas Bindra

  • RE: Listner Port

    By default the port is 1433, but if it changed you can check do doing the following:

    You can open the SQL Server configuration manager and then go to SQL Server...

    -Vikas Bindra

  • RE: How to edit SCD transformation in SSIS?

    Thanks John!

    Looking into the XML code was my first instinct also and I did that, but the XML also contains the query only.

    I think I need to have through look...

    -Vikas Bindra

  • RE: How to edit SCD transformation in SSIS?

    Thanks for your reply.

    I tried using the wizard by double-clicking the component, but it asks me to re-setup everything.

    By re-setup I mean, when the wizard is opened, on the...

    -Vikas Bindra

  • RE: Help with a join

    Jpotucek (1/5/2010)


    Thank you!!!!!!

    This actaully works:

    SELECT

    a.CONTACT_TYPE_ID

    ,b.MEMBER_NUMBER

    ,c.CLIENT_NUMBER

    FROM FRATERNAL.CONTACTS a

    inner join FRATERNAL.CLIENT_CONTACTS a1 on a.CONTACT_ID = a1.CONTACT_ID

    inner join FRATERNAL.MEMBER b on a1.CLIENT_ID = b.CLIENT_ID

    inner join FRATERNAL.CLIENT c on a1.CLIENT_ID = c.CLIENT_ID

    BUT...

    -Vikas Bindra

  • RE: Help with a join

    check this

    SELECT c.Client_number

    ,m.Member_number

    ,contact_type_id

    FROM CLIENT c

    INNER JOIN MEMBER m

    ON c.CLIENT_ID = m.CLIENT_ID

    INNER JOIN CLIENT_CONTACTS cc

    ON cc.CLIENT_ID = c.CLIENT_ID

    INNER JOIN CONTACTS ct

    ON ct.CONTACT_ID = cc.CONTACT_ID

    -Vikas Bindra

  • RE: Help with a join

    This is the query from what I can understand what you need

    SELECT count(*)

    FROM schema.table1

    INNER JOIN schema.table2

    ON contact_type_id = member_number

    where contact_type_id = 'Email1'

    IF you can post table schema, sample...

    -Vikas Bindra

  • RE: SSIS File System Task to copy a file

    OK. Are you able to copy from the command prompt?

    -Vikas Bindra

  • RE: SSIS File System Task to copy a file

    It is because of the keyword [localhost]. local host will not be recognized by the file system (as far as I know), you will have to use the actual server...

    -Vikas Bindra

  • RE: SSIS File System Task to copy a file

    Try to have a breakpoint before the COPY command and when you reach the breakpoint check the value of your variables.

    Check whether the path are correct

    -Vikas Bindra

  • RE: Check .mdf and .ldf file size using T-SQL

    Try this.

    sp_helpdb 'database Name'

    -Vikas Bindra

  • RE: A New Beginning

    I have planned to improve my performance tuning skill.

    Starting with "SQL Server 2008 Query Performance Tuning Distilled" by Grant Fritchey.

    -Vikas Bindra

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