Category: DevOps
SQL is the language to interact with databases, so we need to make them as fast as possible as the Database Operations may usually be expensive. Use indexes Indices …
To create a Python script that manages MySQL database, we would typically need to perform operations such as connect to a MySQL server, create a database, create a table, …
Kubernetes is a de-facto standard to deploy and manage applications in the cloud. The cloud apps are running in pods (containers). With Kubernetes, the pods can restart themselves if …
When we talk stuff related to SQL Server and database, Recovery is an imperative objective that one shouldn’t underestimate. With Microsoft SQL Server, there are three different Recovery Models …
MySQL MyISAM database engine has been depreciated in the latest version since 5.5.1. The MyISAM is table locking while InnoDB (now the default database engine for MySQL since 5.5.1) …