SlideShare a Scribd company logo
MSSQL-Server Database
Waan – Corvit Systems
Introduction to SQL-Server
SQL-Server
â–Ş Central part of the Microsoft Data
Platform
â–Ş Operational Database Management
System (ODBMS)
â–Ş Cross-Platform (Windows, Linux, Docker
& Kubernetes)
â–Ş Providing advanced data services
(Database Engine, SSIS, MDS, SSAS,
SSRS & Machine Learning Services)
https://www.microsoft.com/en-us/sql-server
SQL-Server Components
â–Ş SQL Server Database Engine Services
â–Ş SQL Server Integration Services (SSIS)
â–Ş SQL Server Master Data Services (MDS)
â–Ş SQL Server Analysis Services (SSAS)
â–Ş SQL Server Reporting Services (SSRS)
â–Ş SQL Server Machine Learning Services
SQL-Server Connectors
â–Ş MicrosoftADO.NET for SQL Server
â–Ş Microsoft JDBC Driver for SQL Server
â–Ş Microsoft ODBC Driver for SQL Server
â–Ş Node.js Driver for SQL Server
â–Ş Python Driver for SQL Server
â–Ş Ruby Driver for SQL Server
Editions of SQL-Server
SQL-Server Editions
â–Ş Enterprise
â–Ş Standard
â–Ş Web
â–Ş Developer
â–Ş Express
https://www.microsoft.com/en-us/sql-server/sql-server-2017-editions
Platforms of SQL-Server
SQL-Server Platforms
â–Ş Linux (RHEL, Ubuntu & SLES)
â–Ş Windows
â–Ş Windows Server
â–Ş Virtual Machine in Azure
â–Ş Docker
â–Ş macOS
â–Ş Kubernetes (Next)
Windows
Docker
Linux
Build an app using SQL-Server
Client Programming to SQL-Server
â–Ş C# using ADO.NET & EF
â–Ş Python & R
â–Ş Java
â–Ş Node.js
â–Ş Ruby
â–Ş Go
â–Ş C++
â–Ş PHP
GUI & Cmd Tools of SQL-Server
SQL-Server GUI Tools
â–Ş Azure Data Studio (ADS)
â–Ş SQL Server Management Studio (SSMS)
â–Ş Visual Studio Code (VS Code)
â–Ş SQL Server DataTools (SSDT)
â–Ş Power BI
SSMS
VS Code
ADS
SQL-Server Command-Line Tools
â–Ş mssql-cli
â–Ş sqlpackage
â–Ş SQL Server PowerShell
â–Ş sqlcmd
â–Ş bcp
â–Ş mssql-scripter
â–Ş mssql-conf
Introduction to Databases
Database
A database is made up of a collection of tables that stores a specific set
of structured data. A table contains a collection of rows, also referred to
as records or tuples, and columns, also referred to as attributes. Each
column in the table is designed to store a certain type of information,
for example, dates, names, amounts, and numbers.
Relational Data Model in DBMS
Id Name AccountName Status
1 Bilal Google Active
2 Khalil Amazon Active
3 Ahmad Microsoft Inactive
4 Rizwan Amazon Active
Column/Attribute/Field (Domain)
Entity/Relation (Table)
(Primary Key)
Entity Integrity
Row
/Tuple
(Record)
Methods of Data Storage
â–Ş Text File (CSV)
â–Ş Spreadsheet (MS Excel)
â–Ş Database Software (MS Access, Oracle, MS SQL Server, MySQL etc.)
SQL-Server Database
A computer can have one or more than one instance of SQL Server
installed. Each instance of SQL Server can contain one or many
databases. Within a database, there are one or many object ownership
groups called schemas. Within each schema there are database objects
such as tables, views, and stored procedures. Some objects such as
asymmetric keys are contained within the database, but are not
contained within a schema.
Database-as-a-Service (DBaaS) Solutions
â–Ş MicrosoftAzure
▪ MongoDB – Atlas
▪ AmazonWeb Services (AWS) – Aurora
▪ Google Cloud Platform (GCP) – BigQuery
▪ IBM – Db2
â–Ş SAP
Types of Database
NoSQL
â–Ş UnStructured Query Language
â–Ş Non-Relational Database
â–Ş Document based Databases
â–Ş Based on CAPTheorem
â–Ş Used for OLAP
â–Ş Not a good for complex queries
SQL
â–Ş Structured Query Language
â–Ş Relational Database
â–Ş Table based Databases
â–Ş Based on ACID Properties
â–Ş Used for OLTP
â–Ş Good for complex queries
SQL and NoSQL Popular Databases
Database ER-Diagrams
Database ER-Diagram
SQL-Server Connectors
SQL-Server 2017 Installation
https://www.microsoft.com/en-us/sql-server/sql-server-downloads
@@VERSION – T-SQL Configuration Function
â–Ş Returns system and build information for the current installation of
SQL Server.
– SQL Server version
– Processor architecture
– SQL Server build date
– Copyright statement
– SQL Server edition
– Operating system version
â–Ş SELECT @@VERSION AS ' Column Name';
SQL-Server Version
SSMS 18 Installation
https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-
ssms?view=sql-server-2017
Connect to the SQL-Server using SSMS
Azure Data Studio Installation
https://docs.microsoft.com/en-us/sql/azure-data-studio/download?view=sql-server-2017
Connect to the SQL-Server using ADS
Azure Data Studio
Querying Data with Transact-SQL
What is Transact-SQL?
â–Ş Structured Query Language (SQL)
– Developed by IBM in 1970s
– SQL common RDBMS database language
– Widely used in industry
– SQL is declarative, not procedural
– Describe what you want, don’t specify steps
â–Ş Transact-SQL
– Microsoft implementation
– Referred to asT-SQL
– Query language for SQL-Server andAzure DB
Transact-SQL Database Objects
â–Ş Tables
â–Ş Views
â–Ş Indexes
â–Ş Sequences
â–Ş Synonyms
â–Ş Stored Procedures (SP)
â–Ş Functions
â–Ş Triggers
Tables
Views
Indexes
Sequences
Synonyms
Stored-
Procedures
Triggers
Transact-SQL Data Types
â–Ş Exact Numerics
â–Ş Approximate Numerics
â–Ş Character Strings
â–Ş Unicode Character Strings
â–Ş Binary Strings
â–Ş Date andTime
â–Ş Other data types
Exact Numerics Data Types
Transact-SQL Exact Numeric Data Types
bigint -2^63 (-9,223,372,036,854,775,808) to 2^63-1 (9,223,372,036,854,775,807)
(8-Bytes)
int -2^31 (-2,147,483,648) to 2^31-1 (2,147,483,647) (4-Bytes)
smallint -2^15 (-32,768) to 2^15-1 (32,767) (2-Bytes)
tinyint 0 to 255 (1-Byte )
bit 0 to 1 (1-Byte )
decimal -10^38+1 to 10^38-1 (5 to 17 Bytes)
numeric -10^38+1 to 10^38-1 (5 to 17 Bytes)
money -922,337,203,685,477.5808 to +922,337,203,685,477.5807 (8-Bytes)
smallmoney - 214,748.3648 to 214,748.3647 (4-Bytes)
Approximate Numerics Data Types
Transact-SQL Approximate Numeric Data Types
float -1.79E+308 to 1.79E+308
(Memory depends on the value of n) (Precision 7-Digit)
real -3.40E+38 to 3.40E+38
(Memory 4-Bytes) (Precision 15-Digit)
Character Strings Data Types
Transact-SQL Character Strings Data Types
char
text
varchar
Unicode Character Strings Data Types
Transact-SQL Unicode Character Strings Data Types
nchar
ntext
nvarchar
Binary Strings Data Types
Transact-SQL Binary Strings Data Types
binary
image
varbinary
Date and Time Data Types
Transact-SQL Date and Time Data Types
date
datetime2
datetime
datetimeoffset
smalldatetime
time
Other data types
Transact-SQL Other data types
cursor
hierarchyid
sql_variant
Spatial Geometry
Types
table
rowversion
uniqueidentifier
xml
Spatial
Geography Types
Transact-SQL Statements
â–Ş Query Statements
â–Ş Data Definition Language (DDL) statements
â–Ş Data Manipulation Language (DML) statements
â–Ş Data Control Language (DCL) statements
â–Ş Transaction Control Language (TCL) statements
Transact-SQL Language Elements
â–Ş Core elements
â–Ş Batches, Control-of-flow andVariables
â–Ş Operators
â–Ş Wildcard characters to match
â–Ş Functions
â–Ş SET statements
â–Ş Procedures
â–Ş We will start with common query
statements.
Transact-SQL Common Query Statements
â–Ş SELECT
â–Ş FROM
â–Ş WHERE
â–Ş GROUP BY
â–Ş HAVING
â–Ş ORDER BY
â–Ş Statements for defining database objects
Transact-SQL Data Definition Language
â–Ş CREATE
â–Ş ALTER
â–Ş DROP
â–Ş Statements for querying and modifying
data
Transact-SQL Data Manipulation Language
â–Ş SELECT
â–Ş INSERT
â–Ş MERGE
â–Ş UPDATE
â–Ş DELETE
â–Ş Statements for assigning security
permissions
Transact-SQL Data Control Language
â–Ş GRANT
â–Ş REVOKE
â–Ş DENY
â–Ş Statements for mange and control
database transaction
Transact-SQL Transaction Control Language
â–Ş BEGIN
TRANSACTION
â–Ş COMMIT
TRANSACTION
â–Ş ROLLBACK
TRANSACTION
â–Ş SAVE
TRANSACTION
Transact-SQL Database Programming
▪ Transact-SQL …
Transact-SQL Common Query Statements
Element Expression Role
SELECT <select list> Defines which columns to return
FROM <table source> Defines table(s) to query
WHERE <search condition> Filters rows using a predicate
GROUP BY <group by list> Arranges rows by groups
HAVING <search condition> Filters groups using a predicate
ORDER BY <order by list> Sorts the output
SELECT OrderDate, COUNT(OrderID)
FROM Sales.SalesOrder
WHERE Status = 'Shipped'
GROUP BY OrderDate
HAVING COUNT(OrderID) > 1
ORDER BY OrderDate DESC;
5
1
2
3
4
6
Transact-SQL Basic SELECT Query Examples
SELECT * FROM Production.Product;
SELECT Name, ListPrice
FROM Production.Product;
SELECT Name AS Product, ListPrice * 0.9 AS SalePrice
FROM Production.Product;
â–Ş All columns
â–Ş Specific columns
â–Ş Expressions and Aliases
Transact-SQL System Databases
▪ master – Records all the system-level information for an instance of SQL-Server .
▪ model – Is used as the template for all databases created on the instance.
▪ msdb – Is used by SQL-Server Agent for scheduling alerts and jobs.
▪ tempdb – Is a workspace for holding temporary objects or intermediate result sets.
Transact-SQL System Databases
Transact-SQL Database
â–Ş CREATE DATABASE
â–Ş ALTER DATABASE
â–Ş DROP DATABASE
Transact-SQL CREATE DATABASE
â–Ş Creates a new database.
â–Ş CREATE DATABASE database_name
[ CONTAINMENT = {NONE | PARTIAL}]
[ ON
[PRIMARY] <filespec> [, … n]
[, <filegroup> [, … n]]
[LOG ON <filespec> [, … n]]
]
[COLLATE collation_name]
[WITH <option> [, … n]]
[;]
Transact-SQL CREATE DATABASE
Transact-SQL ALTER DATABASE
â–Ş Modifies certain configuration options of a database.
â–Ş ALTER DATABASE { database_name | CURRENT }
{ MODIFY NAME = new_database_name
| COLLATE collation_name
| <file_and_filegroup_options>
| SET <option_spec> [… n] [WITH <termination>]
} [;]
Transact-SQL ALTER DATABASE
Transact-SQL DROP DATABASE
â–Ş Removes one or more user databases or database snapshots from an
instance of SQL Server.
â–Ş DROP DATABASE [IF EXISTS] { database_name
| database_snapshot_name } [, … n] [;]
Transact-SQL DROP DATABASE
Transact-SQL System Schemas
Transact-SQL SCHEMA
â–Ş CREATE SCHEMA
â–Ş ALTER SCHEMA
â–Ş DROP SCHEMA
Transact-SQL CREATE SCHEMA
â–Ş Creates a schema in the current database.
â–Ş CREATE SCHEMA schema_name_clause
[ <schema_element> [ … n ]] [;]
â–Ş <schema_name_clause> :: =
{ schema_name | AUTHORIZATION owner_name
| schema_name AUTHORIZATION owner_name }
â–Ş <schema_element> :: = { tbl_def | view_def | grant_stat | revoke | deny}
Transact-SQL CREATE SCHEMA
Transact-SQL ALTER SCHEMA
â–Ş Transfers a securable between schemas.
â–Ş ALTER SCHEMA schema_name
TRANSFER [ <entity_type> :: ] securable_name [;]
â–Ş <entity_type> :: =
{OBJECT | TYPE | XML Schema Collection}
Transact-SQL ALTER SCHEMA
Transact-SQL DROP SCHEMA
â–Ş Removes a schema from the database.
â–Ş DROP SCHEMA [IF EXISTS] schema_name [;]
Transact-SQL DROP SCHEMA
Transact-SQL System Tables
Transact-SQL TABLE
â–Ş CREATE TABLE
â–Ş ALTER TABLE
â–Ş TRUNCATE TABLE
â–Ş DROP TABLE
Transact-SQL Schemas and Object Names
â–Ş Schemas are namespaces for database objects
â–Ş Fully-qualified names:
[server_name.][database_name.][schema_name.][object_name]
â–Ş Best practice: [schema_name.][object_name]
Sales Production
Order
Customer
Product
Order
Sales.Order
Sales.Customer
Production.Product
Production.Order
Transact-SQL CREATE TABLE (1st Method)
â–Ş Creates a new table in SQL-Server.
â–Ş CREATE TABLE {schema_name.table_name | table_name}
(
column_name_1 data_type,
column_name_2 data_type
[, … n]
) [;]
Transact-SQL CREATE TABLE (1st Method)
Transact-SQL CREATE TABLE (2nd Method)
â–Ş Creates a new table in SQL-Server.
â–Ş CREATE TABLE { database_name.schema_name.table_name
| schema_name.table_name | table_name }
( { <column_definition> [, … n]
| [ <table_constraint> ] [, … n] }
[, … n]
) [;]
â–Ş <column_definition> :: = column_name <data_type>
[IDENTITY [(seed, increment)]] [NULL | NOT NULL]
[<column_constraint> [, … n]]
Transact-SQL CREATE TABLE (2nd Method)
Transact-SQL CREATE TABLE (3rd Method)
â–Ş Creates a new table in SQL-Server.
â–Ş CREATE TABLE { schema_name.table_name }
( { <column_definition> [, … n] | [ <table_constraint> ] [, … n] }
) [;]
â–Ş <column_definition> :: = column_name <data_type>
[ <column_constraint> [, … n] ]
â–Ş <column_constraint> :: = [ CONSTRAINT constraint_name ]
{ { PRIMARY KEY | UNIQUE } | [ FOREIGN KEY ] REFERENCES
[schema_name.]referenced_table_name[(ref_column)]
| CHECK [NOT FOR REPLICATION] (logical_expression) }
Transact-SQL CREATE TABLE (3rd Method)
Transact-SQL CREATE TABLE (3rd Method)
Transact-SQL ER-Diagram (SSMS)
Transact-SQL ER-Diagram (SqlDBM)
Transact-SQL ER-Diagram Relationships
one
many
one (and only one)
one or many
Mandatory Relationship
zero or one
zero or many
Optional Relationship
Transact-SQL ER-Diagram (Lucidchart)
ER-Diagram Example (Lucidchart)
Transact-SQL CREATE TABLE (3rd Method)
Transact-SQL ER-Diagram (SSMS)
Transact-SQL ER-Diagram (SqlDBM)
Transact-SQL ER-Diagram (Lucidchart)
Transact-SQL CREATE TABLE (4th Method)
â–Ş Creates a new table in SQL-Server.
â–Ş CREATE TABLE { schema_name.table_name }
( { <column_definition> [, … n] | [ <table_constraint> ] [, … n] }
) [;]
â–Ş <column_definition> :: = column_name <data_type>
[ <column_constraint> [, … n] ]
â–Ş <table_constraint> :: = [ CONSTRAINT constraint_name ]
{ { PRIMARY KEY | UNIQUE } (column [ ASC | DESC ] [, … n]) | FOREIGN KEY
(column [, … n]) REFERENCES referenced_table_name[(ref_column[, … n])]
| CHECK [NOT FOR REPLICATION] (logical_expression) }
Transact-SQL CREATE TABLE (4th Method)
Transact-SQL CREATE TABLE (4th Method)
Transact-SQL CREATE TABLE (4th Method)
Transact-SQL ER-Diagram (SSMS)
Transact-SQL ER-Diagram (SqlDBM)
Transact-SQL ER-Diagram (Lucidchart)
Transact-SQL CREATE TABLE (Complex Relation)
Transact-SQL CREATE TABLE (Complex Relation)
Transact-SQL ER-Diagram (SSMS)
Transact-SQL ER-Diagram (SqlDBM)
Transact-SQL ER-Diagram (Lucidchart)
Transact-SQL ...
Microsoft SQL-Server 2019

