Forum Replies Created

Viewing 15 posts - 181 through 195 (of 3,232 total)

  • RE: Today's Random Word!

    decision

    John Rowan

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

  • RE: Sogeti

    bump

    John Rowan

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

  • RE: Compare and sync different databases using management studio

    Management Studios does not have the ability to sync databases for you. You can do a stare-and-compare by visually examining 2 different DBs, but it will not do the...

    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!

    moving on??

    John Rowan

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

  • RE: updating only certain columns from source table to destination table

    Add a conditional split in your data flow that looks at the column you want to check. Then route the rows that match the condition to an OLE DB...

    John Rowan

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

  • RE: SELECT INTO problem

    IF OBJECT_ID('TempDB..#test','u') IS NOT NULL

    DROP TABLE #test

    SELECT TOP 1

    [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!

    Kofta

    John Rowan

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

  • RE: Filtering by column

    SELECT OBJECT_NAME(object_id)

    FROMsys.columns

    WHEREname = 'column name here'

    John Rowan

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

  • RE: Pass datetime variable to query as varchar

    Declare @strStartTime varchar(50)

    select @strStartTime = '12/10/2010'

    SELECT CAST(@strStartTime as datetime)

    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!

    Tom.Thomson (12/15/2010)


    Granddaughter.

    Not quite random word. My first one was born very early this morning.

    Congrats!!

    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!

    CirquedeSQLeil (12/15/2010)


    crookj (12/15/2010)


    John Rowan (12/15/2010)


    CirquedeSQLeil (12/15/2010)


    Announcement (to be made)

    Drum roll pease.....

    Can only hold my breath for so long......

    Joe

    I will be posting more in my blog

    Where's you blog site?

    ...nevermind 🙂

    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!

    CirquedeSQLeil (12/15/2010)


    Announcement (to be made)

    Drum roll pease.....

    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!

    CirquedeSQLeil (12/14/2010)


    ch-ch-ch-changes

    Ditto

    John Rowan

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

  • RE: Update Issue

    jscot91,

    Is this a new question from a new poster or did you change user names?

    If this is a new question from a new poster, please post a new thread...

    John Rowan

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

  • RE: Tuning slow query

    An execution plan here would help a bunch. You shouldn't have to bother with the temp table to make this work.

    The challenge with adding Status to the clustered index...

    John Rowan

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

Viewing 15 posts - 181 through 195 (of 3,232 total)