Forum Replies Created

Viewing 15 posts - 17,416 through 17,430 (of 26,484 total)

  • RE: Are the posted questions getting worse?

    tosscrosby-60625 (1/15/2010)


    Gail, you know the answer, give the users the ability to kill the offending SPID! Clean and simple solution to keep things quiet while the OP searches madly for...

  • RE: 3 Table Join in Stored Proc

    What would help is if you would post the table definition(s) (CREATE TABLE statement(s)), some sample data (series of INSERT INTO statements for the table(s)), and the expected results of...

  • RE: Why experienced DBA try to embraces to younger DBAs in interviews?

    Why and how do you feel that an experienced DBA tried to embarrass you during an interview?

    Specific examples would be benifical.

  • RE: Why experienced DBA try to embraces to younger DBAs in interviews?

    Have to agree, who better to evaluate the skills/knowledge of DBA but an experienced DBA? Would you rather a developer (read that as programmer) do the evaluation, or maybe...

  • RE: which is faster

    It also depends on wether or not you plan on using the view in other procedures. If so, creating the view would make reuse of the select statment easier.

  • RE: Some general questions

    You say your database isn't using transactions. Are you running INSERT, UPDATE, and DELETE statements in the database? If so, you are using transactions. You may not...

  • RE: Outer Join question

    The WHERE clause would filter the result set returned from the JOIN of the two tables. Any filtering done on the transaction table would in effect turn the left...

  • RE: Dodge, Dip, Dive, Duck, and Dodge

    bwillsie-842793 (1/14/2010)


    Lynn Pettis (1/14/2010)


    Now you are talking card punches. Used one in high school as well as in the Air Force. Actually ran a Burroughs B3500 for 4...

  • RE: Outer Join question

    Nice catch, Gail. My mind is still on my linked server problem and didn't see that.

    select

    mbd.Trade_ID,

    ISNULL(SUM(t.amount), 0) AS Purch

    from

    ...

  • RE: Today's Random Word!

    SUGAR

  • RE: Outer Join question

    Give this a try:

    select

    t.Buyer,

    ISNULL(SUM(t.amount), 0) AS Purch

    from

    dbo.Member_Base_Data mbd

    left outer join dbo.Transactions t

    ...

  • RE: Dodge, Dip, Dive, Duck, and Dodge

    bwillsie-842793 (1/14/2010)


    Conan The Coder (1/14/2010)


    Speaking of checklists, the weirdest thing I ever got asked as by Gateway support...they asked me to burp my laptop like a baby....

    Oh yeah, you...

  • RE: Subroutines in TSQL

    Curious how you would use a subroutine in T-SQL. Can you show an example of how this would work if it were possible?

  • RE: dynamic Order by

    How is the code being used, in a stored procedure?

  • RE: How do you limit records using Distinct and Count - TOP and Rowcount dont work ?

    ifila (1/14/2010)


    david.tyler (1/14/2010)


    I wouldn't waste time on clowns that are obviously not professionals. This site houses professionals helping other professionals. There are professionals with varying levels of experience and then...

Viewing 15 posts - 17,416 through 17,430 (of 26,484 total)