SlideShare a Scribd company logo
1 of 104
Download to read offline
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

9. Object Relational Databases in DBMS
9. Object Relational Databases in DBMS9. Object Relational Databases in DBMS
9. Object Relational Databases in DBMS
koolkampus
 

What's hot (20)

DBMS Notes: DDL DML DCL
DBMS Notes: DDL DML DCLDBMS Notes: DDL DML DCL
DBMS Notes: DDL DML DCL
 
Sql ppt
Sql pptSql ppt
Sql ppt
 
SQL - DML and DDL Commands
SQL - DML and DDL CommandsSQL - DML and DDL Commands
SQL - DML and DDL Commands
 
Including Constraints -Oracle Data base
Including Constraints -Oracle Data base Including Constraints -Oracle Data base
Including Constraints -Oracle Data base
 
Introduction to PostgreSQL
Introduction to PostgreSQLIntroduction to PostgreSQL
Introduction to PostgreSQL
 
9. Object Relational Databases in DBMS
9. Object Relational Databases in DBMS9. Object Relational Databases in DBMS
9. Object Relational Databases in DBMS
 
Ms sql-server
Ms sql-serverMs sql-server
Ms sql-server
 
PL/SQL Fundamentals I
PL/SQL Fundamentals IPL/SQL Fundamentals I
PL/SQL Fundamentals I
 
MS-SQL SERVER ARCHITECTURE
MS-SQL SERVER ARCHITECTUREMS-SQL SERVER ARCHITECTURE
MS-SQL SERVER ARCHITECTURE
 
Trigger
TriggerTrigger
Trigger
 
Relational databases vs Non-relational databases
Relational databases vs Non-relational databasesRelational databases vs Non-relational databases
Relational databases vs Non-relational databases
 
SQL Views
SQL ViewsSQL Views
SQL Views
 
PostgreSQL Tutorial For Beginners | Edureka
PostgreSQL Tutorial For Beginners | EdurekaPostgreSQL Tutorial For Beginners | Edureka
PostgreSQL Tutorial For Beginners | Edureka
 
Plsql
PlsqlPlsql
Plsql
 
SQL Functions
SQL FunctionsSQL Functions
SQL Functions
 
Sql Server Basics
Sql Server BasicsSql Server Basics
Sql Server Basics
 
SQL Basics
SQL BasicsSQL Basics
SQL Basics
 
SQL Overview
SQL OverviewSQL Overview
SQL Overview
 
Postgresql
PostgresqlPostgresql
Postgresql
 
Sql queries presentation
Sql queries presentationSql queries presentation
Sql queries presentation
 

Similar to SQL-Server Database.pdf

SQL Server Workshop for Developers - Visual Studio Live! NY 2012
SQL Server Workshop for Developers - Visual Studio Live! NY 2012SQL Server Workshop for Developers - Visual Studio Live! NY 2012
SQL Server Workshop for Developers - Visual Studio Live! NY 2012
Andrew Brust
 
Chapter 2: Ms SQL Server
Chapter 2: Ms SQL ServerChapter 2: Ms SQL Server
Chapter 2: Ms SQL Server
Ngeam Soly
 

Similar to SQL-Server Database.pdf (20)

SQLSaturday#290_Kiev_WindowsAzureDatabaseForBeginners
SQLSaturday#290_Kiev_WindowsAzureDatabaseForBeginnersSQLSaturday#290_Kiev_WindowsAzureDatabaseForBeginners
SQLSaturday#290_Kiev_WindowsAzureDatabaseForBeginners
 
Microsoft azure database offerings
Microsoft azure database offeringsMicrosoft azure database offerings
Microsoft azure database offerings
 
Operational foundation for the sql server dba
Operational foundation for the sql server dbaOperational foundation for the sql server dba
Operational foundation for the sql server dba
 
Sql azure dec_2010 Lynn & Ike
Sql azure dec_2010 Lynn & IkeSql azure dec_2010 Lynn & Ike
Sql azure dec_2010 Lynn & Ike
 
