Forum Replies Created

Viewing 15 posts - 1,321 through 1,335 (of 2,463 total)

  • RE: Logical Scan Fragmentation - Does it matter?

    Derrick Smith (9/15/2010)


    It shows that the indexes are not fragmented.

    I am sorry , but which value showed it ?

  • RE: Index Defragmentation

    GilaMonster (9/13/2010)


    Defrag only works on the leaf level of the index (level 0) .

    Then what about the intermediate level ?

  • RE: Logical Scan Fragmentation - Does it matter?

    Derrick Smith (9/15/2010)


    statistics/indexes are just the most likely culprits here.

    But the above DBCC results show that table is not fragmented and statistics are also updated ( from scan density value...

  • RE: Logical Scan Fragmentation - Does it matter?

    Derrick Smith (9/14/2010)


    It sounds more like Table 2 is missing indexes or statistics.

    How did you get this from above first post ( from DBCC results)?

  • RE: Low Disk space

    gprbobby (1/5/2010)


    I need to run an insert query on a db which would insert millions of records in a table. The log file for the db is growing around 3GB...

  • RE: DBCC SHRINKFILE not working for datafile

    bhaskar.mythili (9/14/2010)


    Three months back, I had similar issues, I tried alot of combinations/options with DBCC SHRINKFILE but nothing works. I installed SP3 in our development server and tried DBCC SHRINKFILE...

  • RE: Login Auditing in SQL 2005

    nikhil.verma (9/13/2010)


    I want to find the logins who have enabled the PW policy for the logins or users.

    That should be available in sql server log

  • RE: Index Defragmentation

    Raghavender (9/13/2010)


    - Scan Density [Best Count:Actual Count].......: 98.40% [10788:10963]

    - Logical Scan Fragmentation ..................: 1.07%

    It doesn't seem that this table requires any defragmentation.scan density is very much closer to 100% which...

  • RE: DBCC SHRINKFILE not working for datafile

    Vivek29 (9/13/2010)


    Is there any way to know the initial size of a datafile when the db was created?

    Goto database properties( right click it) >> select "files" option >> see...

  • RE: Index Defragmentation

    Raghavender (9/13/2010)


    some tables are of 20000 pages and more......same situation no change in the fragmentation.... what should we need to do ?

    run the above DBCC command for any one...

  • RE: Index Defragmentation

    Raghavender (9/13/2010)


    - Pages Scanned................................: 32

    it is very small table , you cant expect good defragmentation here , table less then 1000 pages ( as i mentioned in my first...

  • RE: Sp_send_dbmail

    thanks , its working

  • RE: Index Defragmentation

    Raghavender (9/13/2010)


    can any one please help ?

    POst its result also

    SELECT avg_page_space_used_in_percent

    ,avg_fragmentation_in_percent

    ,index_level

    ,record_count

    ,page_count

    ,fragment_count

    ,avg_record_size_in_bytes

    FROM sys.dm_db_index_physical_stats(DB_ID('Dbname'),OBJECT_ID('MediaService'),NULL,Null, null)

    where index_id in (0,1)

  • RE: Sp_send_dbmail

    @lowell

    EXEC msdb.dbo.sp_send_dbmail

    @profile_name = 'SqlNotification' ,

    @recipients = 'bkumar@abc.com',

    @subject = 'SQl 2008 email test',

    @body =...

  • RE: DBCC SHRINKFILE not working for datafile

    Vivek29 (9/13/2010)


    Adding a new drive and then attach\detach is fine. But what if no new drive is added.

    From c_c_ post

    2 reason: Detach then copy to bigger drive and reattach...

Viewing 15 posts - 1,321 through 1,335 (of 2,463 total)