What is the maximum number of Attachment per records
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
Hi Team,
Any body aware, how many attachments we can attach to a single record (lets say an Incident).
For some automation purpose, we are thinking to attach the files to one record and later assign to respective record.
In fact, we are trying to get the images loaded on db_image table via attachment table, we are getting images as attachment on one incident record and then with help of script trying to convert them as db_image record.
Just wanted to know how many attachments we can attach on one record like this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
Hello @madhuv
There is no out-of-the-box limit on the number of attachments that can be added to a single record (Incident, Problem, Change, etc.). You can attach as many files as needed — the platform doesn't enforce a hard cap on count
Please Accept the solution if it assisted you with your question & Mark this response as Helpful.
Regards
Bharat Chavan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
@madhuv There is no such platform limit on number of attachments that can be attached to a record.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
OOTB there is no limit mate, what is your use case here?
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/dratulgrover [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
Hi @BharatC ,
There isn't an out-of-the-box limit on the number of attachments that can be associated with a single record in ServiceNow. You can attach multiple files to the same Incident (or any other record) as long as your instance has sufficient storage and the attachment size is within the configured limits.
A few things to keep in mind:
-
The maximum file size for an individual attachment is controlled by system properties (for example,
com.glide.attachment.max_size). -
While there is no fixed limit on the number of attachments, having a very large number (hundreds or thousands) on a single record can impact UI performance, attachment loading, and scripts that process all attachments.
-
Also, attachments are not stored within the Incident (or other record) itself. Every attachment is stored separately in the
sys_attachmenttable, and the actual file content is stored in thesys_attachment_doctable. The record simply maintains a reference to its attachments.
If you found my solution helpful, please mark it as Helpful and Accept Solution. This helps others in the community find the answer more easily.