Found 6702 Articles for Database

The concept of indexing in Apache Cassandra

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

214 Views

Indexing in Apache Cassandra is a way to improve the efficiency and performance of queries on non-primary key columns. In Cassandra, data is organized in tables and each table has a primary key, which consists of one or more columns that uniquely identify each row in the table. Queries that use the primary key to retrieve data are very efficient, but queries that use other columns in the WHERE clause can be slower. Cassandra has secondary indexes that enable querying on columns other than the main key columns to solve this problem. A secondary index is built on a table's ... Read More

Computer-based control in Database

Hardik Gupta
Updated on 07-Sep-2023 14:45:59

147 Views

This article will provide a broad review of computer-based controls before moving into the computer-based controls in databases available in a multi-user database system. Let's discuss all of them one by one. A group of security procedures called computer-based controls are used in DBMSs to safeguard the database against illegal access, alteration, or destruction. These safeguards are intended to guarantee that the database can only be accessed by authorized users and that the data is safe from accidental or deliberate destruction. Physical controls and administrative processes are only a couple of the several remedies available to deal with threats to ... Read More

Components of Storage Area Network (SAN)

Hardik Gupta
Updated on 07-Sep-2023 14:28:00

459 Views

SAN stands for "Storage Area Network" in its complete form. Block-level data storage is offered via a Storage Area Network (SAN), a dedicated, autonomous, and ultra-speed network that gives different servers access to a common pool of storage devices. Data transmission between the server and storage device as well as data transfer between storage systems are the two major goals of storage area networks. Storage area networks are mostly used to access storage devices from servers, such as tape libraries and disk-based devices. Servers, network infrastructure, and storage make up the three main parts of a storage area network. Nevertheless, ... Read More

Components and Analysis of Star Schema Design

Hardik Gupta
Updated on 07-Sep-2023 14:38:23

166 Views

Star schema design is a type of database schema used in data warehousing that is designed to make querying and analyzing large datasets more efficient. The schema consists of a central fact table that contains the data to be analyzed and one or more dimension tables that provide additional information about the data in the fact table. Components of Star Schema A star schema is made up of four major components. These are as follows − Fact Table Dimension Table Attributes Attribute Hierarchies Let us go over them one by one − Facts These are monetary ... Read More

Complex Type Structures for Objects and Literals

Hardik Gupta
Updated on 07-Sep-2023 14:43:28

147 Views

Complex type structures for objects and literals are also crucial in the context of database management systems (DBMS). In this context, difficult types refer to data types that can store multiple values within a single column or attribute. This allows for more efficient and organized storage of complex data, such as arrays or nested objects, in a database. When it comes to databases, complex type structures for objects and literals can be incredibly useful for storing and retrieving data efficiently. In this article, we will explore how complex type structures can be implemented in databases, their advantages, and some of ... Read More

Hadoop vs Spark - Detailed Comparison

Satish Kumar
Updated on 23-Aug-2023 17:13:37

141 Views

Introduction Big Data has become a buzzword in the technology industry over the past decade. With vast amounts of data being generated every second, it's essential to manage and process it efficiently. That’s where Hadoop and Spark come into play. Both are powerful big data processing frameworks that can handle large datasets at scale. Hadoop Overview History and Development Hadoop was created by Doug Cutting and Mike Cafarella in 2005 while they were working at Yahoo. The project was named after a toy elephant that belonged to Cutting's son. Initially designed to handle large amounts of unstructured data, Hadoop has ... Read More

DDL(Data definition language)

Amrendra Patel
Updated on 22-Aug-2023 17:45:05

1K+ Views

Data Definition Language(DDL) is used for describing data and its relationship in a database. It is also used to define the database schema. The commands only affect the database structure and not the data. The main DDL commands are create, alter, drop and truncate. Create Statement It is used to create a database or table. While creating the table, we specify table_name, column_name followed by data_types(int, float, varchar, etc) and constraints(primary key, not null, etc) Syntax CREATE TABLE table_name ( column1 datatype, column2 datatype, ..... ) Example In this ... Read More

Data Control Language(DCL)

Amrendra Patel
Updated on 22-Aug-2023 17:41:11

799 Views

DCL(Data Control Language) work is to deal with sql commands that are used to permit a user to access, modify and work on a database. it is used to access stored data. It gives access, revoke access and change the permission to the owner of the database as per the requirement. It helps in how sql can use a user authority to modify or retrieve data and protect against unauthorised access. It complements data manipulation language(DML) and data definition language(DDL). It is the simplest among the three command It is basically used for enforcing data security. DCL Commands ... Read More

Data Replication

Amrendra Patel
Updated on 22-Aug-2023 17:38:04

734 Views

Data replication means copying the data at multiple locations to improve the availability of data. It is used to remove the inconsistency between the same data which results in a distributed database so that users can do their own task without interrupting the work of other users. There are various types of Data Replication in DBMS as follow − Types of Data Replication Transactional Replication It makes a full copy of the database along with the changed data. Transactional consistency is guaranteed because the order of data is the same when copied from publisher to subscriber database. It is ... Read More

Data Preprocessing in Data Mining

Amrendra Patel
Updated on 22-Aug-2023 17:35:20

14K+ Views

Data preprocessing is an important process of data mining. In this process, raw data is converted into an understandable format and made ready for further analysis. The motive is to improve data quality and make it up to mark for specific tasks. Tasks in Data Preprocessing Data cleaning Data cleaning help us remove inaccurate, incomplete and incorrect data from the dataset. Some techniques used in data cleaning are − Handling missing values This type of scenario occurs when some data is missing. Standard values can be used to fill up the missing values in a manual way but ... Read More

Advertisements