Forum Replies Created

Viewing 15 posts - 48,901 through 48,915 (of 49,552 total)

  • RE: Personal Laptop

    Company I work for doesn't provide laptops. We all work on desktop machines.

    I bought my own laptop, and while I do sometimes do work on it, it is my machine...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: index creation

    Sorry, for some reason I read that as Will Not.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Service start time

    I thought of that, and it's certainly an option. I'm hoping for a quicker way.

    With login failures and backup logs and the like, my error logs often reach a couple...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: index creation

    The too many rows would be the big one. I can't offhand think of another reason.

    Say the NC is on MyDate and returns 100 rows. That means over 100 random...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Question re: NULLs and Count function

    Count(*) returns the number of rows

    Count(<column&gt returns the number of non-null values in that column.

    In your case,

     select count(age) from dependent where age is...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Help on SQL Query

    Sorry, I don't fully understand your schema, or how stuff relates to each other.

    If you invoice someone for 1000, what gets added to what table?

    If the customer then pays...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: How to resolve an issue from DBCC checkdb result?

    The data corruption forum is probably a better place for this than the forum on administration of notification services. That said....

    DBCC returns a statement at the bottom stating the minimum...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Profiler Event Called Scans

    According to books Online (2005)

    The Scan:Started event class occurs when a table or index scan is started.

    The Scan:Stopped event class occurs when a table or index scan stops.

    I've used them...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Best Practices needed on Massive Deletion in 24/7 production environment

    Logical fragemntation of 50% is bad, but it's not too bad, especially if it's a GUID cluster. I've had one up at 99.98%. The extent fragentation is worse. I do't...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Getting Away

    December is financial year end for us, so no leave and on call for period 14 dec - 8 Jan for the DBA tem. Pity cause it's wonderful weather here.

    Still,...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Best Practices needed on Massive Deletion in 24/7 production environment

    No need to move the pk, just get the clustered index onto another column. By preference (mine), static, ever increasing, narrow (esp if you have lots of NC indexes), unique.

    You...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Best Practices needed on Massive Deletion in 24/7 production environment

    One other thing, that I forgot earlier.

    If you shrink a data file, SQL puts pages anywhere that there's space. A database shrink can completely undo a reindex.

    Your order should be...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Best Practices needed on Massive Deletion in 24/7 production environment

    I can answer a couple of those:

    I have read best-practice for when not to use GUID such as for a PK. Does having GUID PK create wacky indexing due to...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Deleting large amount of data

    With that number of rows that you want to delete and the few that you need to keep, I'd suggest that you copy the rows you do want to keep...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: I Need Full Info of MCTS(70-431) exam,Please give me Tutorial and Hints.

    The exam skill set is listed on the following page.

    http://www.microsoft.com/learning/exams/70-431.asp

    Before you ask for, or use brain dumps, etc, you should be aware that these are illegal.

    Anyone who gives you...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 15 posts - 48,901 through 48,915 (of 49,552 total)