More Related Content

What's hot (20)

PPT
Sql ppt
Anuja Lad
 
PPTX
Basic SQL and History
SomeshwarMoholkar
 
PPTX
SQL Basics
Hammad Rasheed
 
PPTX
SQL(DDL & DML)
Sharad Dubey
 
PPT
Data independence
Aashima Wadhwa
 
PPTX
Introduction to database & sql
zahid6
 
PPT
Joins in SQL
Vigneshwaran Sankaran
 
PPTX
SQL Commands
Sachidananda M H
 
PPTX
Integrity Constraints
Megha yadav
 
PPT
PL/SQL
Vaibhav0
 
PPTX
Sql fundamentals
Ravinder Kamboj
 
PPTX
Sql queries presentation
NITISH KUMAR
 
PPTX
DBMS Keys
Tarun Maheshwari
 
PPTX
sql function(ppt)
Ankit Dubey
 
ODP
Sql commands
Balakumaran Arunachalam
 
PPTX
Introduction to SQL
Ehsan Hamzei
 
PPTX
View of data DBMS
Rahul Narang
 
PPTX
Sql Server Management Studio Tips and Tricks
Andrea Allred
 
PPTX
Er diagrams presentation
Akanksha Jaiswal
 
Sql ppt
Anuja Lad
 
