
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 6705 Articles for Database

7K+ Views
An architecture pattern is a way of organizing data in a logical and structured manner. So, it can be stored and accessed efficiently. NoSQL databases are different from traditional relational databases. Because Tables are not used to store data in it. It uses document-oriented, key-value or graph formats. It makes them more flexible. NoSQL databases can handle a wide variety of data types and sizes. It is suitable for big data applications. It can also provide faster performance than traditional relational databases. It is therefore ideal for applications that require real-time data processing. Architecture Patterns of NoSQL There are given ... Read More

66K+ Views
Normalization is a process of organizing data in a database to reduce redundancy and improve data consistency. Primary keys are really important in organizing information in a database. They help to make sure that every row in a table has a unique identification so that nothing gets mixed up or lost. In this article, we will discuss the different normal forms of database normalization. Normalization Normalization is a process of organizing the data in database to avoid data redundancy, insertion anomaly, update anomaly & deletion anomaly. Normalization is the process of organizing data in a database to minimize redundancy ... Read More

2K+ Views
Neo4j database is one of the most popular choices in graph databases. One of the reasons for this is its powerful query language, Cypher. Neo4j has developed its own query language called Cypher, which differs from SQL in that it operates on nodes rather than tables, rows, and columns. Its syntax is similar to SQL. But it is better suited for working with graph data. This is because Neo4j is a graph database that stores data in nodes and relationships. It can be visualized in a graph format rather than the traditional table format. In this article, we will discuss ... Read More

10K+ Views
In this article, we will discuss multimedia databases, its data representation, data storage, data retrieval, data management and applications of multimedia databases. Introduction To store pictures, videos, and sounds that people use for learning, fun, health, and advertising. We need a multimedia database. A multimedia database has all kinds of information, like words, pictures, sounds, and videos. It keeps track of all this information and finds data easily. These databases enable the storage and retrieval of multimedia data components. All media files in these databases are stored as binary strings and encoded according to their file types. Let's explore the ... Read More

4K+ Views
Normalization is a process of organizing data in a database to reduce redundancy and improve data consistency. Primary keys are really important in organizing information in a database. They help to make sure that every row in a table has a unique identification so that nothing gets mixed up or lost. In this article, we will discuss different normal forms based on primary keys and their importance in ensuring data consistency. Introduction Let's discuss how we make sure that data in databases is organized properly. We use something called "functional dependencies" to help us do this. Each table in ... Read More

35K+ Views
Structured Query Language (SQL) is a programming language. SQL is used to manage data stored in a relational database. SQL has the ability to nest queries. A nested query is a query within another query. A nested query allows for more complex and specific data retrieval. In this article, we will discuss nested queries in SQL, their syntax, and examples. Nested Query In SQL, a nested query involves a query that is placed within another query. The output of the inner query is used by the outer query. A nested query has two SELECT statements: one for the inner query ... Read More

1K+ Views
Multiple relation queries and JOIN ordering are crucial components of modern database management systems (DBMSs). The execution of multiple relation queries can be challenging because they involve multiple tables, and the order of JOIN operations can affect query performance significantly. Query optimization is a vital aspect of DBMS, as it ensures that queries are executed efficiently. In this article, we will discuss challenges of executing multiple relation queries, techniques for optimizing JOIN ordering, factors that affect JOIN ordering, best practices for optimizing multiple relation queries, and JOIN ordering, and examples of optimization. Introduction Multiple relation queries involve the execution ... Read More

16K+ Views
In this article, we will discuss multilevel indexes in RDBMS, their types, and examples. In Relational Database Management Systems (RDBMS), indexes are essential data structures that allow faster data retrieval by reducing the number of disk accesses required to retrieve data. But, traditional indexes can become inefficient as the database size grows. Multilevel indexes provide a solution to this problem by dividing the index into smaller, manageable pieces. Indexing Indexing helps to optimize the performance of a database. It minimizes the number of disk accesses required when a query is processed. It is a data structure technique which is used ... Read More

6K+ Views
In this article, we will discuss the Multi-tier architecture of Data Warehouse. Introduction A data warehouse is like a big storage house where information is kept so that people can use it to make better decisions. This information comes from different places like databases and other systems that keep track of transactions. It gets added to the warehouse regularly. The warehouse is a central place where all this data is organized and can be easily analyzed. It consolidates data from different sources. It transforms into a format that can be accessed and analyzed. To ensure the efficient functioning of a ... Read More

747 Views
This is a protocol used to control concurrency in a distributed database environment. It helps to ensure the consistency and integrity of data in distributed database systems. Concurrency control in databases allows multiple transactions to access the same data simultaneously. In this article, we will discuss the rules and regulations. That is required to keep in mind while applying MOSS Concurrency Control Protocol. Overview of Distributed Locking Distributed locking is a mechanism. It is used to synchronize access to shared resources in a distributed computing environment. It involves locking shared resources to prevent other transactions from accessing them concurrently. Distributed ... Read More