1. Microsoft SQL Server Documentation: In SQL Server
the status of scheduled backup jobs is recorded in the SQL Server Agent job history. The official documentation states
"You can monitor SQL Server Agent jobs from the Job Activity Monitor... You can also view the history for an individual job." This history is a form of server log.
Source: Microsoft Docs
"Monitor Job Activity". Section: "To view the history for an individual job".
2. Oracle Database Documentation: Oracle's Recovery Manager (RMAN) is the standard tool for backups. Its operations are logged. The documentation advises
"The primary sources of information about RMAN jobs are the RMAN output and the V$RMANBACKUPJOBDETAILS view... RMAN also records its actions in the control file of the target database." The database alert log also records the start and completion of RMAN jobs.
Source: Oracle Database Backup and Recovery User's Guide
19c. Chapter 14
"Monitoring RMAN Jobs and Sessions".
3. PostgreSQL Documentation: For PostgreSQL
backups are often performed using external scripts (e.g.
running pgdump) scheduled with a utility like cron. The standard practice is to log the output of these scripts. The PostgreSQL documentation on server administration notes the importance of logging: "There are many situations in which it is desirable to log server activity... This information can be invaluable for auditing and forensic analysis." This principle applies directly to auditing backup job execution.
Source: PostgreSQL 14 Documentation. Chapter 20
"Server Setup and Operation"
Section 20.8
"Error Reporting and Logging".