Troubleshooting export - Determine if there is a custom script manipulating data at the record levelDescriptionThis issue is related to exporting data from the instance. The export takes too long and might even cause some scheduled export to fail as a result of a record level script manipulation. Symptoms Export takes too longNot all data is exportedScheduled export fails to runCauseThere is one or more occurrence of line-level script manipulation that can slow the export process significantly.ResolutionTo solve the issue, first identify the calculated field that is causing the slowness. Navigate to the list view of the table you are trying to export from.Right-click the header and select Personalize Dictionary.Ensure that the Calculation field is showing in the column list.Use Filter Out or Show Matching to only show fields with the Calculation field set to not empty.Check each field and verify that the Calculation value is appropriate to run per record. The following example shows a valid Calculation value for a field that should not effect performances: current.time_worked.dateNumericValue()/1000 The following example shows a calculated field that might affect performances significantly, assuming the Company field has no index. var ga = new GlideAggregate('incident'); var count = 0; ga.addQuery('company',current.company); ga.addAggregate('COUNT'); ga.query(); if ( ga.next() ){ count=ga.getAggregate('count'); } count