ورود به حساب

نام کاربری گذرواژه

گذرواژه را فراموش کردید؟ کلیک کنید

حساب کاربری ندارید؟ ساخت حساب

ساخت حساب کاربری

نام نام کاربری ایمیل شماره موبایل گذرواژه

برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید


09117307688
09117179751

در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید

دسترسی نامحدود

برای کاربرانی که ثبت نام کرده اند

ضمانت بازگشت وجه

درصورت عدم همخوانی توضیحات با کتاب

پشتیبانی

از ساعت 7 صبح تا 10 شب

دانلود کتاب Analytical Data Processing in SQL

دانلود کتاب پردازش داده های تحلیلی در SQL

Analytical Data Processing in SQL

مشخصات کتاب

Analytical Data Processing in SQL

ویرایش:  
نویسندگان:   
سری:  
 
ناشر:  
سال نشر: 2023 
تعداد صفحات: 143 
زبان: English 
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 21 Mb 

قیمت کتاب (تومان) : 43,000



ثبت امتیاز به این کتاب

میانگین امتیاز به این کتاب :
       تعداد امتیاز دهندگان : 1


در صورت تبدیل فایل کتاب Analytical Data Processing in SQL به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب پردازش داده های تحلیلی در SQL نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی درمورد کتاب به خارجی



فهرست مطالب

Preface
	How to ask questions
	Acknowledgments
Prerequisites
	Lab setup
	The data model used in this book
	SQL & OLAP Basics
Understand your data; it’s the foundation for data processing
	Relate the data model to the business by understanding facts and dimensions
	Modifying granularity (aka roll up/group by) is the basis of analytical data processing
	Understanding what the data represents and the pipeline that generates the data helps you answer most business questions
Save time and money by storing data efficiently and reducing data movement (while querying)
	OLAP DB stores large datasets as chunks of data and processes them in parallel
	Reduce data movement (data shuffle) by understanding narrow and wide transformations
	Hash joins are expensive, but Broadcast joins are not
	Examine how your OLAP DB will process your query, then optimize it
	Reduce the amount of data to be processed with column-oriented formatting, partitioning, and bucketing
Calculate aggregate metrics but keep all the rows, rank rows, and compare values across rows with window functions
	Window = A set of rows identified by values present in one or more column(s)
	A window definition has a function, partition (column(s) to identify a window), and order (order of rows within the window)
	Calculate running metrics with Window aggregate functions
	Rank rows based on column(s) with Window ranking functions
	Compare column values across rows with Window value functions
	Choose rows to apply functions to within a window frame using ROWS, RANGE, and GROUPS
	Use query plan to decide to use window function when performance matters
Write easy-to-understand SQL with CTEs and answer common business questions with sample templates
	Use CTEs to write easy-to-understand queries and prevent re-processing of data
	Templates for Deduping, Pivots, Period-over-period (DoD, MoM, YoY) calculations, and GROUPing BY multiple column combinations in one query
Appendix: SQL Basics
	The hierarchy of data organization is a database, schema, table, and columns
	Use SELECT…FROM, LIMIT, WHERE, & ORDER BY to read the required data from tables
	Combine data from multiple tables using JOINs (there are different types of JOINs)
	Generate metrics for your dimension(s) using GROUP BY
	Use the result of a query within a query using sub-queries
	Change data types (CAST) and handle NULLS (COALESCE)
	Replicate IF.ELSE logic with CASE statements
	Stack tables on top of each other with UNION and UNION ALL, subtract tables with EXCEPT
	Save queries as views for more straightforward reads
	Use these standard inbuilt DB functions for common String, Time, and Numeric data manipulation
	Create a table, insert data, delete data, and drop the table




نظرات کاربران