Forum Replies Created

Viewing 15 posts - 18,901 through 18,915 (of 22,202 total)

  • RE: Temp tables vs. table variable speeds, temp tables faster???

    I would say the difference is probably attributable to statistics. If you look at the end of the process, the scans & reads for the two are VERY different. For...

  • RE: T-SQL Book

    Larry Larson (12/30/2008)


    The Guru's Guide to Transact-SQL, by Ken Henderson.

    I agree with this. I have three of Henderson's books sitting on my shelf right now. Unfortunately, they're beginning to age...

  • RE: Problem with Rebuild/Reorganize Index

    Lin Zhang (12/30/2008)


    You are right. But I mentioned that you need to do backup ( transactional backup) before change recovery mode, and do full backup after changing mode back to...

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

Viewing 15 posts - 18,901 through 18,915 (of 22,202 total)