Forum Replies Created

Viewing 15 posts - 586 through 600 (of 49,571 total)

  • RE: ALIGNMENT

    aaron.reese - Wednesday, December 13, 2017 6:46 AM

    My next question would be WHY?

    This feels like it is a presentation issue and should...

  • RE: Replacement for rowmodctr in sys.sysindexes?

    It's the column 'modification_counter' in sys.dm_db_stats_properties.

    You don't need to use a cursor for object ID and stats ids. You can use CROSS APPLY to pass them.

  • RE: ALIGNMENT

    Interview question?

  • RE: Reorganise indexes

    The root reason is that fragmentation impact large range scans from disk. Emphasis *large* and *disk*. If the table is small, then fragmentation will have minimal effect and can probably...

  • RE: application_name is not available in audit logs in SQL Server 2017

    Keep in mind that application name can be pretty easily spoofed. It's set by the connecting application.

  • RE: Reorganise indexes

    How big is the index? iirc, by default Ola's script ignores small indexes that don't need to be rebuild/reorganised.

  • RE: Tempdb

    giri10488 - Tuesday, December 12, 2017 4:20 PM

    you can also test it & will definately see that it will resolve space issue.

    No,...

  • RE: Tempdb

    Dividing TempDB won't do anything about space problems. If TempDB is 250GB, it's 250GB, doesn't matter if it's 1 file of 10.

    If TempDB is getting full, your options...

  • RE: SpinLocks

    Get the queries optimised. The chance that you have a spinlock problem is small.
    Most performance problems are bad queries, bad indexing. Address those. Don't go looking deep into...

  • RE: SpinLocks

    Spinlocks, for the most part, are not going to be an indication or guide for why a query is slow. They're something that you can and should ignore inmost cases.

  • RE: Are the posted questions getting worse?

    Brandie Tarvin - Friday, December 1, 2017 8:28 AM

    At risk of politicizing The Thread, has anyone noticed any shifts in their workplaces...

  • RE: Query Optimization Advice

    daniness - Wednesday, November 29, 2017 10:39 AM

     I noticed theuse of a dozen or so left outer joins. After...

  • RE: Transaction Isolation Level when Querying a View

    Eirikur Eiriksson - Tuesday, November 28, 2017 10:26 PM

    Read uncommitted and nolock only ignores other locks on the objects which can...

  • RE: Transaction Isolation Level when Querying a View

    Kevin Frey - Wednesday, November 29, 2017 1:26 AM

    a NOLOCK query won't be blocked by writers, BUT
    writers can be blocked by...

  • RE: Advice for starting up a new database consulting business?

    Have at least 6 months income in the bank before you quit your job. More is better. It'll be slow to start, and you will have periods with little to...

Viewing 15 posts - 586 through 600 (of 49,571 total)