├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── 01_BUG_REPORT.md │ ├── 02_FEATURE_REQUEST.md │ ├── 03_CODEBASE_IMPROVEMENT.md │ ├── 04_SUPPORT_QUESTION.md │ └── config.yml └── PULL_REQUEST_TEMPLATE.md ├── DP-900-Course-TOC.md ├── DP-900-cert-study-blueprint.md ├── docs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── SECURITY.md └── images │ ├── dp900-cover.png │ └── logo.svg ├── dp-900-reference-slides.pptx ├── sample-data ├── .gitignore ├── AdventureWorks Sales.pbix ├── AdventureWorks Sales.xlsx ├── Automobile price data _Raw_.csv ├── Financial Sample.xlsx ├── HVAC.csv ├── Human Resources Sample PBIX.pbix ├── LICENSE ├── NYCTripSmall.parquet ├── PolyBase.sql ├── README.md ├── SampleCourseData ├── SampleCreditData ├── Synapse-ELT │ └── 01.sql ├── audio2.wav-speech-to-text-csv-output.csv ├── aworks.sql ├── azure-sql-database-firewall-rules.sql ├── azuresql-database-firewall.sql ├── azuresql-database-tde.ps1 ├── bankmarketing_train.csv ├── batman.wav-speech-to-text-csv-output.csv ├── clients.csv ├── create-emp-table.sql ├── create-tables.sql ├── create-user.sql ├── emp.txt ├── emp2.txt ├── enable-azuresql-database-tde.ps1 ├── exec-summary.pbix ├── insert-data-into-tables.txt ├── massively-parallel-processing-mpp-architecture.png ├── mysql-queries.sql ├── part.xml ├── restore-db-managed-instance.sql ├── sample-sql-queries.sql ├── session02.md ├── speech_pandas_dataframe_output.csv ├── stopwords.csv ├── storage-account.json ├── synapse-data-load-copy.sql ├── synapse-data-load-polybase.sql ├── tweets.csv ├── userdata1.parquet ├── vnet.json └── whatstheweatherlike.wav-speech-to-text-csv-output.csv └── warner-DP-900-slides.pptx /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @timothywarner 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/.github/ISSUE_TEMPLATE/01_BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/.github/ISSUE_TEMPLATE/02_FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_CODEBASE_IMPROVEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/.github/ISSUE_TEMPLATE/03_CODEBASE_IMPROVEMENT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/.github/ISSUE_TEMPLATE/04_SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | blank_issues_enabled: false 3 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /DP-900-Course-TOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/DP-900-Course-TOC.md -------------------------------------------------------------------------------- /DP-900-cert-study-blueprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/DP-900-cert-study-blueprint.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /docs/images/dp900-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/docs/images/dp900-cover.png -------------------------------------------------------------------------------- /docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/docs/images/logo.svg -------------------------------------------------------------------------------- /dp-900-reference-slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/dp-900-reference-slides.pptx -------------------------------------------------------------------------------- /sample-data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/.gitignore -------------------------------------------------------------------------------- /sample-data/AdventureWorks Sales.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/AdventureWorks Sales.pbix -------------------------------------------------------------------------------- /sample-data/AdventureWorks Sales.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/AdventureWorks Sales.xlsx -------------------------------------------------------------------------------- /sample-data/Automobile price data _Raw_.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/Automobile price data _Raw_.csv -------------------------------------------------------------------------------- /sample-data/Financial Sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/Financial Sample.xlsx -------------------------------------------------------------------------------- /sample-data/HVAC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/HVAC.csv -------------------------------------------------------------------------------- /sample-data/Human Resources Sample PBIX.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/Human Resources Sample PBIX.pbix -------------------------------------------------------------------------------- /sample-data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/LICENSE -------------------------------------------------------------------------------- /sample-data/NYCTripSmall.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/NYCTripSmall.parquet -------------------------------------------------------------------------------- /sample-data/PolyBase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/PolyBase.sql -------------------------------------------------------------------------------- /sample-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/README.md -------------------------------------------------------------------------------- /sample-data/SampleCourseData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/SampleCourseData -------------------------------------------------------------------------------- /sample-data/SampleCreditData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/SampleCreditData -------------------------------------------------------------------------------- /sample-data/Synapse-ELT/01.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/Synapse-ELT/01.sql -------------------------------------------------------------------------------- /sample-data/audio2.wav-speech-to-text-csv-output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/audio2.wav-speech-to-text-csv-output.csv -------------------------------------------------------------------------------- /sample-data/aworks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/aworks.sql -------------------------------------------------------------------------------- /sample-data/azure-sql-database-firewall-rules.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/azure-sql-database-firewall-rules.sql -------------------------------------------------------------------------------- /sample-data/azuresql-database-firewall.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/azuresql-database-firewall.sql -------------------------------------------------------------------------------- /sample-data/azuresql-database-tde.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/azuresql-database-tde.ps1 -------------------------------------------------------------------------------- /sample-data/bankmarketing_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/bankmarketing_train.csv -------------------------------------------------------------------------------- /sample-data/batman.wav-speech-to-text-csv-output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/batman.wav-speech-to-text-csv-output.csv -------------------------------------------------------------------------------- /sample-data/clients.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/clients.csv -------------------------------------------------------------------------------- /sample-data/create-emp-table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/create-emp-table.sql -------------------------------------------------------------------------------- /sample-data/create-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/create-tables.sql -------------------------------------------------------------------------------- /sample-data/create-user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/create-user.sql -------------------------------------------------------------------------------- /sample-data/emp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/emp.txt -------------------------------------------------------------------------------- /sample-data/emp2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/emp2.txt -------------------------------------------------------------------------------- /sample-data/enable-azuresql-database-tde.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/enable-azuresql-database-tde.ps1 -------------------------------------------------------------------------------- /sample-data/exec-summary.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/exec-summary.pbix -------------------------------------------------------------------------------- /sample-data/insert-data-into-tables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/insert-data-into-tables.txt -------------------------------------------------------------------------------- /sample-data/massively-parallel-processing-mpp-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/massively-parallel-processing-mpp-architecture.png -------------------------------------------------------------------------------- /sample-data/mysql-queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/mysql-queries.sql -------------------------------------------------------------------------------- /sample-data/part.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/part.xml -------------------------------------------------------------------------------- /sample-data/restore-db-managed-instance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/restore-db-managed-instance.sql -------------------------------------------------------------------------------- /sample-data/sample-sql-queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/sample-sql-queries.sql -------------------------------------------------------------------------------- /sample-data/session02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/session02.md -------------------------------------------------------------------------------- /sample-data/speech_pandas_dataframe_output.csv: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /sample-data/stopwords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/stopwords.csv -------------------------------------------------------------------------------- /sample-data/storage-account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/storage-account.json -------------------------------------------------------------------------------- /sample-data/synapse-data-load-copy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/synapse-data-load-copy.sql -------------------------------------------------------------------------------- /sample-data/synapse-data-load-polybase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/synapse-data-load-polybase.sql -------------------------------------------------------------------------------- /sample-data/tweets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/tweets.csv -------------------------------------------------------------------------------- /sample-data/userdata1.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/userdata1.parquet -------------------------------------------------------------------------------- /sample-data/vnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/sample-data/vnet.json -------------------------------------------------------------------------------- /sample-data/whatstheweatherlike.wav-speech-to-text-csv-output.csv: -------------------------------------------------------------------------------- 1 | ,0 2 | 0,What's the weather like? 3 | -------------------------------------------------------------------------------- /warner-DP-900-slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/dp900/HEAD/warner-DP-900-slides.pptx --------------------------------------------------------------------------------