Searching Large tables.SummaryWhen Searching large tables, after loading for few minutes, the page displays as transaction cancelled. This can be seen many times when searching on large tables like "audit","cmdb" and tables with huge number of records.ReleaseAll ReleasesInstructionsWhen searching on the large tables ,if the result of the Page shows as "Transaction cancelled or Transaction timed out". Ex : when searching on Audit(sys_audit) table with below URL, the page loads for long time and after a while shows "Transaction cancelled" https://<instance-name>.service-now.com/sys_audit_list.do Enhance the search on the table using below format. Change the URL by adding the query as "?sysparm_filter_only=true" - it means "display the data only when given the filter condition". The URL will look as https://<instance-name>.service-now.com/sys_audit_list.do?sysparm_filter_only=true When searched the large table with this URL format , the page displays as below. Click on the Filter icon and give the necessary details to search the data. By this way, we are minimizing the search on huge records and the result can be populated soon. https://<instance-name>.service-now.com/<table_name>_list.do?sysparm_filter_only=true instance_name -> Name of the instance on which the large table data to be searched. table_name -> table on which the data to be searched.