Database
| Database | ||||
|
Outside of configuring the server and the instance, how the database is configured has considerable effect on the overall performance of the system. | ||||
| Database Logging Mode | ||||
|
There are two logging modes for a database
There is a risk when using buffered logging that the database can potentially lose transactions if the system goes down before the log buffer is flushed to disk. Within an engine all databases share the same logical log buffer. Therefore, if one database is unbuffered and all the others are buffered, the logical log buffer will be flushed after every COMMIT in the database with unbuffered logging. This the only time one database can directly effect the performance of another. |