SQL Server Workshop for Developers - Visual Studio Live! NY 2012
SQL Server Workshop for Developers - Visual Studio Live! NY 2012SQL Server Workshop for Developers - Visual Studio Live! NY 2012
SQL Server Workshop for Developers - Visual Studio Live! NY 2012
 
Module02
Module02Module02
Module02
 
Designer's Favorite New Features in SQLServer
Designer's Favorite New Features in SQLServerDesigner's Favorite New Features in SQLServer
Designer's Favorite New Features in SQLServer
 
Migrating on premises workload to azure sql database
Migrating on premises workload to azure sql databaseMigrating on premises workload to azure sql database
Migrating on premises workload to azure sql database
 
Sql server basics
Sql server basicsSql server basics
Sql server basics
 
SQL - RDBMS Concepts
SQL - RDBMS ConceptsSQL - RDBMS Concepts
SQL - RDBMS Concepts
 
Chapter 2: Ms SQL Server
Chapter 2: Ms SQL ServerChapter 2: Ms SQL Server
Chapter 2: Ms SQL Server
 
Tech Days09 Sqldev
Tech Days09 SqldevTech Days09 Sqldev
Tech Days09 Sqldev
 
SQL Server 2008 for Developers
SQL Server 2008 for DevelopersSQL Server 2008 for Developers
SQL Server 2008 for Developers
 
SQL Server 2008 for .NET Developers
SQL Server 2008 for .NET DevelopersSQL Server 2008 for .NET Developers
SQL Server 2008 for .NET Developers
 
Cloud architectural patterns and Microsoft Azure tools
Cloud architectural patterns and Microsoft Azure toolsCloud architectural patterns and Microsoft Azure tools
Cloud architectural patterns and Microsoft Azure tools
 
Rock Solid SQL Server Management
Rock Solid SQL Server ManagementRock Solid SQL Server Management
Rock Solid SQL Server Management
 
A Designer's Favourite Security and Privacy Features in SQL Server and Azure ...
A Designer's Favourite Security and Privacy Features in SQL Server and Azure ...A Designer's Favourite Security and Privacy Features in SQL Server and Azure ...
A Designer's Favourite Security and Privacy Features in SQL Server and Azure ...
 
Sql
SqlSql
Sql
 
NoSQL
NoSQLNoSQL
NoSQL
 
Java Developers, make the database work for you (NLJUG JFall 2010)
Java Developers, make the database work for you (NLJUG JFall 2010)Java Developers, make the database work for you (NLJUG JFall 2010)
Java Developers, make the database work for you (NLJUG JFall 2010)
 

Recently uploaded

如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样
如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样
如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样
wsppdmt
 
sourabh vyas1222222222222222222244444444
sourabh vyas1222222222222222222244444444sourabh vyas1222222222222222222244444444
sourabh vyas1222222222222222222244444444
saurabvyas476
 
Abortion pills in Jeddah |+966572737505 | get cytotec
Abortion pills in Jeddah |+966572737505 | get cytotecAbortion pills in Jeddah |+966572737505 | get cytotec
Abortion pills in Jeddah |+966572737505 | get cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
q6pzkpark
 
Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...
Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...
Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...
mikehavy0
 
Displacement, Velocity, Acceleration, and Second Derivatives
Displacement, Velocity, Acceleration, and Second DerivativesDisplacement, Velocity, Acceleration, and Second Derivatives
Displacement, Velocity, Acceleration, and Second Derivatives
23050636
 
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi ArabiaIn Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
ahmedjiabur940
 
如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单学位证留信学历认证原件一样
如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单学位证留信学历认证原件一样如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单学位证留信学历认证原件一样
如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单学位证留信学历认证原件一样
jk0tkvfv
 
如何办理(Dalhousie毕业证书)达尔豪斯大学毕业证成绩单留信学历认证
如何办理(Dalhousie毕业证书)达尔豪斯大学毕业证成绩单留信学历认证如何办理(Dalhousie毕业证书)达尔豪斯大学毕业证成绩单留信学历认证
如何办理(Dalhousie毕业证书)达尔豪斯大学毕业证成绩单留信学历认证
zifhagzkk
 
