Featured Post

SQL Interview Success: Unlocking the Top 5 Frequently Asked Queries

Image
 Here are the five top commonly asked SQL queries in the interviews. These you can expect in Data Analyst, or, Data Engineer interviews. Top SQL Queries for Interviews 01. Joins The commonly asked question pertains to providing two tables, determining the number of rows that will return on various join types, and the resultant. Table1 -------- id ---- 1 1 2 3 Table2 -------- id ---- 1 3 1 NULL Output ------- Inner join --------------- 5 rows will return The result will be: =============== 1  1 1   1 1   1 1    1 3    3 02. Substring and Concat Here, we need to write an SQL query to make the upper case of the first letter and the small case of the remaining letter. Table1 ------ ename ===== raJu venKat kRIshna Solution: ========== SELECT CONCAT(UPPER(SUBSTRING(name, 1, 1)), LOWER(SUBSTRING(name, 2))) AS capitalized_name FROM Table1; 03. Case statement SQL Query ========= SELECT Code1, Code2,      CASE         WHEN Code1 = 'A' AND Code2 = 'AA' THEN "A" | "A

Tutorial: SAP HANA Basics for Beginners

What is SAP HANA?

HANA stands for High-Performance Analytic Appliance. SAP HANA is a combination of hardware and software, and is therefore an appliance.

SAP HANA supports column- and row-level storage. We can store and perform analytics on a huge amount of real-time, non-aggregated transactional data. Hence, HANA acts as both a database and a warehousing tool, which helps in making decisions at the right time.

Challenges in Traditional RDBMS?

There are a few challenges in traditional databases, such as latency, the cost involved, and complexity in accessing databases.

Related: SAP HANA jobs and career options

What is Architecture of traditional RDBMS?

Presentation Layer:

This is the top-most layer and allows users to manipulate data so that they can input it for querying.

This data input from users is passed on to the database layer through the application layer and the results are passed back to the application layer to implement business logics.

The presentation layer can be anything—the web browser, SAP GUI, SAP BEx, SAP Business Objects, and so on. These tools will be installed on individual client machines.

Application Layer:

This layer is also called the business layer. All the business logic will be executed in this layer. It controls the application's functionality by performing detailed processing. This can be installed on one machine or distributed across more than one system.

Database Layer:

This layer receives data from the business layer and performs the required operation from the database. It contains database servers that store the data. Data is stored independently of application layers or business logics.

The database layer remains as an internal interface and is not exposed to the end users. The application layer has to access the data in the database only through this layer.

Most Popular Content

Best SAP HANA interview questions
These Course Contents You Need in Your SAP HANA Training

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

Explained Ideal Structure of Python Class

How to Check Kafka Available Brokers