0% found this document useful (0 votes)
17 views1 page

Data Analystics

Uploaded by

salvamartin2050
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views1 page

Data Analystics

Uploaded by

salvamartin2050
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

ETL : Extract --> Transform --> Load

Extract : Collect the Data From the Differnt Sources and Apply some Validation
Rules so that we can store the Data in the Data warehouse.
Transform : Clean the Data. Data PreProcessing : De Duplicate the Data, Remove Null
Values / Format the Data. (Data Modelling).
BigData : Column Database(Data Stored in Column Format) || RDBMS : Tables
to store Data
Data WareHouse : Stars and SnowFlake Schema (Convert data to Star and
Snowflake Data Models).

Load : Load the data into the DataWareHouse.

SSIS Definition
SQL Server Integration Services (SSIS) is a Microsoft SQL Server database built to
be a fast and flexible data warehousing tool to perform high-performance data
integrations.

What is SSIS ETL?


SSIS can be used for extraction, loading, and transformation (ETL) of data by
extracting data from multiple sources, such as SQL Server database, Oracle
database, and Excel files. It uses cleaning and merging processes to help make data
more informative.

What is SSAS (SQL Server Analysis Services)?

SQL Server Analysis Services (SSAS) is a multidimensional online analytical


processing (OLAP) server and an analytics engine used for data mining.
It allows IT professionals to break up large volumes of data into more easily
analyzed parts.
A component of Microsoft SQL Server, it helps enable analysis by organizing data
into easily searchable cubes.

What is MariaDB?

MariaDB is a secure enterprise database system using pluggable storage engines to


store and manage different types of data.

Largest Data Types :

1. CLOB (Character Large Object) : used for storing text.


2. BLOB (Binary Large Object) : used for storing images.
3. Long : used to store large integer values. (64 bits)(8 bytes)
(numbers :-9,223,372,036,854,775,808 to 9,223,372,036,854,775,807)
4. int : used to store integer values. (32 bit)(4 byte)
(numbers : -2,147,483,648 to 2,147,483,647)
5. short : used to store whole numbers. (16 bit)(2 byte)
(numbers : -32,768 to 32767)
6. byte : used to store whole numbers. (8 bit)(1 byte)(numbers :
-128 to 127)

You might also like