Delete an archive table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2022 11:22 AM
Hello all,
How can I delete the table of: ar_u_product_incident? I have already deleted all of the records, but I am not finding the ability to just delete the table.
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2022 11:27 AM
I think archived tables are read only. I would suggest deactivating the archive rule and then open a ticket with support to see if they can delete the table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2022 05:43 AM
I could not find the archive rule at all. I found the article of: https://docs.servicenow.com/bundle/sandiego-application-development/page/app-store/dev_portal/API_re...
and it gave me the commands of:
var tu = new TableUtils();
tu.dropTableAndExtensions("ar_u_product_incident");
I ran the commands and it looks like the table was deleted.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2022 05:22 AM
Thank you so very much for the reply! I will do as you note and report back.