Forum Replies Created

Viewing 15 posts - 17,911 through 17,925 (of 22,202 total)

  • RE: Please help me guys

    I'd suggest picking up a copy of Craig Mullins book "Database Administration." It's technology agnostic and just talks about the job of being a DBA. It's a great read.

  • RE: Capture T-SQL IO info in Result's panel.

    One option is to change the output of the results from a grid to text. Then the columns and the I/O all come out in a single window.

  • RE: Long running queries when using DISTINCT with Strings

    You should look up full text indexing for the varchar(max) column. That's the best mechanism for use with this sort of thing.

    Are there other indexes on the table? A PK?

  • RE: Rebuild index Necessary?

    As Flo says, you shouldn't have to rebuild the index right after creating it.

    Are you sure the index is working well with the query? Did the execution plan change before...

  • RE: SQL 2008 log file backup

    The truncate_only operation has been deprecated in SQL Server 2008. There is no replacement. The log is automatically truncated when the db is in simple recovery. There are more details...

  • RE: Delay processing the Query ...

    This may not give you the answer, but it could help. Get the estimated execution plan instead of the actual one. I usually prefer to work only with the actual...

  • RE: Are the posted questions getting worse?

    Yep. A Star Fury from B-5.

  • RE: Are the posted questions getting worse?

    I think I lost all the posts from this morning. That stinks. I wrote a couple of decent ones (for once). Ah well, no joy in Mudville.

  • RE: Speaking at PASS

    From conversations I've had with people who were on the committee, the DBA track has the fiercest competition. Since you're on that track... it'll be tough. But you know what,...

  • RE: Are the posted questions getting worse?

    So, it looks clear now?

  • RE: Are the posted questions getting worse?

    GilaMonster (3/25/2009)


    RBarryYoung (3/25/2009)


    You know I am not getting my email alerts/updates this morning either. Something is definitely off.

    Likewise. I've had one notification since about 9am this morning (GMT+2).

    I...

  • RE: Are the posted questions getting worse?

    RBarryYoung (3/25/2009)


    Arggh! Grant & I have triple posts. The site wasn't responding and I just kept hitting POST... :blush:

    I tried deleting the duplicates, but I don't think that...

  • RE: Inactive process holding locks on table

    The basic code doesn't cause locking all by itself. So, the problem must lie elsewhere. Are you getting errors? Does the code that's calling the proc have a transcation wrapper?

  • RE: Large Data Set Returns Faster Than Small?

    It does sound like you might be seeing the results of different paths through the execution plan working better for one data set than another. Check the execution plan for...

  • RE: Query Results Order

    No, SQL Server will determine the order of resolution based on the indexes and their statistics on the table (or the lack thereof). You have very little control over the...

Viewing 15 posts - 17,911 through 17,925 (of 22,202 total)