Found 337 Articles for DBMS

What is the difference Rename and Alias In DBMS

Aarti Kaushik
Updated on 06-Nov-2023 15:25:07

299 Views

In this article, we are going to study Rename and Alias. Both these have their specific role when we talk in terms of DBMS. Renaming and aliases to the elements of the database provide a layer of abstraction and make the attributes of the relation presentable for the viewer. Mostly, Database store crucial information the concepts of renaming and aliasing plays an important role in representing data with efficiency. Let's gain an understanding of these concepts, their syntax, and the difference between them. What is Alias? Alias is an alternative name given to a column in the database Management System. This practice ... Read More

NoSQL Systems VS Traditional Database Systems

Aarti Kaushik
Updated on 06-Nov-2023 14:42:25

180 Views

As individuals, we often save our data on devices like laptops and phones, but rarely do we consider the databases that underlie these storage systems. Databases are the place where organizations can easily store their data. DBMS is used to manage the database. In this article, we will study the two specific databases NoSQL and Traditional Database. However, their designs diverge, resulting in distinct approaches to data storage and retrieval. Let's explore the below article which gives you depth of understanding about the key differences in each of them. What is a NoSQL Database? When we say NoSQL it sounds ... Read More

phpMyAdmin Alternatives

Shirjeel Yunus
Updated on 28-Sep-2023 14:17:46

410 Views

What is phpMyAdmin? phpMyAdmin is a software application which can be used to administer MySQL on the internet. The platform can be used to do a lot of things in MariaDB and MySQL. The operations include the management of databases and their parts like tables, columns, indexes, relations, permissions, users, and many more. The app can also be used to execute any SQL statement. A wide variety of documentation is also available and users are also allowed to update the wiki pages of the app. Why phpMyAdmin Alternatives? It supports only MariaDB and MySQL It is not ... Read More

Exception Handling in Distributed System

Satish Kumar
Updated on 27-Sep-2023 15:22:22

457 Views

Introduction In context of distributed systems, exception handling refers to process of detecting, diagnosing, and recovering from errors that occur in a distributed system. In such systems, errors can occur at any point in communication and coordination process, including network failures, hardware malfunctions, and software bugs. Thus, effective exception handling is crucial to ensure reliability and availability of a distributed system. In this article, we will explore various techniques and best practices for exception handling in distributed systems. Importance of Exception Handling in Distributed Systems In a distributed system, multiple processes run on different machines and communicate with each other ... Read More

Evolution of Distributed Computing Systems

Satish Kumar
Updated on 27-Sep-2023 15:09:55

2K+ Views

Introduction Distributed computing systems refer to a network of interconnected devices that share resources and work together to achieve a common goal. evolution of distributed computing systems has been rapid, and it has transformed way we use technology in our daily lives. From simple file sharing systems to advanced cloud computing, distributed computing systems have come a long way. In this article, we will discuss evolution of distributed computing systems and explore some of examples. Early Days of Distributed Computing The early days of distributed computing can be traced back to 1960s, where researchers began experimenting with idea of sharing ... Read More

Event Ordering in Distributed System

Satish Kumar
Updated on 27-Sep-2023 15:08:10

1K+ Views

Introduction Distributed systems have become an integral part of our modern-day technological infrastructure. They have made it possible to deliver services at scale, provide better resilience, and enable better fault tolerance. However, designing distributed systems is a challenging task, and one of most significant challenges is maintaining ordering of events in system. This article will discuss event ordering in distributed systems and provide examples of different techniques used to achieve it. Event Ordering Event ordering is essential in distributed systems because it determines order in which events occur. In a distributed system, events can happen concurrently on different nodes, and ... Read More

Connectivity of ODBC

Hardik Gupta
Updated on 07-Sep-2023 15:21:49

235 Views

Open Database Connectivity (ODBC) is a common API (Application Programming Interface) that enables programmes to connect to different database management systems (DBMS) using a standardised interface. Regardless of how a database's native interface is configured, the ODBC interface offers a consistent mechanism for programmes to communicate with it. The connectivity of ODBC, including its design, drivers, and connections, will be examined in more detail in this article. ODBC Architecture Flow Diagram of ODBC Architecture The three primary parts of the ODBC architecture are the application, the ODBC Driver Manager, and the ODBC driver. Each piece of software that needs ... Read More

Configuring Clusters in Cassandra

Hardik Gupta
Updated on 07-Sep-2023 15:20:37

81 Views

Cassandra is a NoSQL database that is made to manage massive volumes of data over several nodes and is extremely scalable. Data distribution over numerous nodes in a cluster, which enables high availability and fault tolerance, is one of Cassandra's core characteristics. In this post, we'll go through the syntax and examples for configuring Cassandra clusters. Configuring a Cassandra Cluster Let's first talk about the fundamental structure of a Cassandra cluster before getting into the specifics of constructing one. Many nodes, each of which can either be a seed node or a normal node, make up a Cassandra cluster. The ... Read More

Conditionally Updating Columns

Hardik Gupta
Updated on 07-Sep-2023 15:10:10

58 Views

In conclusion, creating a Cassandra cluster entails selecting the seed nodes, setting the replication factor, configuring the IP addresses and ports for each cluster node, as well as additional configuration options like the cluster name. The main configuration file for Cassandra clusters is the cassandra.yaml file. Cassandra clusters may offer high availability and fault tolerance for massive volumes of data with the proper configuration. You may effectively configure a Cassandra cluster to suit your unique requirements by adhering to the syntax and examples shown in this article. Syntax UPDATE table_name SET column1 = value1, column2 = value2, ... WHERE condition; ... Read More

Condition of schedules to View-equivalent

Hardik Gupta
Updated on 07-Sep-2023 15:06:14

335 Views

View-equivalence is a term used in database management systems to describe the circumstance in which two schedules, when applied to the same database, yield the same result set. This requirement is necessary to guarantee data correctness and consistency in database applications. There are requirements that schedules must meet in order to achieve view equality. These circumstances are − Conflict Serializability − The conflicting operations in a schedule must be performed in the same sequence for it to be conflict serializable. Operations that access the same data item and at least one of which affects the data are said to ... Read More

Advertisements