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

Aws QuickSight quick tutorial

aws quicksight

Amazon QuickSight is a very fast, cloud-powered business intelligence (BI) service that makes it easy for all employees to build visualizations, perform ad-hoc analysis, and quickly get business insights from their data.

Amazon QuickSight Architecture uses a new, Super-fast, Parallel, In-memory Calculation Engine (“SPICE”) to perform advanced calculations and render visualizations rapidly.

Amazon QuickSight integrates automatically with AWS data services, enables organizations to scale to hundreds of thousands of users, and delivers fast and responsive query performance to them via SPICE’s query engine.

At one-tenth the cost of traditional solutions, Amazon QuickSight enables you to deliver rich BI functionality to everyone in your organization.

  1. Easily connect Amazon QuickSight to AWS data services, including Amazon Redshift, Amazon RDS, Amazon Aurora, Amazon EMR, Amazon DynamoDB, Amazon S3, and Amazon Kinesis; upload CSV, TSV and spreadsheet files; or connect to third-party data sources such as Salesforce.
  2. Amazon QuickSight automatically infers data types and relationships and provides suggestions for the best possible visualizations, optimized for your data, to help you get quick, actionable business insights.
  3. Amazon QuickSight uses SPICE – a Super-fast, Parallel, In-memory optimized Calculation Engine built from the ground up to generate answers on large datasets.
  4. Securely share your analysis with others in your organization by building interactive stories for collaboration using the storyboard and annotations. 
  5. Recipients can further explore the data and respond back with their insights and knowledge, making the whole organization efficient and effective.

Related: AWS - Cloud computing online Training

Amazon QuickSight provides partners a simple SQL-like interface to query the data stored in SPICE so that customers can continue using their existing BI tools from AWS BI Partners while benefiting from the faster performance delivered by SPICE.

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