Showing posts with label recommended. Show all posts
Showing posts with label recommended. Show all posts

Wednesday, March 21, 2012

Indexing Questions

Sorry its been a while since I was taught about indexes,
Can I place indexes on both FK fields of a Associative table?
and what is the recommended number of rows to place an index on a table for SQL server (if different from other DBMS)?
and also whats a clustered index?Yes
I put clustered indexes on every table though not necessarily for performance reasons. Regarding nonclustered indexes, the number of rows is less significant than the number of pages those rows occupy - this depends on the "width" of the rows and fillfactor.
The last question is really fundamental - I suggest you read the entries in BoL re indexes & their associated structures otherwise you will just find yourself asking piecemeal questions and having to peice it all together at a later date. Better to get some understanding and then ask about anything you haven't quite grasped.|||I guess I would like to know why you ask that question

It's kinda like DBA 101

Sunday, February 19, 2012

Indexed Views

What have been experiences out there with indexed views? How are they
working for you? What method do you use to maintain them? What is
recommended for scenarios where there is a large # of updates to the
base table ... are there any issues with rollback tables filling up?
Thanks for your help!
JimLarry
http://www.sql-server-performance.com/indexed_views.asp
"Larry" <nospam@.nospam.com> wrote in message
news:OhVvIX#7DHA.2560@.TK2MSFTNGP09.phx.gbl...
> What have been experiences out there with indexed views? How are they
> working for you? What method do you use to maintain them? What is
> recommended for scenarios where there is a large # of updates to the
> base table ... are there any issues with rollback tables filling up?
> Thanks for your help!
> Jim
>