Found 112 Articles for SQL

Checkpoints in DBMS

Raunak Jain
Updated on 16-Jan-2023 17:57:06

8K+ Views

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

Check if Table, View, Trigger, etc present in Oracle

Raunak Jain
Updated on 16-Jan-2023 17:21:52

3K+ Views

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

Check Constraint in MS SQL Server

Raunak Jain
Updated on 16-Jan-2023 17:57:45

601 Views

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

Characteristics of SQL

Raunak Jain
Updated on 16-Jan-2023 17:59:43

1K+ Views

SQL, or Structured Query Language, is a programming language used for managing and manipulating relational databases. It is the standard language for relational database management systems, such as MySQL, Oracle, and Microsoft SQL Server. In this article, we will explore the characteristics of SQL and how they make it a powerful tool for working with databases. Introduction to SQL SQL is a declarative programming language, meaning that it is used to describe the desired outcome rather than the specific steps to achieve it. This makes it a powerful tool for working with databases because it allows users to focus on ... Read More

Characteristics and Functions of Data Warehouse

Raunak Jain
Updated on 16-Jan-2023 16:32:38

11K+ Views

Introduction A data warehouse is a powerful tool that allows organizations to store, manage, and analyze large amounts of data. It is designed to support the decision-making process by providing a centralized location for all of an organization's data. In this article, we will explore the characteristics and functions of a data warehouse and how it can benefit your business. Characteristics of a Data Warehouse Integrated Data One of the key characteristics of a data warehouse is that it contains integrated data. This means that the data is collected from various sources, such as transactional systems, and then cleaned, transformed, ... Read More

CHAR vs VARCHAR in SQL

Raunak Jain
Updated on 16-Jan-2023 17:41:07

3K+ Views

When it comes to storing character data in a database, there are two main types of fields you can use in SQL: CHAR and VARCHAR. While both can be used to store character data, they have some important differences that you should be aware of in order to make the best use of them in your database design. Length and Storage The first major difference between CHAR and VARCHAR is the way they store data. CHAR is a fixed-length field, which means that every record that uses it takes up the same amount of space. For example, if you have ... Read More

Types of Two Phase Locking (Strict, Rigorous & Conservative) in DBMS

Raunak Jain
Updated on 16-Jan-2023 17:43:59

11K+ Views

Two Phase Locking (2PL) is a fundamental technique used in database management systems to ensure the consistency and isolation of concurrent transactions. In this article, we will discuss the three categories of 2PL: strict 2PL, rigorous 2PL, and conservative 2PL, and explain how they differ in terms of their locking protocols. We will also provide code examples with explanations to illustrate how these categories can be implemented in practice. Introduction to Two-Phase Locking Before diving into the specific categories of 2PL, let's first review the basics of 2PL. Two Phase Locking is a technique used to control concurrent access to ... Read More

What are Structured and Unstructured Data?

Parth Shukla
Updated on 16-Jan-2023 13:00:15

697 Views

Introduction In machine learning, the data and its quality are one of the most critical parameters affecting the performance and other parameters while training and deploying the machine learning model. It is assumed that if good-quality data is provided to a poorly performing machine learning algorithm, there is a high chance of better performance than ever from the algorithm and vice versa. In this article, we will discuss the two common types of data: structured and unstructured data. Here we will discuss their definitions and the core intuition behind them, followed by some other meaningful discussion. Knowledge about these key ... Read More

CAST function in Cassandra

Raunak Jain
Updated on 12-Jan-2023 12:56:55

941 Views

Introduction to the CAST Function in Cassandra Cassandra is a highly scalable and distributed NoSQL database that is well-suited for storing and managing large amounts of data. One of the key features of Cassandra is its powerful query language, CQL (Cassandra Query Language), which allows you to easily retrieve and manipulate data stored in Cassandra. One useful function in CQL is the CAST function, which allows you to change the data type of a column or expression. This function is particularly useful when you need to perform calculations or comparisons on data that have different data types. In this article, ... Read More

Cascadeless in DBMS

Raunak Jain
Updated on 12-Jan-2023 12:49:37

858 Views

Cascadeless in DBMS: Understanding and Implementing the Concept A database management system (DBMS) is a software that is used to store, organize, and manage data in a structured manner. One of the key concepts in DBMS is cascading, which refers to the automatic propagation of changes made to the data in one table to the related data in other tables. While cascading can be convenient in many cases, it can also lead to unintended consequences, such as data loss. To mitigate this, many DBMSs allow for the use of cascadeless operations, which prevent cascading from taking place. In this article, ... Read More

Previous 1 ... 3 4 5 6 7 ... 12 Next
Advertisements