Steve Fabian wrote
you can probably fix it by adding some indexes to the database
I would look into adding indexes on 'ObjectID' and 'CategoryID' in the 'grmRepositoryObjectCategories' tables
and for Attributes try adding an index on 'ValueID' in the 'grmRepositoryObjectValues' table
Thanks for your idea. However, I tried it and it did not improve. I am a newbie with dnn and sql server. So not sure if I did it correctly. Here is what I did...
*************************************************************************
I logged in with the host account. Went to "host--->SQL" and executed the following (to index the columns as you have suggested)...
CREATE INDEX Idx_testing_grmRepositoryObjectCategories ON grmRepositoryObjectCategories(ItemID, ObjectID, CategoryID);
CREATE INDEX Idx_testing_grmRepositoryObjectValues ON grmRepositoryObjectValues(ItemID, ObjectID, ValueID);
******************************************************************************
did I index the tables correctly by doing the above? Or perhaps, am I missing something else I need to do? (cuz the loading time did NOT improve.) Thanks