Found 6702 Articles for Database

Create, Alter & Drop schema

Amrendra Patel
Updated on 22-Aug-2023 16:13:08

96 Views

Create a schema Schema is basically the logical representation of the database. there is a default schema named dbo. Objects gets created inside a schema when ‘create schema’ statement is used. To provide access to other user after the schema is created, we need to impersoinate permissions. Syntax:The syntax to create a schema is − Create schema schema_name Here, we have created a schema named schema_name. Example 1: Granting permissions In this example, we are going to create a schema and grant permissions to have access to that. Algorithm Step 1 − Create a schema. Step 2 − ... Read More

Create login in SQL Server

Amrendra Patel
Updated on 22-Aug-2023 15:09:44

186 Views

A login is a security check process to authenticate the user and make their data secure. In case of SQL, we need to login to connect to the server. Creating login for the server gives a security advantage. Also, security implications are to be understood and kept in mind while creating a login. A user will be granted the access of the database after user login is provided. Here, we are going to use various methods. Method 1: login with Password We are going to use simply the userid and password to login to the server. Syntax Create login ... Read More

Difference between Amazon S3 and Amazon EBS

Md. Sajid
Updated on 16-Aug-2023 13:19:12

1K+ Views

Amazon Web Services (AWS) provides a wide range of cloud storage services to satisfy a variety of needs. Amazon S3 (Simple Storage Service) and Amazon EBS (Elastic Block Store) are two prominent storage alternatives provided by AWS. Read this article to find out more about Amazon S3 and Amazon EBS and how they are different from each other. What is Amazon S3? Amazon S3 (Simple Storage Service) is a highly scalable and long-lasting object storage service offered by Amazon Web Services (AWS). It is designed to store and retrieve any amount of data from anywhere on the internet. S3 ... Read More

Difference between AFIS and Biometric Fingerprint Systems

Md. Sajid
Updated on 16-Aug-2023 13:15:05

196 Views

AFIS (Automated Fingerprint Identification System) and biometric fingerprint systems are used for fingerprint recognition and identification; however, they differ significantly in scope and functionality. Read this article to find out more about AFIS and Biometric fingerprint systems and how they are different from each other. What is AFIS? AFIS stands for Automated Fingerprint Identification System. It is a computer-based biometric technology that automates fingerprint identification and comparison. The fundamental goal of AFIS is to store, search, retrieve, and analyses massive amounts of fingerprint data for identification and investigation reasons. Law enforcement and forensic departments use AFIS to help solve ... Read More

How To Optimize MySQL Tables?

Mrudgandha Kulkarni
Updated on 09-Aug-2023 14:16:18

210 Views

Optimizing MySQL tables is a crucial step in improving the performance and efficiency of your database. By employing effective optimization techniques, you can enhance query execution speed, reduce storage requirements, and optimize resource utilization. This article explores various strategies and best practices to optimize MySQL tables, allowing you to maximize the performance of your database-driven applications. In this guide, we will discuss the importance of analyzing table structure and design, selecting appropriate data types, and normalizing the database schema. We will also delve into indexing strategies, including identifying indexing opportunities and optimizing indexes for query performance. Additionally, we will explore ... Read More

Airtable Alternatives

Shirjeel Yunus
Updated on 03-Aug-2023 17:18:24

113 Views

What is Airtable? Airtable is an online software which can be used to make and share relational databases. The user interface is simple and attractive because of its colorfulness. The tool helps you to make a database within a few minutes. The information can be stored, organized, and shared easily. There is no need to learn any scripting language or SQL to make a database and retrieve data. Price Plans of Airtable There are four price plans and the details can be found in the table below: Plan Cost Free $0 per seat per month ... Read More

DDL Full Form

Hardik Gupta
Updated on 02-Aug-2023 14:02:02

247 Views

Clients can store, direct, and recover information from data sets utilizing programming known as a data set administration framework (DBMS). DBMS languages and interfaces, an essential component of a DBMS, enable user interaction with the database system. Data Definition Language is known as DDL in SQL. It is a portion of SQL (Structured Query Language) that is used to specify and control a database's structure. Database objects like tables, indexes, views, and constraints are created, modified, and deleted using DDL commands. DDL Commands There are several DDL commands, such as − CREATE − The create command is used to ... Read More

DCL Full Form

Hardik Gupta
Updated on 02-Aug-2023 13:56:12

259 Views

Clients can store, direct, and recover information from data sets utilizing programming known as a data set administration framework (DBMS). DBMS languages and interfaces, an essential component of a DBMS, enable user interaction with the database system. Data Control Language is referred to as DCL in SQL. It is a part of the SQL (Structured Query Language) subset that deals with rights and authorization for database objects. To give or revoke rights, manage user access, and regulate the security features of a database system, DCL statements are utilized. DCL Commands There are several DCL commands, such as − ... Read More

DBMS Architecture 1-level, 2-Level, 3-Level

Hardik Gupta
Updated on 02-Aug-2023 13:49:08

1K+ Views

Database management systems (DBMS) are crucial tools for effectively managing and arranging enormous volumes of data. A DBMS's general structure and the way data is arranged and managed inside the system are referred to as its architecture. The 1-level, 2-level, and 3-level architectures are only a few of the several architectural concepts that have developed over time. We will examine the features, benefits, and use cases of each of these architectures in detail in this post. 1-Level Architecture The 1-level architecture, commonly referred to as monolithic or centralized architecture, is the most straightforward type of DBMS design. Data storage, query ... Read More

Date's Twelve Rules for Distributed Database Systems

Hardik Gupta
Updated on 02-Aug-2023 13:47:38

442 Views

It is critical to create standards and norms in the field of distributed database systems, where data is stored and handled over several interconnected nodes, in order to guarantee dependability, consistency, and efficiency. The "Date's Twelve Rules for Distributed Database Systems" is a series of guidelines developed in 1985 by prominent computer scientist C.J. Date to help with the design and implementation of distributed databases. These guidelines offer a framework for assessing distributed database systems' efficacy. We will examine each of Date's Twelve Rules in detail and consider their relevance to distributed data management in this post. Distribution Independence ... Read More

Previous 1 ... 4 5 6 7 8 ... 671 Next
Advertisements