Export all or only specific columns using XMLIssue <!-- div.margin{ padding: 10px 40px 5px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing: 8px; border-collapse: separate; } table.internalTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:0; } .sp td{ border-bottom: 1px solid; border-right: 1px solid; border-color:#E0E0E0; background-color: #ffffff; height: 20px; padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; } .sphr td{ border-right: 1px solid; border-bottom: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; height: 20px; } .title { color: #D1232B; font-weight:; font-size:25px; } .hd1{ color: #D1232B; font-weight:; font-size:18px; } .hd2{ color: #646464; font-weight:bold; font-size:16px; } .hd3{ color: #7a7a7a; font-weight:; font-size:16 px; text-decoration:; } .hd4{ color: #000000; font-weight:bold; font-size:14 px; text-decoration:; } --> Export all or only specific columns using XML OverviewWhen exporting using the default export XML of a list or record, all columns from the table are included. This article explains how to export only specific columns and the sys_id of the record. Importing those XMLs in a target instance when there already is a record with the sys_id in the export file will only update the column(s) included in the export file while leaving the other columns as they are. If there is no record for that sys_id, it will be created. When exporting large amounts of data you may need to review the following: Export Limits Breaking up Large Exports Other articles that may be helpful with debugging are: Enable export debug logging Process Open up form view for the intended table https://<myinstance>.service-now.com/<TableName>.doRight-click on the form window and select Configure > Form Layout. In Form View and section, click in the View name field and select New.Create a new form layout adding only the columns you want to export.Click Save. To test the new view, click the menu icon and select View > <yournewviewname>.Only the columns you specified and want to export are displayed.To obtain the record XML, add the following URL to your instance adjusting the three listed variables: Use this for all records without view: https://<myinstance>.service-now.com/<TableName>.do?XML&useUnloadFormat=trueUse this for all records without filter: https://<myinstance>.service-now.com/<TableName>.do?XML&useUnloadFormat=true&sysparm_view=<ViewName>Use this for all records with a filter: https://<myinstance>.service-now.com/<TableName>.do?XML&useUnloadFormat=true&sysparm_view=<ViewName>&sysparm_query=<yourQueryHere> myinstance = Name of your instanceTableName = Name of the table you would like to exportViewName = Name of the view you just createdThe XML export of these records is displayed. In browser click Save page as.Save the file as an XML file.The file is now ready to import into an instance. It should only contain the sys_id of the record and the columns from the list view.Note: The generated file should have a quick spot check done on it to confirm it only contains the intended fields. A typo in the view name, or the view being created on a different table than the one being exported may lead to all rows being exported instead of just the expected ones.If your browser crashes when using the "XML&useUnloadFormat=true" flag even after splitting the data into chunks, try KB1646225 as the workaround. ExampleOn Instance A, create a new field named Test on the incident table and added data. Create the same field on Instance B. Need to add the populated data from Instance A into Instance B without changing all of the other fields on the incident table. Navigate to the Incident table in List view incident_list.doSelect a record.Clicked the menu icon and selected Configure > Form Layout.Created a form named Migrate .Added only the Test field to the form.Saved the form.Navigate to the following link: https://instanceA.service-now.com/incident.do?XML&useUnloadFormat=true&sysparm_view=MigrateSaved the file as import.XML.Logged in to Instance B.Right-clicked on List view and selected Import XML.Selected XML file.Imported data.Confirmed the data was now located in Instance B with no changes to other fields.