- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 276 Articles for DBMS

Updated on 22-Feb-2023 16:49:01
The handling of missing or incorrect values in queries that change the data is governed by MySQL Strict Mode. This contains the CREATE TABLE, UPDATE, and INSERT statements. When attempting to process the query with MySQL Strict Mode enabled, which is the default setting, invalid or missing data may result in warnings or failures. When Strict Mode is turned off, the identical query would have its missing or incorrect data modified and would result in a straightforward warning. This could appear to be the desired outcome, but with Strict Mode turned off, certain activities might have unanticipated effects. For instance, ... Read More 
Updated on 22-Feb-2023 16:47:26
In this article, we are going to learn about collecting Mysql statistics and Metrics. Performance Dashboard View statistics about server performance in a dashboard. Open a query tab, choose the Management tab, and then click Dashboard in the Performance section of the Navigator sidebar to display the dashboard. The informational structure of the Administration - Dashboard tab is depicted in the following image. Performance: Dashboard Network Status This displays data on network traffic that the MySQL server has transmitted and received via client connections. The incoming network traffic, outgoing network traffic, and client connections are examples of data ... Read More 
Updated on 16-Jan-2023 17:28:46
MS Access is a powerful database management system that allows users to easily organize, store, and manipulate large amounts of data. Among the many built-in functions that MS Access offers, the Chr() and Asc() functions are particularly useful when working with strings. In this article, we will take a closer look at these functions, including what they do, how to use them, and real-life examples of when they can be applied. Understanding the Chr() Function The Chr() function in MS Access is used to return the character that corresponds to a specific ASCII value. The function takes a single argument, ... Read More 
Updated on 16-Jan-2023 17:57:06
Introduction A checkpoint in a database management system (DBMS) is a process that saves the current state of the database to disk. This allows for faster recovery in the event of a system failure or crash. In this article, we will explore the concept of checkpoints in DBMS, including how they work, the different types of checkpoints, and their real-world applications. What is a Checkpoint? A checkpoint is a process that saves the current state of the database to disk. This includes all transactions that have been committed, as well as any changes that have been made to the database ... Read More 
Updated on 16-Jan-2023 17:24:31
Introduction Apache Cassandra is a highly-scalable, high-performance distributed database that is designed to handle large amounts of data across many commodity servers. As a result, it's important to keep an eye on the health of your Cassandra cluster to ensure that it's running smoothly and that there aren't any issues that could impact performance or availability. In this article, we'll go over the different ways to check the health of your Cassandra cluster and what to look for to identify potential issues. Understanding Cassandra Cluster Health Before diving into how to check the health of your Cassandra cluster, it's important ... Read More 
Updated on 16-Jan-2023 17:21:52
Introduction Oracle is a powerful, versatile relational database management system that is widely used in the enterprise. One of the most common tasks when working with Oracle is to check if a specific object, such as a table, view, trigger, or other types of object, exists in the database. This can be useful for a variety of purposes, such as validating input data, checking for dependencies, and more. In this article, we will explore several methods for checking if a table, view, trigger, or other object exists in Oracle. Using the "DBA_OBJECTS" View One of the easiest and most straightforward ... Read More 
Updated on 16-Jan-2023 17:57:45
Introduction SQL Server is a powerful relational database management system that is widely used in various industries. One of the key features of SQL Server is its ability to enforce constraints on data to ensure data integrity and consistency. One such constraint is the check constraint, which allows users to specify a Boolean expression that must evaluate to true for any data that is inserted or updated in a specific column or table. In this article, we will discuss the concept of check constraints in SQL Server, how to create and implement them, and real-world examples of their use. What ... Read More 
Updated on 16-Jan-2023 17:55:45
Introduction In the field of database management systems, concurrency control is an important aspect of maintaining the consistency of data. One of the most widely used methods for ensuring consistency is serializability, which is a concept that characterizes schedules based on their ability to produce the same results as if the transactions were executed one at a time in some order. In this article, we will explore the concept of serializability in scheduling and how it can be used to ensure consistency in a concurrent system. What is Serializability? Serializability is a concept that is used to ensure that the ... Read More 
Updated on 16-Jan-2023 17:58:32
Introduction In the field of database systems, one of the most important concepts is that of recoverability. Recoverability refers to the ability of a system to restore its state in the event of failure. In order to ensure that a system is recoverable, it is necessary to understand the different types of schedules that can be used, and how they impact the recoverability of a system. In this article, we will explore the various types of schedules that can be used in database systems, and how they impact the recoverability of a system. We will also provide examples of each ... Read More 
Updated on 16-Jan-2023 17:59:12
Introduction A database is a collection of data that is organized in a specific way, making it easy to access, manage, and update. The database approach is a method of designing and implementing a database that emphasizes the use of a specific set of characteristics to ensure that the data is accurate, consistent, and easily accessible. In this article, we will explore the key characteristics of the database approach and how they are used to design and implement effective databases. Data Independence One of the most important characteristics of the database approach is data independence. This refers to the ability ... Read More Advertisements