Forum Replies Created

Viewing 15 posts - 1,126 through 1,140 (of 1,518 total)

  • RE: update statistics

    I use this:

    USE dbName;

    SELECTid

    ,indid

    ,OBJECT_NAME(id)

    ,[name]

    ,rowcnt

    ,rowmodctr

    ,STATS_DATE(id, indid) AS Date_LastUpdated

    FROM sys.sysindexes WITH ( NOLOCK )

    WHERE indid > 0 AND indid < 255 AND

    OBJECTPROPERTY(id, 'IsUserTable') = 1 AND -- system tables excluded

    INDEXPROPERTY(id, name,...

  • RE: AWE enabled yes or no?

    sotn (6/4/2008)


    Sorry I don't think I stressed the specific understanding issue properly, I meant that for a 32-bit app to access more than 2GB does it require AWE to be...

  • RE: AWE enabled yes or no?

    sotn (6/4/2008)


    I thought I understood the /3GB and AWE settings until this thread.

    I have a 4GB box SQL2005 Std Edition if I have the /3GB switch and AWE is NOT...

  • RE: Temp Table Caching and Indexing in SQL Server 2005

    GSquared (6/3/2008)


    Marios, shouldn't your first test have created a unique clustered index, not just a clustered index, for purposes of this test? Or did I miss something?

    Good catch, thanks!...

  • RE: Temp Table Caching and Indexing in SQL Server 2005

    Hmm, the results are a lot less striking if instead of a UNIQUE constraint, we specify a CLUSTERED PRIMARY KEY:

    CREATE TABLE #t1 (c1 int, c2 int, c3 char(5000));

    CREATE CLUSTERED INDEX...

  • RE: AWE enabled yes or no?

    Steve Jones - Editor (6/3/2008)


    Marios,

    That's an interesting scenario. I haven't dealt with it, but my thoughts are that you enable AWE on all instances. With 2-3GB for each instance, I...

  • RE: AWE enabled yes or no?

    george sibbald (6/3/2008) Marios,

    looks like it could be an 'it depends ' situation. I have always worked to using the /3Gb switch if RAM under 16GB. This is because 1GB...

  • RE: AWE enabled yes or no?

    GilaMonster (6/3/2008)


    george sibbald (6/3/2008)


    so surely /3Gb switch ok up to 16GB RAM, remove for anything over that.:)

    Nope. Even under 16GB you risk starving the kernal of memory.

    Personally I would...

  • RE: AWE enabled yes or no?

    colin Leversuch-Roberts (6/2/2008)


    Most important don't compare x64 and x32 sql server. The awe tick box remains in x64 but it does absolutely nothing, at all, ever, ever.

    x32 -...

  • RE: Finding un-used indexes

    Stress (6/2/2008)


    Marios Philippopoulos (6/2/2008)


    from the blog of Colin Leversuch-Roberts http://sqlblogcasts.com/blogs/grumpyolddba/:

    What I’ve found in large production systems is that you cannot guarantee that data on every index is held in the...

  • RE: Finding un-used indexes

    from the blog of Colin Leversuch-Roberts http://sqlblogcasts.com/blogs/grumpyolddba/:

    What I’ve found in large production systems is that you cannot guarantee that data on every index is held in the dmvs at all...

  • RE: Finding un-used indexes

    You may well have stumbled on a bug here -

    I will do some more searching on the web for similar info.

  • RE: Finding un-used indexes

    I think sys.dm_db_index_usage_stats is sensitive ONLY to index operations in the WHERE clause:

    eg. index operations taking place in a JOIN are not counted.

  • RE: Finding un-used indexes

    Stress (6/2/2008)


    Hi.

    I have seen lots of examples on the 2005 index usages DMV, but one thing has eluded me : it only seems shows access stats for the dbo....

  • RE: How do I enable SQL 2005 instance (SE) to access 3 GB of VAS memory?

    colin Leversuch-Roberts (6/2/2008)


    you don't have enough memory and if you enable the /3gb switch all instances will share the 3gb vas. I think there may be some confusion over...

Viewing 15 posts - 1,126 through 1,140 (of 1,518 total)