Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Generate Data Script for a Table

    This can be achieved using Import/Export Data feature in SQL 2008.

  • RE: Script all data of a table

    Nice post.

    Here's a script to just update data in a particular column in a table

    select

    'update @tablename set @columnname = ',

    '''' + @columnname + '''',

    'where @primarykeycolumn = ',

    @primarykeycolumn

    from @tablename

    It generates a...

Viewing 2 posts - 1 through 2 (of 2 total)