Found 428 Articles for DBMS

Data Marts(storage component of HDFS)

Amrendra Patel
Updated on 22-Aug-2023 16:46:30

114 Views

Data mart is a storage component and only cares about some specific functional area of an organisation which are then taken care by a single department like marketing, sales, finance etc. Data Mart and Data Warehouse are both storage components of HDFS. Data Mart contains a subset of the data stored in the data warehouse. Frequently requested data can easily be accessed through data mart. Simple to Implement and cost is lower as compared to data warehouse. It is more open to change and its smaller size makes it quicker to build if any change in model occurs. ... Read More

Data Architecture Design & Data Management

Amrendra Patel
Updated on 22-Aug-2023 16:45:12

306 Views

Data architecture design consists of standards which have certain rules, policies, data types to be collected, from where the data is collected, storage of data, arrangement of data, and then using that data for further analysis. Data plays a vital role in successful execution of business strategy. Data architecture design It helps us to show how users view the data in the database. It describes the type of data structures used to manage data and make the processing easy. the concept of dbms depends on its architecture. It is divided into three models i.e. conceptual model, logical model ... Read More

Data anomalies in DBMS

Amrendra Patel
Updated on 22-Aug-2023 16:37:05

5K+ Views

Anomalies means problems or inconsistency which happened during the operations performed on the table. There can be many reasons that anomaly occur for example, It occurs when data is stored multiple times unnecessarily in the database i.e. redundant data is present or it occur when all the data is stored in a single table. normalization is used to overcome the anomalies. the different type of anomalies are insertion, deletion and updation anomaly. Input The same input is used for all three anomalies. Student ID Name Age Branch Branch_Code Hod_name 1 A 17 Civil 101 Aman ... Read More

Data abstraction & Data independence

Amrendra Patel
Updated on 22-Aug-2023 16:34:57

711 Views

Data abstraction Data abstraction implies concealing the subtleties that are irrelevant to the users. The database has a mind-boggling complex structure so to separate the information easily, several things are covered up and just pertinent part is open to the client through data abstraction. It is involved by designers to build proficiency for the recovery of data and to diminish the intricacy of given data. It consists of three levels: Physical or Internal Level, Logical or Conceptual Level, View or External Level. Three levels of data abstraction Physical or internal level It is the lowest level of abstraction which depicts ... Read More

Current user function in SQL

Amrendra Patel
Updated on 22-Aug-2023 16:27:22

138 Views

It is used to return the name of the current user in sql database server. it does not accept any parameter. Syntax CURRENT_USER Current_user is the function used to get the name of current user Example 1 In this example, we are going to use the current_user function to get the current user name. Input Employee Emp_id Name Dept_name Salary 1 Monu IT 50000 2 Sonu HR 60000 3 Golu Security 70000 This database is currently used by amrendra. Code SELECT CURRENT_USER;#selected current user name Output Amrendra ... Read More

Creating materialised view using table definition in cassandra

Amrendra Patel
Updated on 22-Aug-2023 16:19:18

41 Views

A materialised is defined as a database object that contains the results of a particular query. It could be called as a subset of a table. Any changes in the base table would be reflected in the materialised view. Syntax CREATE MATERIALISED VIEW view_name AS SELECT * FROM table_name WHERE column_name IS NOT NULL PRIMARY KEY (provide_primary_key) Here, view_name is the name of the materialised view, table_name is the base table, column_name are the columns provide_primary_key are the primary keys for the base table. Example 1 In this example, we are gonna have a ... Read More

Create, Alter & Drop schema

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

64 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

156 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

DDL Full Form

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

205 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

220 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

Previous 1 ... 5 6 7 8 9 ... 43 Next
Advertisements