Forum Replies Created

Viewing 15 posts - 18,916 through 18,930 (of 22,214 total)

  • RE: How data can remove automatic from tempdb after some task

    Yeah, I'd like to see some information too. What the heck are you moving data into tempdb for? SQL Server puts enough of a load onto the tempdb without adding...

  • RE: Problem with Rebuild/Reorganize Index

    Lin Zhang (12/29/2008)


    Before rebuild index, backup you database ( just for caution), change your database recovery mode to *simple* so that the rebuild index operation will not be logged, you...

  • RE: Return all Master and any child records

    interfac (12/29/2008)


    That code returns the correct results that I was looking for!

    Regards

    James

    Then I'm really confused. If you drop the WHERE clause, your initial query should have worked.

  • RE: Changing Taxonomy

    RBarryYoung (12/29/2008)


    For what it's worth, I think that one exercise that we should all try is to seriously consider what good the forum Taxonomy/Structure truly does for each of us...

  • RE: Is it safe to use "update syscolumns set colstat"

    You don't have access to system tables in 2005. Those are views that you're seeing.

    I wouldn't do something like that on a bet, especially on a production system that I...

  • RE: Activity Monitor information incorrect?

    I can't say that I've seen that. Any time I thought it was wrong, upon further investigation, I found that it was correct. For example, maybe your default connection database...

  • RE: Changing Taxonomy

    joshcsmith13 (12/29/2008)


    I definitely support Topics at the top level. I can't count the number of times I needed to post a T-SQL question, and couldn't decide if it should...

  • RE: Return all Master and any child records

    emailtoDeepa (12/29/2008)


    SELECT master.id, master.field1, child.field1

    FROM master Left outer JOIN child on master.id = child.masterID

    But that is just the same OUTER JOIN that the OP wrote in the first post. What...

  • RE: T-SQL Book

    Itzik Ben-Gan has three that I highly recommend:

    SQL Server 2008 T-SQL Fundamentals - It's 2008, yes, but it's very introductory and applies almost completely to 2005.

    Inside SQL Server 2005:...

  • RE: Multi-column primary keys

    Nah, don't sweat it. I thought it was a strange reply, but I didn't get upset.

    I'm still confused by the concept of a thing that is absolutely used for identification...

  • RE: Senior developer Vs Manager

    Let me first say, this is just my opinion. Others can, and probably will, disagree.

    The question for me is, do you want to stay a geek or let those skills...

  • RE: SQL SP Trace

    If you want to see each statement within a query as it executions use a trace (or Profiler on a non-production system), to capture the statement completion events :SP:StmtCompleted and/or...

  • RE: Return all Master and any child records

    But the WHERE clause in that query will more or less always force an INNER JOIN. If you're filtering by the Child records, then that's what you're filtering by. The...

  • RE: Cursors Be Gone!

    Gaby A. (12/24/2008)


    dford (12/24/2008)


    Lot of good responses here. I have to say, I don't like seeing lopsided articles about getting rid of cursors. They exist still partially because...

  • RE: Changing Taxonomy

    Thinking about it a bit more, you could combine older versions. Anything released 10 years ago or more will go into a "Previous Versions" folder with a the same four...

Viewing 15 posts - 18,916 through 18,930 (of 22,214 total)