Forum Replies Created

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

  • RE: help!

    This query could possibly be tuned if you would provide the DDL (CREATE TABLE statement(s)) for the table(s), sample data (as a series of INSERT INTO statements) for the table(s),...

  • RE: Log file growth

    If your database is using either BULK_LOGGED or FULL recovery models, you need to set up transaction log backups to manage the growth of the transaction log. If you...

  • RE: convert string to datatime

    In your case, you need to remove the commas from the string. I'd also recommend using the date/time style, especially if you know the the dates are all formated...

  • 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...

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