פרטים נוספים
whatsapp
לימודי הייטק ב-INT LIVE
טלפון

SQL Databases Developer Expert

בסיסי נתונים, Database, משמשים היום כמאגר המידע העיקרי והחשוב ביותר בכל ארגון. מדובר במערכת אשר כוללת את כל המידע שהארגון זקוק לו, בין אם זה מידע על הלקוחות, על הספקים ועל העובדים, נתוני מלאי, מכירות ועוד – כל מידע הקשור לפעילות הארגון נמצא בתוך אותם בסיסי נתונים.
(ימי ב')

 תאריך הקורס: 30/10/2024
 17:30-20:30

מהו קורס SQL Databases Developer?

SQL מאפשרת גישה למסדי נתונים יחסיים וביצוע פעולות על נתונים וטבלאות. בשפה משתמשים הרבה באפיון ובניית מערכות פנים ארגוניות, כיוון שהשפה מאפשרת למשתמשים להיכנס ל"מאחורי הקלעים" של המערכת, לשנות ולשתף במידע והכל בזכות השפה הידידותית שאפשרה יצירת תפריטים וניווט נוח במערכת.  מסלול התמחות זה מכשיר את המועמד למפתח בשפת – SQL, בדגש על ניסיון מעשי.

 

 

תיאור הקורס

בקורס זה נלמד כיצד לתכנן מערכות אחסון עובר BIG DATA תוך שימוש ב-SQL SERVER. נלמד כיצד לתכנן מסד נתונים גדול (של TB ואף מאות TB). נלמד כיצד להתמודד עם מספר מסדי נתונים הפועלים במקביל והפוכים למחסן נתונים ענק. נלמד כיצד לשלב בין מסדי נתונים פניים ארגוניים למסדי נתונים המצויים בענן ונלמד כיצד לבצע אופטימיזציית עליות כאשר מאחסנים נתונים בענן.

היקף שעות

40 שעות אקדמיות, 8 מפגשים.

קהל יעד ותנאי קבלה

מסלול הכשרה זה מיועד לבעלי רקע טכני במערכות מידע, מפתחים, ארכיקטים, בודקי תוכנה, אנשי תשתיות ומעצבי תוכנה אשר צריכים ליישם פתרונות BIG DATA תוך שימוש ב-SQL SERVER.

 

 

שאלות נפוצות על קורס SQL Databases Developer Expert

כן. מתכנתים רבים לומדים את שפת SQL, ביחד עם שפות תכנות אחרות. זאת, מאחר ובמהלך העבודה על תוכנות, יישומים ופונקציות שונות, יש צורך לעבוד עם בסיסי נתונים גדולים, שבעזרתם נהוג לאגור מידע ממוחשבים, הרי שיש צורך למתכנתים ללמוד את יסודות ה-SQL. כמו כן, גופים גדולים, דוגמת גופי ממשל, חברות מסחריות, עמותות וארגונים, עושים שימוש רב במסדי נתונים גדולים, אזי שגם הם נדרשים להעסיק מומחים שעברו קורסים ב-SQL.

בקורס נתמקד בנושאים הבאים:

Designing and Implementing Tables
Indexes
Stored Procedures & User-Defined Functions
Triggers
In-Memory Tables
Managed Code
Storing and Querying XML Data & Spatial Data
BLOBs and Text Documents
Concurrency
Performance and Monitoring

תוכנית לימודים

1
צורה
Introduction to Database Development | Designing and Implement Tables

Module 1

  • Introduction to the SQL Server Platform
  • SQL Server Database Development Tasks

Introduction to Database Development

  • Designing Tables
  • Data Types
  • Working with Schemas
  • Creating and Altering Tables
  • Hands-On Lab – Designing and Implementing Tables
    -Designing Tables
    -Creating Schemas
    -Creating Tables

Designing and Implementing Tables

  • Partitioning Data
  • Compressing Data
  • Temporal Tables
  • Hands-On Lab – Using Advanced Table Designs
    -Partitioning Data
    -Compressing Data

Advanced Table Designs

  • Enforcing Data Integrity
  • Implementing Data Domain Integrity
  • Implementing Entity and Referential Integrity
  • Hands-On Lab – Using Data Integrity Through Constraints

-Add Constraints
-Test the Constraints

 

 

 

Ensuring Data Integrity through Constraints

2
צורה
Introduction to Indexes | Designing Optimized Index Strategies | Columnstore Indexes

Module 2

  • Core Indexing Concepts
  • Data Types and Indexes
  • Heaps, Clustered, and Nonclustered Indexes
  • Single Column and Composite Indexes
  • Hands-On Lab – Implementing Indexes
    -Creating a Heap
    -Creating a Clustered Index
    -Creating a Covered Index

Introduction to Indexes

  • Index Strategies
  • Managing Indexes
  • Execution Plans
  • The Database Engine Tuning Advisor
  • Query Store
  • Hands-On Lab – Optimizing Indexes
    -Using Query Store
    -Heaps and Clustered Indexes
    -Creating a Covered Index

Designing Optimized Index Strategies

  • Introduction to Columnstore Indexes
  • Creating Columnstore Indexes
  • Working with Columnstore Indexes
  • Hands-On Lab – Using Columnstore Indexes
    -Creating a Columnstore Index
    -Create a Memory Optimized Columnstore Table

Columnstore Indexes

3
צורה
Designing and Implementing Views, Stored producers & User defined functions

Module 4

  • Introduction to Views
  • Creating and Managing Views
  • Performance Considerations for Views
  • Hands-On Lab – Designing and Implementing Views
    -Creating Standard Views
    -Creating an Updateable view

Designing and Implementing Views

  • Introduction to Stored Procedures
  • Working with Stored Procedures
  • Implementing Parameterized Stored Procedures
  • Controlling Execution Context
  • Hands-On Lab – Designing and Implementing Stored Procedures
    -Create Stored procedures
    -Create Parameterized Stored procedures
    -Changes Stored Procedure Execution Context

Designing and Implementing Stored Procedures

  • Overview of Functions
  • Designing and Implementing Scalar Functions
  • Designing and Implementing Table-Valued Functions
    Considerations for Implementing Functions
  • Alternatives to Functions
  • Hands-On Lab – Designing and Implementing User-Defined Functions
    -Format Phone numbers
    -Modify an Existing Function

Designing and Implementing User-Defined Functions

4
צורה
Responding to Data Manipulation via Triggers | Storing and Querying XML Data in SQL Server | Implementing Managed Code in SQL Server | Using In-Memory Tables

Module 5

  • Designing DML Triggers
  • Implementing DML Triggers
  • Advanced Trigger Concepts
  • Hands-On Lab – Responding to Data Manipulation by Using Triggers
    -Create and Test the Audit Trigger
    -Improve the Audit Trigger

Responding to Data Manipulation via Triggers

  • Memory-Optimized Tables
  • Natively Compiled Stored Procedures
  • Hands-On Lab – Using In-Memory Database Capabilities
    -Using Memory-Optimized Tables
    -Using Natively Compiled Stored procedures

Using In-Memory Tables

  • Introduction to CLR Integration in SQL Server
  • Implementing and Publishing CLR Assemblies
  • Hands-On Lab – Implementing Managed Code in SQL Server
    -Assessing Proposed CLR Code
    -Creating a Scalar-Valued CLR Function
    -Creating a Table Valued CLR Function

Implementing Managed Code in SQL Server

  • Introduction to XML and XML Schemas
  • Storing XML Data and Schemas in SQL Server
  • Implementing the XML Data Type
  • Using the Transact-SQL FOR XML Statement
  • Getting Started with XQuery
  • Shredding XML
  • Hands-On Lab – Storing and Querying XML Data in SQL Server
    -Determining when to use XML
    -Testing XML Data Storage in Variables
    -Using XML Schemas
    -Using FOR XML Queries
    -Creating a Stored Procedure to Return XML

Storing and Querying XML Data in SQL Server

5
צורה
SQL Server Concurrency | Performance and Monitoring| Storing and Querying Spatial Data, BLOBs and Text Documents

Module 6

  • Introduction to Spatial Data
  • Working with SQL Server Spatial Data Types
  • Using Spatial Data in Applications
  • Hands-On Lab – Working with SQL Server Spatial Data
    -Become Familiar with the Geometry Data Type
    -Add Spatial Data to an Existing Table
    -Find Nearby Locations

Storing and Querying Spatial Data in SQL Server

  • Considerations for BLOB Data
  • Working with FILESTREAM
  • Using Full-Text Search
  • Hands-On Lab – Storing and Querying BLOBs and Text Documents in SQL Server
    -Enabling and Using FILESTREAM Columns
    -Enabling and Using File Tables
    -Using a Full-Text Index

Storing and Querying BLOBs and Text Documents in SQL Server

  • Concurrency and Transactions
  • Locking Internals
  • Hands-On Lab – SQL Server Concurrency
    -Implement Snapshot Isolation
    -Implement Partition Level Locking

SQL Server Concurrency

  • Extended Events
  • Working with extended Events
  • Live Query Statistics
  • Optimize Database File Configuration
  • Metrics
  • Hands-On Lab – Monitoring, Tracing, and Baselining
    -Collecting and Analyzing Data Using Extended Events
    -Implementing Baseline Methodology

Performance and Monitoring

הרשמה לקורס


    שיחה עם נציג

    דילוג לתוכן