cancel
Showing results for 
Search instead for 
Did you mean: 

Deleting data imports

Former Member
0 Kudos

Currently there are lot of records of data imports in our system. ( System Administration ->  Import and Export Tools -> Import data )

Is it possible to delete data imports for some criteria. say records older than 1 year.

Please guide how it can be done.

Regards,

Ankur Goyal

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos
Hi Ankur,
you cannot delete the entries, however, you can restrict the display to only show the last couple of imports.
The query below will restrict to the last 90 days. You can also restric the query to only show 200 entries.
SELECT <%RESULTS%> FROM <%SCHEMA%>.FCI_IMP_ACTION_DATA_IMPORT WHERE CONTEXTID=<%CONTEXT(install.FileImportAction)%> AND ((<%TODAY%> - START_DATETIME ) < 90) <%ORDERBY%>
/Anita