Basic SQL and History
SomeshwarMoholkar
 
SQL Basics
Hammad Rasheed
 
SQL(DDL & DML)
Sharad Dubey
 
Data independence
Aashima Wadhwa
 
Introduction to database & sql
zahid6
 
Joins in SQL
Vigneshwaran Sankaran
 
SQL Commands
Sachidananda M H
 
Integrity Constraints
Megha yadav
 
PL/SQL
Vaibhav0
 
Sql fundamentals
Ravinder Kamboj
 
Sql queries presentation
NITISH KUMAR
 
DBMS Keys
Tarun Maheshwari
 
sql function(ppt)
Ankit Dubey
 
Sql commands
Balakumaran Arunachalam
 
Introduction to SQL
Ehsan Hamzei
 
View of data DBMS
Rahul Narang
 
Sql Server Management Studio Tips and Tricks
Andrea Allred
 
Er diagrams presentation
Akanksha Jaiswal
 

Similar to SQL-Server Database.pdf (20)

PDF
Using T-SQL
Antonios Chatzipavlis
 
PPT
SQL Server Basics Hello world iam here.ppt
nanisaketh
 
PPTX
Ms sql server
yajit1
 
PPT
Presentation1
ahsan-1252
 
DOC
Sqlmaterial 120414024230-phpapp01
Lalit009kumar
 
