Forum Replies Created

Viewing 15 posts - 9,841 through 9,855 (of 22,213 total)

  • RE: SQL server as a back end for Access

    Funny you should ask this because the newest version of Access is running SQL Server. The Jet engine is gone. It's just a really fancy GUI on top of SQL...

  • RE: Are the posted questions getting worse?

    rodjkidd (5/7/2013)


    Some pictures of a couple of people you may know of from the Medieval evening as SQLbits...

    Cheers,

    Rodders...

    Ah, Templar photo-bombing at it's best. WHOOP!

  • RE: Indexed view CI chosen of table CI. Why?

    Still back to mine and Lynn's original answer. The view has fewer columns than the base tables and that alone can make the difference. Also, it's possible that the statistics...

  • RE: Understanding CASE processing

    Yeah, pretty much. The execution time and the resources used are reasonably accurate measures. The estimated costs are just that, estimates. They are the only numbers we have within execution...

  • RE: Temp Table 'vs' Table Variable 'vs' CTE.

    sivapragasam2000 (5/6/2013)


    Old topic but still relavent...

    In my previous job, I always used CTEs and they were much faster when compared to temp tables.

    In the current place, strangely enough Temp tables...

  • RE: Isolation Level

    If we're talking about a table that records the transaction and a table that stores the list of transactions, assuming you want to automatically generate the ID on the transaction...

  • RE: Indexed view CI chosen of table CI. Why?

    I'm not sure which query we're talking about (i looked at and commented on the other post), but the whole idea behind creating an indexed view is to take advantage...

  • RE: Understanding CASE processing

    Two points.

    Those costs are estimated costs. They don't necessarily relate in any way to reality. You really can't compare two queries through the costs. Not realistically.

    Having multiple queries in...

  • RE: Is Having Primary key on a table essential?

    Jeff Moden (5/6/2013)


    Grant Fritchey (5/6/2013)


    Just remember that if you have a clustered index that is not unique, then SQL Server makes it unique through an internal process called a uniquifier....

  • RE: Deadlock Issue

    A single straight update statement all by itself can't cause a deadlock with another update/insert/delete statement. So, other statements within these query batches must be involved. Since you're on 2008,...

  • RE: Is Having Primary key on a table essential?

    Just remember that if you have a clustered index that is not unique, then SQL Server makes it unique through an internal process called a uniquifier. It's additional storage and...

  • RE: HOW TO FIND the OFFENDING SESSION FROM sys.dm_tran_database transaction

    I think this might be posted on Ask.SQLServerCentral too. But you want to use sys.dm_tran_session_transactions. That will let you get transactions for a session or a session for a transaction.

  • RE: Backup and recovery for the accidental DBA

    Forgot about this article[/url] completely. It's got the same title as your question, part of why I alerted to this one.

  • RE: Backup and recovery for the accidental DBA

    Jason has it right. Unless you're running differentials, you can just run a regular full backup.

    Since you're just getting going, you might want to check out Shawn McGehee's book on...

  • RE: Are the posted questions getting worse?

    Jeff Moden (4/30/2013)


    L' Eomot Inversé (4/30/2013)


    Anyway, I'm at a loss to think of a good role to assign to DBAs in the worlds of science fiction and fantasy. Of...

Viewing 15 posts - 9,841 through 9,855 (of 22,213 total)