Forum Replies Created

Viewing 15 posts - 2,071 through 2,085 (of 3,232 total)

  • RE: Truncation of Output Variable

    What is the datatype of JudicialServicesPersonnelTypes.Description?

    John Rowan

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

  • RE: SQL Join

    Correct me if I'm wrong, but it looks like you are trying to use the LEFT JOIN to eliminate rows. If there is a match in the docs table,...

    John Rowan

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

  • RE: SQL Join

    That is because this query will be processed by the query optimizer as an INNER JOIN instead of a LEFT JOIN because your WHERE clause is telling SQL Server that...

    John Rowan

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

  • RE: It looks like it should be a Simple Select query... But its not!

    SELECT t1.ID1, t1.Reference

    FROM Table1 t1

    INNER JOIN (

    SELECT Reference

    ...

    John Rowan

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

  • RE: Half a Million

    Why is SSC go great? One word really sticks out to me, mentorship. I believe that people move in two directions in all areas of their life, forward...

    John Rowan

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

  • RE: Checkpoint for Transactional Log File

    The 2-3 GB of data that you are importing each day is going to require quite a bit of t-log space. Your import failed because you've limited the space....

    John Rowan

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

  • RE: Query results from left table

    SELECT t1.*

    FROM table1 t1

    LEFT JOIN table2 t2

    ON t1.id = t2.id AND t1.type = t2.type

    WHERE t2.id IS NULL AND t2.type IS NULL

    John Rowan

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

  • RE: I just want to do my job !

    Not everyone is a natural extrovert, but people skills can be learned. Here's a great people skills book:

    http://search.barnesandnoble.com/booksearch/isbnInquiry.asp?z=y&EAN=9780671027032&itm=1

    The ability to relate to people will get you far. The...

    John Rowan

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

  • RE: NOLOCK

    Look up NOLOCK in BOL. NOLOCK tells the query optimizer to not lock rows when performing a SELECT. The hit is that you are allowing for dirty reads....

    John Rowan

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

  • RE: Active Threads / Recent Posts

    Remi and RBAR to the Rescue!! Sounds like a new Disney move...:smooooth:

    John Rowan

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

  • RE: Active Threads / Recent Posts

    Since my last post, I have used the Recent Posts....Posts Since My Last Visit option and it appears to give me what I was used to seeing with the Active...

    John Rowan

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

  • RE: Active Threads / Recent Posts

    Steve Jones - Editor (9/24/2007)


    Is it the two clicks or something else. The old Active Topics was set to show things since your last login. (last visit).

    Ah, ha. ...

    John Rowan

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

  • RE: Data retention once database can be retired

    noeld (9/26/2007)


    Jo Pattyn (9/26/2007)


    in addition I would also export it to some text file(s) in case future sql versions won't support the old database format

    wow I have never thought of...

    John Rowan

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

  • RE: Data retention once database can be retired

    Take a tape backup and send it off site.

    John Rowan

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

  • RE: How to create a compostie field even if field/s can be NULL??

    CREATE UNIQUE INDEX IDX_PromoMeasure_PromotionType_AdType_DisplayType ON #PromoMeasure (PromotionType, AdType, DisplayType)

    John Rowan

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

Viewing 15 posts - 2,071 through 2,085 (of 3,232 total)