Amrendra Patel has Published 36 Articles

Data Mining Process

Amrendra Patel

Amrendra Patel

Updated on 22-Aug-2023 17:17:16

9K+ Views

The process of extracting the data from a huge dataset that can be used for analysis and benefit of the organization. Data mining process generally involves the following steps − Business understanding Business understanding and client objective is necessary. Clients needs are to be defined and then using the scenario, ... Read More

Data Mining multidimensional association rule

Amrendra Patel

Amrendra Patel

Updated on 22-Aug-2023 17:09:24

7K+ Views

Association rule mining helps us to find relationships among large dataset. In Multidimensional association, Multidimensional association rule comprises of more than one aspect Numeric attributes should be discretized. Attributes can be unmitigated or quantitative. Quantitative characteristics are numeric and consolidate pecking order. Three approaches in mining multidimensional association ... Read More

Data Marts(storage component of HDFS)

Amrendra Patel

Amrendra Patel

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

363 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 ... Read More

Data anomalies in DBMS

Amrendra Patel

Amrendra Patel

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

16K+ 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 ... Read More

Current user function in SQL

Amrendra Patel

Amrendra Patel

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

534 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 ... Read More

Creating materialised view using table definition in cassandra

Amrendra Patel

Amrendra Patel

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

121 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 ... Read More

Create, Alter & Drop schema

Amrendra Patel

Amrendra Patel

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

190 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 ... Read More

Create login in SQL Server

Amrendra Patel

Amrendra Patel

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

358 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 ... Read More

Data Distribution in Cassandra

Amrendra Patel

Amrendra Patel

Updated on 14-Jul-2023 15:49:15

456 Views

Data distribution is done through consistent hashing to make the data evenly distributed across the nodes in a cluster. Instead of getting rows of table on a single node, rows gets distributed across the clusters which make the load of table data get evenly divided. The partition key is ... Read More

Disadvantages of Distributed DBMS

Amrendra Patel

Amrendra Patel

Updated on 14-Jul-2023 15:44:14

2K+ Views

Distributed DBMS A distributed database is the distribution of data to get stored at different computers or sites that are interlinked to each other by a network. It can also be defined as a database that collects data over separate databases with self−reliant computers that are connected over data communication ... Read More

Advertisements