Forum Replies Created

Viewing 15 posts - 586 through 600 (of 757 total)

  • RE: Connection Issue - SSPI Context

    Koen Verbeeck (3/29/2012)


    As in delegation of Windows Authentication over multiple server hops?

    How can I check?

  • RE: Connection Issue - SSPI Context

    Koen Verbeeck (3/28/2012)


    Is Kerberos involved?

    How to troubleshoot the "Cannot generate SSPI context" error message

    As in Windows Authentication?

  • RE: Generating Test Data: Part 1 - Generating Random Integers and Floats

    Hi Guys

    By declaring the variables as below - Will that guarantee that every number generated is Unique?

    SELECT @NumberOfRows = 10000000,

    @StartValue ...

  • RE: Rebuild Index Maintenance Plan

    Ken Davis (3/23/2012)


    I don't know the answer to that. If I remember correctly a rebuild index maint plan step will rebuild all indexes regardless of their fragmentation. Have...

  • RE: Rebuild Index Maintenance Plan

    Ken Davis (3/23/2012)


    In my experience, a 2005 ALTER INDEX REBUILD ONLINE will fail if it finds a LOB column. I have a script that checks alloc_unit_type_desc in sys.dm_db_index_physical_stats to...

  • RE: Index Fragmentation

    GilaMonster (3/23/2012)


    derekr 43208 (3/23/2012)


    The performance degradation only comes in where SQL needs to perform a large range scan, something like select some_column from some_table where some_column between two or more...

  • RE: Index Fragmentation

    GilaMonster (3/23/2012)


    No, the nonclustered indexes always contain the clustered index key.

    So your nonclustered index on Col2 will actually be Col2, Col1 or Col2 inlcude Col1, depending whether the nonclustered...

  • RE: Index Fragmentation

    A nonclustered index does not just contain pointers to the data. It contains columns - the index key columns, any include columns and the clustered index key. It's in fact...

  • RE: Index Fragmentation

    GilaMonster (3/20/2012)


    derekr 43208 (3/20/2012)


    GilaMonster (3/20/2012)


    derekr 43208 (3/20/2012)


    So, no extra disk reads are required when SQL tries to find a value on a page that has moved because of recent plage...

  • RE: Index Fragmentation

    GilaMonster (3/20/2012)


    derekr 43208 (3/20/2012)


    With this in mind - Is it safe to say that when a Clustered Index is fragmented, the affects are much worse than when a Non-Clustered index...

  • RE: Index Fragmentation

    GilaMonster (3/20/2012)


    derekr 43208 (3/20/2012)


    So, no extra disk reads are required when SQL tries to find a value on a page that has moved because of recent plage splits?

    Pages don't move...

  • RE: Index Fragmentation

    GilaMonster (3/14/2012)


    derekr 43208 (3/14/2012)


    I'm obviously missing something here

    If the non-leaf pages are aware of the page split at the leaf pages then it knows the new location of the Value...

  • RE: Index Fragmentation

    GilaMonster (3/15/2012)


    derekr 43208 (3/15/2012)


    Maybe I should have worded my question like this:

    >>SQL is looking for value 'X'

    >>According to the non-leaf index pages, 'X' on leaf page #10

    >>SQL goes to find...

  • RE: SQL Demo App

    Henrico Bekker (3/16/2012)


    There are some templates installed by default with the Development Studio (Data Tools).

    Yep, here is some info on AlwaysOn and HA:

    http://www.infotechguyz.com/SQLServer2012/NewFeaturesinSQLServer2012.html

    Thanks

  • RE: SQL Demo App

    Another thing

    To make use of the AlwaysOn availibility groups on SQL 2012, does the server need to be clustered?

    Thanks

Viewing 15 posts - 586 through 600 (of 757 total)