Earlier quoted context omitted.
While I do that, is that really the case? I can imagine database snapshots are consistent most of the time, but it can't be guaranteed, right? In the end it's like a server crash, the database suddenly stops.
Your DB is supposed to guarantee consistency even in server crashes. (The Consistency, Durability part of ACID).
e.g. The database might append to write-ahead logs in a different order than the order in which the backup tool reads them.