Huawei Ransomware Protection Storage Solution Technical Overview Presentation...
Huawei Ransomware Protection Storage Solution Technical Overview Presentation...Huawei Ransomware Protection Storage Solution Technical Overview Presentation...
Huawei Ransomware Protection Storage Solution Technical Overview Presentation...
LuisMiguelPaz5
 
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Bertram Ludäscher
 

Recently uploaded (20)

Case Study 4 Where the cry of rebellion happen?
Case Study 4 Where the cry of rebellion happen?Case Study 4 Where the cry of rebellion happen?
Case Study 4 Where the cry of rebellion happen?
 
如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样
如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样
如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样
 
DAA Assignment Solution.pdf is the best1
DAA Assignment Solution.pdf is the best1DAA Assignment Solution.pdf is the best1
DAA Assignment Solution.pdf is the best1
 
Bios of leading Astrologers & Researchers
Bios of leading Astrologers & ResearchersBios of leading Astrologers & Researchers
Bios of leading Astrologers & Researchers
 
sourabh vyas1222222222222222222244444444
sourabh vyas1222222222222222222244444444sourabh vyas1222222222222222222244444444
sourabh vyas1222222222222222222244444444
 
Pentesting_AI and security challenges of AI
Pentesting_AI and security challenges of AIPentesting_AI and security challenges of AI
Pentesting_AI and security challenges of AI
 
Abortion pills in Jeddah |+966572737505 | get cytotec
Abortion pills in Jeddah |+966572737505 | get cytotecAbortion pills in Jeddah |+966572737505 | get cytotec
Abortion pills in Jeddah |+966572737505 | get cytotec
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
 
Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...
Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...
Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...
 
SCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarj
SCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarjSCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarj
SCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarj
 
Displacement, Velocity, Acceleration, and Second Derivatives
Displacement, Velocity, Acceleration, and Second DerivativesDisplacement, Velocity, Acceleration, and Second Derivatives
Displacement, Velocity, Acceleration, and Second Derivatives
 
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi ArabiaIn Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
 
如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单学位证留信学历认证原件一样
如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单学位证留信学历认证原件一样如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单学位证留信学历认证原件一样
如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单学位证留信学历认证原件一样
 
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
 
如何办理(Dalhousie毕业证书)达尔豪斯大学毕业证成绩单留信学历认证
如何办理(Dalhousie毕业证书)达尔豪斯大学毕业证成绩单留信学历认证如何办理(Dalhousie毕业证书)达尔豪斯大学毕业证成绩单留信学历认证
如何办理(Dalhousie毕业证书)达尔豪斯大学毕业证成绩单留信学历认证
 
Huawei Ransomware Protection Storage Solution Technical Overview Presentation...
Huawei Ransomware Protection Storage Solution Technical Overview Presentation...Huawei Ransomware Protection Storage Solution Technical Overview Presentation...
Huawei Ransomware Protection Storage Solution Technical Overview Presentation...
 
Seven tools of quality control.slideshare
Seven tools of quality control.slideshareSeven tools of quality control.slideshare
Seven tools of quality control.slideshare
 
Identify Rules that Predict Patient’s Heart Disease - An Application of Decis...
Identify Rules that Predict Patient’s Heart Disease - An Application of Decis...Identify Rules that Predict Patient’s Heart Disease - An Application of Decis...
Identify Rules that Predict Patient’s Heart Disease - An Application of Decis...
 
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
 
ℂall Girls In Navi Mumbai Hire Me Neha 9910780858 Top Class ℂall Girl Serviℂe...
ℂall Girls In Navi Mumbai Hire Me Neha 9910780858 Top Class ℂall Girl Serviℂe...ℂall Girls In Navi Mumbai Hire Me Neha 9910780858 Top Class ℂall Girl Serviℂe...
ℂall Girls In Navi Mumbai Hire Me Neha 9910780858 Top Class ℂall Girl Serviℂe...
 

SQL-Server Database.pdf