Forum Replies Created

Viewing 15 posts - 5,641 through 5,655 (of 22,211 total)

  • RE: PAGEIOLATCH_SH wait type and what can I do about it?

    I can't know that it'll solve the problem since we're not sure where the contention is coming from. However, I can say with some assurance, it's definitely going to somewhat...

  • RE: My Sequences were reset

    mar.ko (8/26/2015)


    Thanks Grant...now I wonder if "someone" sabotaged me.

    I created a stored proc to reset them to one plus the highest value in the related tables.

    Yeah, and no way to...

  • RE: PAGEIOLATCH_SH wait type and what can I do about it?

    It suggests an I/O issue. A couple of things could be causing that. First, have you looked at the execution plans when the query is doing more I/O? If they're...

  • RE: Execution plan analysis

    I have an explanation from Paul White, so I put a lot of faith in it.

    It was my understanding that when a plan was found that was adequate according to...

  • RE: What are your five most common T-SQL commands

    GilaMonster (8/26/2015)


    I do. All my colleagues and clients, whose machines I end up working on from time to time while helping/consulting, not so much.

    And you've changed snippets. de <space> gets...

  • RE: What are your five most common T-SQL commands

    Ed Wagner (8/26/2015)


    Hugo Kornelis (8/26/2015)


    GilaMonster (8/26/2015)


    Gazareth (8/26/2015)


    But probably the most common: DELCARE left left left backspace left C 😛

    In that case, mine would be SEELCT left left backspace left L...

  • RE: My Sequences were reset

    mar.ko (8/26/2015)


    I'm not sure....I didn't do it.

    Ah... well, then other stuff may have been run. It's hard to say without knowing more. I ran this test:

    USE TestDB;

    GO

    CREATE SEQUENCE dbo.MySequence

    START...

  • RE: Execution plan analysis

    I don't know why that property is sometimes missing from a plan. I'll see if I can find out.

    How are you capturing this query? Through SSMS? Querying the cache? Capturing...

  • RE: General question concerning Users and allowing SQL queries on a database

    Another vote for No.

    It's a fight you're likely to lose unless you can provide alternatives. I'd suggest looking at log shipping to another server. If you can, get upgraded to...

  • RE: Execution plan analysis

    Can you post one or two samples of the plans that don't have that property?

  • RE: My Sequences were reset

    I don't see any indications in the documentation that the ALTER DATABASE command would reset sequences. What process or syntax did you use to rename the database?

  • RE: What is the timestamp data type for?

    sgmunson (8/25/2015)


    Jeff Moden (8/25/2015)


    sgmunson (8/25/2015)


    Rod at work (8/24/2015)


    Hmmm. Thank you Grant, I really appreciate the straight forward explanation for what the rowversion/timestamp is all about. I'm working on archiving the...

  • RE: ColumnStore Indexes

    If it ignored the index, it's because it wasn't satisfying the queries. Columnstore indexes work best with aggregate style queries. They don't work at all well with point lookup or...

  • RE: Possible Database Corruption

    Part of the DBCC process creates a snapshot of the database. That snapshot was marked corrupted due to an I/O issue (undetermined from here). So your main database is fine.

    However,...

  • RE: Add New Column

    I'm with Sean. It sure sounds like normalization might be an issue. I'd focus there as well.

    In terms of impact of adding a column, it depends. If you're talking about...

Viewing 15 posts - 5,641 through 5,655 (of 22,211 total)