Forum Replies Created

Viewing 15 posts - 361 through 375 (of 3,232 total)

  • RE: Today's Random Word!

    crookj (8/13/2010)


    Speaking of Jason.....

    I heard that Michael Myers (Halloween) wore a Cpt James T Kirk mask that was painted white. Anyone else here this?

    Joe

    True. I've heard that before too....

    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!

    Ray K (8/13/2010)


    CirquedeSQLeil (8/13/2010)


    ch ch ch ch (softly - name that theme music)

    Friday the 13th. (Where's Jason?)

    My thoughts exactly!

    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!

    pupa

    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 Benoit (8/12/2010)


    Ray K (8/12/2010)


    David Benoit (8/12/2010)


    Ray K (1/12/2010)


    This is more curiosity than anything else . . .

    In perusing these forums, I'm noticing a great deal of geographic diversity (which...

    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!

    mmmmm

    John Rowan

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

  • RE: Delete multiple rows

    The statement you provided will delete from table1 only.

    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!

    Brandie Tarvin (8/6/2010)


    John Rowan (8/6/2010)


    Brandie Tarvin (8/6/2010)


    Drain Bramage!

    I wonder how many people will recognize where that phrase came from. @=)

    I've been using it so long, I can't pinpoint where it...

    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!

    Brandie Tarvin (8/6/2010)


    Drain Bramage!

    I wonder how many people will recognize where that phrase came from. @=)

    I've been using it so long, I can't pinpoint where it was. Was it...

    John Rowan

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

  • RE: Delete multiple rows

    You should delete all rows from one table, then all rows from the next, and so forth until you've cleaned out your tables. If you are nervous, do it...

    John Rowan

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

  • RE: Delete multiple rows

    There is a property that you can set up on foreign keys that will allow for cascading deletes which is off by default.

    But to make sure, I'd have to delete...

    John Rowan

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

  • RE: Insert into and set

    Ah, your ClientID column needs cast.

    INSERT INTO ClientAlias(ClientAlias,ClientID,defaultalias,enrolled)

    SELECT Clients.Name + ' (' + CAST(Clients.ClientID as varchar) + ')' as ClientAlias,

    Clients.ClientID,

    ...

    John Rowan

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

  • RE: Insert into and set

    My bad.....replace the & with +......

    INSERT INTO ClientAlias(ClientAlias,ClientID,defaultalias,enrolled)

    SELECT Clients.Name + ' (' + Clients.ClientID + ')' as ClientAlias,

    Clients.ClientID,

    ...

    John Rowan

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

  • RE: Delete multiple rows

    Well, the first step is deleting data is identifying which data you want to delete. When you have to delete related data from several entities, you need to write...

    John Rowan

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

  • RE: delete with cursor

    Right, but nowhere in your code do you reference the target databases (outside of your print statement). Your DELETE statement needs to reference the target database name using the...

    John Rowan

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

  • RE: delete with cursor

    It's because you are connected to your master DB. Build out your SQL statement to reference your table with databasename.schemaname.tablename.

    John Rowan

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

Viewing 15 posts - 361 through 375 (of 3,232 total)