PPTX
Lecture 4-RDBMS.pptx
RUBAB79
 
PPTX
SQL Server Workshop for Developers - Visual Studio Live! NY 2012
Andrew Brust
 
PDF
MS-SQL SERVER ARCHITECTURE
Douglas Bernardini
 
PPT
Sql server basics
Dilfaroz Khan
 
PPTX
SQL_SERVER_BASIC_1_Training.pptx
KashifManzoorMeo
 
PDF
SQL Server 2019 ctp2.2
Gianluca Hotz
 
PPTX
SQL_Introduction_Updated.pptx
C3MohdArshAlam18
 
PPTX
Microsoft SQL Server 2008
Hossein Zahed
 
PDF
14 22 size sql book(1)
bhganesh
 
PPTX
SQL ARPIT YADAV.pptx
ArpitYadav353999
 
PPTX
SQL_SERVER_BASIC_1_Training.pptx
QuyVo27
 
PPTX
Operational foundation for the sql server dba
PeterShore4
 
PPTX
6232 b 01
stamal
 
PPT
New features of sql server 2005
Govind Raj
 
PPTX
Ebook6
kaashiv1
 
Using T-SQL
Antonios Chatzipavlis
 
SQL Server Basics Hello world iam here.ppt
nanisaketh
 
Ms sql server
yajit1
 
