List view performance is slow for some usersIssue A list view of a table and performance is not consistent from user to userReleaseThis impacts all releasesCauseList view performance can be influenced by the column which is being sorted onResolutionCheck to be sure the column is sorting on is an efficient one. For Example you can sort on created_on with much better performance than a column like short description. Check the sys_user_preference <table>.db.order as this may be applying a sort order when no sort is specified directly on the list. If the order is on a dot-walked field this could introduce an unexpected join. Refer to KB0817738 for more details.