Forum Replies Created

Viewing 15 posts - 3,796 through 3,810 (of 6,486 total)

  • RE: Setting multiple values

    Jeff Moden (4/4/2008)


    I see that the not so uncommon thing has occurred... Matt beat me to it 😀

    Jeff - If you can talk Steve into it - you can have...

  • RE: Setting multiple values

    J -

    Click on his name on the left - you should get an option to "send an e-mail" to him.

  • RE: Using SQL CLR to execute web services

    ALZDBA (4/3/2008)


    Matt Miller (4/3/2008)


    ...

    By the way - the relevant reply seems to be on page 17....

    (that was a dirty trick there, Johan!)

    ...

    Dynamic paging ... :Whistling:

    In my SSC-forum-profile I've set...

  • RE: Tempdb filling up time after time

    I'd have to say you have a "bad" query somewhere. Something like an accidental cross join between several large tables. In order to match up the rows, it...

  • RE: Which is Better....

    antonio.collins (4/3/2008)


    to add to mark's comment...

    ideally, the FROM clause should describe how the tables JOIN together (dept join emp on dept.deptId = emp.deptId) and the WHERE clause should have criteria...

  • RE: Release Strategies

    GSquared (4/3/2008)


    I like using ApexSQL Diff (similar to a RedGate product). Checks for differences between dev and test, and differences between test and production. Generates the scripts for...

  • RE: Mutually contradicting where clause

    Lynn Pettis (4/3/2008)


    If your table had 10 rows whaere ID = 1 and 10 rows where ID != 1, your query would be thus

    select * from MyTable

    if you insisted on...

  • RE: SQL help

    There's really no reason you can't do it directly in the ON statement:

    select b.emp_nbr, begin_rng, end_rng

    from range a

    join emp b

    ...

  • RE: Mutually contradicting where clause

    suhas.wadadekar (4/3/2008)


    well there could be 10 rows with ID = 1 and another 10 rows with ID != 1

    Remember that LOGICAL AND is the "opposite" concept of what "conversational language...

  • RE: Is there a Equivalent of Set Header OFF in MS SQL?

    Roy Ernest (4/3/2008)


    Writing to a file. Thats all.

    How as in what command is being used to output to the file? BCP? OPENROWSET?

  • RE: **** Stored proc causing major concurrency issues in DB ****

    davidsalazar01 (4/3/2008)


    It's being called frequently and I'm not sure what it's purpose. I kinda inherited the object when I took over. I know that doesn't really help but...

  • RE: Values from variable length flat files

    Michael Covington (4/3/2008)


    I have a variable length flat file that is defined by a "record type" value (first two characters in each row), for example:

    01value1value2value3valueINEEDvalue4value5

    02newval1newval2newval3

    03anotherval1

    04differentval1differentval2differentval3differentval4differentval5differentval6

    I can read the source file...

  • RE: 'EXISTS' vs 'IN'

    GSquared (4/3/2008)


    I've seen actual portability on real production databases with very complex code.

    To achieve it, you unhook the server from its rack, load it up on a dolly, trundle it...

  • RE: Stored Procedure

    Grant Fritchey (4/3/2008)


    There is nothing I hate worse than googling a question and finding the place I posted it to as the first response. It never bodes well for getting...

  • RE: is it possible to hide my tables (i don't want customers to see my columns)

    Jason Selburg (4/3/2008)


    Ihave no experience using it, but wouldn't WITH ENCRYPTION be helpfull?

    It doesn't protect DDL of physical objects. Meaning, as far as I've seen so far - it...

Viewing 15 posts - 3,796 through 3,810 (of 6,486 total)