Presentation1
ahsan-1252
 
Sqlmaterial 120414024230-phpapp01
Lalit009kumar
 
Lecture 4-RDBMS.pptx
RUBAB79
 
SQL Server Workshop for Developers - Visual Studio Live! NY 2012
Andrew Brust
 
MS-SQL SERVER ARCHITECTURE
Douglas Bernardini
 
Sql server basics
Dilfaroz Khan
 
SQL_SERVER_BASIC_1_Training.pptx
KashifManzoorMeo
 
SQL Server 2019 ctp2.2
Gianluca Hotz
 
SQL_Introduction_Updated.pptx
C3MohdArshAlam18
 
Microsoft SQL Server 2008
Hossein Zahed
 
14 22 size sql book(1)
bhganesh
 
SQL ARPIT YADAV.pptx
ArpitYadav353999
 
SQL_SERVER_BASIC_1_Training.pptx
QuyVo27
 
Operational foundation for the sql server dba
PeterShore4
 
6232 b 01
stamal
 
New features of sql server 2005
Govind Raj
 
Ebook6
kaashiv1
 
Ad

Recently uploaded (20)

PPTX
apidays Helsinki & North 2025 - Running a Successful API Program: Best Practi...
apidays
 
PDF
apidays Singapore 2025 - How APIs can make - or break - trust in your AI by S...
apidays
 
