Forum Replies Created

Viewing 15 posts - 676 through 690 (of 3,232 total)

  • RE: Indexing fields for JOINS and WHERE

    Best practice is to index your FK columns for join performance.

    CREATE INDEX <index name> ON <table name>(<column name>)

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Today's Random Word!

    Sushi

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: update question

    I would recommend making sure you have your trace configured correctly. The trace will capture all SQL activity. All changes to data whether from SP, trigger code, or...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Pivot results to a column

    You'll need to write a function to do this. Here's a great ready by Jeff Moden on the subject:

    http://www.sqlservercentral.com/articles/Test+Data/61572/

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: update question

    Have you run a SQL trace? That should tell you exactly what is updating your column values to NULL.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Today's Random Word!

    Steadfast.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Today's Random Word!

    wealth

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Today's Random Word!

    Purpose.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Today's Random Word!

    leadership

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Where are you?

    David Lester (1/22/2010)


    Iowa here.

    And it seems to suprise many, I have never even been on a farm, cause there is more here than farms... well here specifically there...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Script Task In SSIS to Check column with Same value and change it accordingly

    OK, I mocked up an example based off of this table:

    IF OBJECT_ID('dbo.SSISTest') IS NOT NULL

    DROP TABLE dbo.SSISTest

    GO

    CREATE TABLE dbo.SSISTest(

    Name varchar(10) NULL,

    Value int NULL

    )

    GO

    INSERT INTO dbo.SSISTest

    SELECT 'Ab1',23 UNION ALL

    SELECT 'Ab1',25...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Using Schema's with SQL Server Express 2005 and Access ADP 2003

    grovelli-262555 (1/21/2010)


    What are Synonyms?

    From BOL:

    A synonym is a database object that serves the following purposes:

    Provides an alternative name for another database object, referred to as the base object, that...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Using Schema's with SQL Server Express 2005 and Access ADP 2003

    Are these roles that you have created from scratch or are you trying to alter the permissions for the pre-existing database roles?

    See this link http://www.sql-server-performance.com/faq/cannot_grant_permissions_to_special_roles_p1.aspx

    As far as listing out SYNONYMS,...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Send mail task

    Sandeep Sharma-452981 (1/20/2010)


    How to use User defined variables in SendMailTask for SMTPConnection

    You wouldn't use it to set the Send Mail task, you would use it to set the SMTP Connection...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Script Task In SSIS to Check column with Same value and change it accordingly

    The short answer is 'Yes' a script task can do this. You would first ensure that the data is ordered properly, declare a package variable as the counter, a...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

Viewing 15 posts - 676 through 690 (of 3,232 total)