Viewing 15 posts - 61 through 75 (of 114 total)
does the\\ is the problem... that what it is showing in error msg. There should be one \ for fixed drives. It is a mapped drive so i...
April 26, 2013 at 8:40 am
yes Gail, mostly less than 100 pages .can you explain what it actually mean. rebuilding indexes are not effective for indexes with less number of pages.
April 25, 2013 at 3:28 am
SELECT OBJECT_NAME(OBJECT_ID), index_id,index_type_desc,index_level,
avg_fragmentation_in_percent,avg_page_space_used_in_percent,page_count
FROM sys.dm_db_index_physical_stats
(DB_ID(N'AdventureWorksLT'), NULL, NULL, NULL , 'SAMPLED')
ORDER BY avg_fragmentation_in_percent DESC
I used this script to found Fragmentation before and after rebuilding indexes.
April 25, 2013 at 1:38 am
Yes you can get a idea by seeing the table.
First of all know the normalization forms and see whether they are implemented in table or not.
example: In your table there...
April 20, 2013 at 1:08 am
As you said it depends. Sql itself creates VLFs and it determines the size. what we have to do is we have to keep this VLF count as...
April 20, 2013 at 1:03 am
If two databases in a instance are in different collation . Can we implement replication in between them and any other tasks related to those databases.
March 16, 2013 at 12:57 am
Viewing 15 posts - 61 through 75 (of 114 total)