PDF
A GraphRAG approach for Energy Efficiency Q&A
Marco Brambilla
 
PPTX
Feb 2021 Ransomware Recovery presentation.pptx
enginsayin1
 
PDF
JavaScript - Good or Bad? Tips for Google Tag Manager
📊 Markus Baersch
 
PDF
InformaticsPractices-MS - Google Docs.pdf
seshuashwin0829
 
PPTX
apidays Singapore 2025 - Designing for Change, Julie Schiller (Google)
apidays
 
PPTX
apidays Singapore 2025 - The Quest for the Greenest LLM , Jean Philippe Ehre...
apidays
 
PDF
apidays Singapore 2025 - The API Playbook for AI by Shin Wee Chuang (PAND AI)
apidays
 
PPTX
Powerful Uses of Data Analytics You Should Know
subhashenia
 
PPTX
apidays Helsinki & North 2025 - API access control strategies beyond JWT bear...
apidays
 
PDF
Development and validation of the Japanese version of the Organizational Matt...
Yoga Tokuyoshi
 
PPTX
apidays Helsinki & North 2025 - Agentic AI: A Friend or Foe?, Merja Kajava (A...
apidays
 
PDF
apidays Singapore 2025 - Trustworthy Generative AI: The Role of Observability...
apidays
 
PPTX
SlideEgg_501298-Agentic AI.pptx agentic ai
530BYManoj
 
PDF
The European Business Wallet: Why It Matters and How It Powers the EUDI Ecosy...
Lal Chandran
 
PDF
Data Science Course Certificate by Sigma Software University
Stepan Kalika
 
PPT
Growth of Public Expendituuure_55423.ppt
NavyaDeora
 
PPTX
b6057ea5-8e8c-4415-90c0-ed8e9666ffcd.pptx
Anees487379
 
PPTX
apidays Singapore 2025 - From Data to Insights: Building AI-Powered Data APIs...
apidays
 
apidays Helsinki & North 2025 - Running a Successful API Program: Best Practi...
apidays
 
apidays Singapore 2025 - How APIs can make - or break - trust in your AI by S...
apidays
 
A GraphRAG approach for Energy Efficiency Q&A
Marco Brambilla
 
Feb 2021 Ransomware Recovery presentation.pptx
enginsayin1
 
JavaScript - Good or Bad? Tips for Google Tag Manager
📊 Markus Baersch
 
InformaticsPractices-MS - Google Docs.pdf
seshuashwin0829
 
apidays Singapore 2025 - Designing for Change, Julie Schiller (Google)
apidays
 
apidays Singapore 2025 - The Quest for the Greenest LLM , Jean Philippe Ehre...
apidays
 
apidays Singapore 2025 - The API Playbook for AI by Shin Wee Chuang (PAND AI)
apidays
 
Powerful Uses of Data Analytics You Should Know
subhashenia
 
apidays Helsinki & North 2025 - API access control strategies beyond JWT bear...
apidays
 
Development and validation of the Japanese version of the Organizational Matt...
Yoga Tokuyoshi
 
apidays Helsinki & North 2025 - Agentic AI: A Friend or Foe?, Merja Kajava (A...
apidays
 
apidays Singapore 2025 - Trustworthy Generative AI: The Role of Observability...
apidays
 
SlideEgg_501298-Agentic AI.pptx agentic ai
530BYManoj
 
The European Business Wallet: Why It Matters and How It Powers the EUDI Ecosy...
Lal Chandran
 
Data Science Course Certificate by Sigma Software University
Stepan Kalika
 
Growth of Public Expendituuure_55423.ppt
NavyaDeora
 
b6057ea5-8e8c-4415-90c0-ed8e9666ffcd.pptx
Anees487379
 
apidays Singapore 2025 - From Data to Insights: Building AI-Powered Data APIs...
apidays
 
Ad

SQL-Server Database.pdf