SlideShare a Scribd company logo
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
→
→
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
→ → → → →
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
•
•
•
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
myproject/
├── docs/
│ ├── documentation.md
├── db/
│ ├── 0_sequences/
│ ├── 1_tables/
│ ├── 2_mviews/
│ ├── 3_views/
│ ├── 4_packages/
│ └── 5_utils/
└── db-tests/
├── packages/
└── data/
•
•
•
•
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
Package test_package is
--%suite(testsuite for demo)
--%context(describing my test context)
--%test(name of my testcase)
procedure check_update_personal_data;
--%endcontext
end;
Package test_package is
procedure check_update_personal_data is
begin
-- arrange / given
-- act / when
-- assert / then
ut.expect(c_actual).to_equal(c_expected).unordered;
end;
end;
Package test_package is
--%suite(test_testsuite)
--%beforeall(test_package.setup)
--%context(first_func_tests)
--%test(testname)
procedure my_first_test;
--%endcontext
end;
/
Package prod_package is
procedure my_first_func;
procedure my_second_func;
end;
/
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
•
•
•
•
Testing your data mart - how to start | DOAG 2021
Testing your data mart - how to start | DOAG 2021
CREATE OR REPLACE PACKAGE testdata AS
PROCEDURE insert_data_into_person;
PROCEDURE insert_data_into_address;
PROCEDURE insert_data_into_person_address;
PROCEDURE setup;
PROCEDURE teardown;
END testdata;
/
CREATE OR REPLACE PACKAGE BODY testdata AS
PROCEDURE insert_data_into_person IS
BEGIN
INSERT INTO person VALUES (1,'Jasmin', 'Fluri', 'jasmin@schaltstelle.ch');
INSERT INTO person VALUES (2,'Gustav', 'Miller', 'gustav@homedepot.ca');
INSERT INTO person VALUES (3,'Mike', 'Heller', 'mike@heller.com');
END;
PROCEDURE insert_data_into_address IS
BEGIN
INSERT INTO address VALUES (11, 'Main Street', 33, '12345', 'Maine');
INSERT INTO address VALUES (12, 'Hyde Street', 9, '3014', 'Bern');
INSERT INTO address VALUES (13, 'Forest Street', 5, '44393', 'St. Lawrence');
END;
PROCEDURE insert_data_into_person_address IS
BEGIN
INSERT INTO person_address VALUES (1, 12);
INSERT INTO person_address VALUES (2, 13);
INSERT INTO person_address VALUES (3, 11);
INSERT INTO person_address VALUES (3, 12);
END;
...
•
•
•
...
PROCEDURE setup IS
BEGIN
insert_data_into_person();
insert_data_into_address();
insert_data_into_person_address();
COMMIT;
END;
PROCEDURE teardown IS
BEGIN
execute immediate 'truncate table person';
execute immediate 'truncate table address';
execute immediate 'truncate table person_address’;
COMMIT;
END;
END testdata;
/
•
•
•
•
•
•
•
•
•
•
•
Testing your data mart - how to start | DOAG 2021

More Related Content

PDF
WordPress 運用を支える Perl
PDF
GHCソースコード読みのススメ
PPTX
Bioinformatics p5-bioperlv2014
PDF
ZCPE - PHP Conference 2015
PPT
PHP Scripting
PDF
TDC 2016 (Florianópolis) - Vá para o próximo nível - Dicas e truques para a c...
PPTX
Bioinformatica p4-io
PDF
Apache Hacks
WordPress 運用を支える Perl
GHCソースコード読みのススメ
Bioinformatics p5-bioperlv2014
ZCPE - PHP Conference 2015
PHP Scripting
TDC 2016 (Florianópolis) - Vá para o próximo nível - Dicas e truques para a c...
Bioinformatica p4-io
Apache Hacks

What's hot (20)

PDF
Learning Perl 6 (NPW 2007)
PDF
Laravel the right way
PPT
Mocking Dependencies in PHPUnit
PDF
Learning Perl 6
PDF
Meet up symfony 16 juin 2017 - Les PSR
PDF
Drupal Pilipinas Apprentice: LAMP Administration, CSS, and Vagrant
PDF
Feeds drupal cafe
PDF
Oliver hookins puppetcamp2011
PDF
Laravel, the right way - PHPConference 2016
PDF
Codeigniter4の比較と検証
PDF
mod_rewrite
PDF
PDO Basics - PHPMelb 2014
PDF
Memory Manglement in Raku
PPT
Bioinformatica 10-11-2011-p6-bioperl
PDF
Puppet: What _not_ to do
PDF
Smolder @Silex
TXT
Spss syntax
PDF
Benchmarking Perl (Chicago UniForum 2006)
PPT
PHP - PDO Objects
Learning Perl 6 (NPW 2007)
Laravel the right way
Mocking Dependencies in PHPUnit
Learning Perl 6
Meet up symfony 16 juin 2017 - Les PSR
Drupal Pilipinas Apprentice: LAMP Administration, CSS, and Vagrant
Feeds drupal cafe
Oliver hookins puppetcamp2011
Laravel, the right way - PHPConference 2016
Codeigniter4の比較と検証
mod_rewrite
PDO Basics - PHPMelb 2014
Memory Manglement in Raku
Bioinformatica 10-11-2011-p6-bioperl
Puppet: What _not_ to do
Smolder @Silex
Spss syntax
Benchmarking Perl (Chicago UniForum 2006)
PHP - PDO Objects
Ad

Similar to Testing your data mart - how to start | DOAG 2021 (20)

PPT
OpenWRT guide and memo
PPTX
Puppet atbazaarvoice
PDF
Puppet at Bazaarvoice
PDF
Ext 0523
PDF
TYPO3 Extension development using new Extbase framework
PDF
Maven2交流
PPT
Linux Troubleshooting
PPTX
PPTX
Creating Developer-Friendly Docker Containers with Chaperone
PPTX
Autotools adaptation for integrating autotmatic unit tests and covering for K...
PDF
TYPO3 Flow 2.0 (International PHP Conference 2013)
DOCX
OPM Recipe designer notes
PDF
Arbeiten mit distribute, pip und virtualenv
PDF
[xp2013] Narrow Down What to Test
PPTX
Virtualization and automation of library software/machines + Puppet
KEY
ASU DUG - SVN and CVS
PDF
Metadata-driven Testing
PDF
Isolated development in python
PDF
Continuous testing In PHP
PPT
2005_Structures and functions of Makefile
OpenWRT guide and memo
Puppet atbazaarvoice
Puppet at Bazaarvoice
Ext 0523
TYPO3 Extension development using new Extbase framework
Maven2交流
Linux Troubleshooting
Creating Developer-Friendly Docker Containers with Chaperone
Autotools adaptation for integrating autotmatic unit tests and covering for K...
TYPO3 Flow 2.0 (International PHP Conference 2013)
OPM Recipe designer notes
Arbeiten mit distribute, pip und virtualenv
[xp2013] Narrow Down What to Test
Virtualization and automation of library software/machines + Puppet
ASU DUG - SVN and CVS
Metadata-driven Testing
Isolated development in python
Continuous testing In PHP
2005_Structures and functions of Makefile
Ad

More from Jasmin Fluri (12)

PDF
Relational Database CI/CD
PPTX
The Science of database CICD - UKOUG Breakthrough
PPTX
Git Branching – the battle of the ages
PDF
Myth Busting - NoSQL vs SQL Data Stores - Guild42
PDF
Myth Busting - NoSQL vs SQL Data Stores - Video Edition
PDF
Myth Busting - NoSQL vs SQL Data Stores
PDF
AskTom Office Hours about Database Migrations
PDF
Prediction of Skierdays with Oracle Data Mining - Analytics and Data Techcast...
PDF
Prediction of Skierdays With Oracle Data Mining - OGB EMEA Edition
PDF
Prediction of skier days with Oracle Data Mining
PDF
Learnings about Automated deployments of Database Applications
PDF
Automated delivery in the data warehouse SOUG Day Romandie - 21 May 2019
Relational Database CI/CD
The Science of database CICD - UKOUG Breakthrough
Git Branching – the battle of the ages
Myth Busting - NoSQL vs SQL Data Stores - Guild42
Myth Busting - NoSQL vs SQL Data Stores - Video Edition
Myth Busting - NoSQL vs SQL Data Stores
AskTom Office Hours about Database Migrations
Prediction of Skierdays with Oracle Data Mining - Analytics and Data Techcast...
Prediction of Skierdays With Oracle Data Mining - OGB EMEA Edition
Prediction of skier days with Oracle Data Mining
Learnings about Automated deployments of Database Applications
Automated delivery in the data warehouse SOUG Day Romandie - 21 May 2019

Recently uploaded (20)

PPTX
Trending Python Topics for Data Visualization in 2025
PDF
Time Tracking Features That Teams and Organizations Actually Need
PPTX
Tech Workshop Escape Room Tech Workshop
PDF
Top 10 Software Development Trends to Watch in 2025 🚀.pdf
PPTX
AMADEUS TRAVEL AGENT SOFTWARE | AMADEUS TICKETING SYSTEM
PDF
Ableton Live Suite for MacOS Crack Full Download (Latest 2025)
PDF
Complete Guide to Website Development in Malaysia for SMEs
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PPTX
GSA Content Generator Crack (2025 Latest)
PDF
iTop VPN Crack Latest Version Full Key 2025
PDF
Types of Token_ From Utility to Security.pdf
PDF
Cost to Outsource Software Development in 2025
PDF
STL Containers in C++ : Sequence Container : Vector
PPTX
Custom Software Development Services.pptx.pptx
PPTX
Oracle Fusion HCM Cloud Demo for Beginners
PDF
AI-Powered Threat Modeling: The Future of Cybersecurity by Arun Kumar Elengov...
PPTX
WiFi Honeypot Detecscfddssdffsedfseztor.pptx
PPTX
assetexplorer- product-overview - presentation
PPTX
"Secure File Sharing Solutions on AWS".pptx
PDF
AI/ML Infra Meetup | LLM Agents and Implementation Challenges
Trending Python Topics for Data Visualization in 2025
Time Tracking Features That Teams and Organizations Actually Need
Tech Workshop Escape Room Tech Workshop
Top 10 Software Development Trends to Watch in 2025 🚀.pdf
AMADEUS TRAVEL AGENT SOFTWARE | AMADEUS TICKETING SYSTEM
Ableton Live Suite for MacOS Crack Full Download (Latest 2025)
Complete Guide to Website Development in Malaysia for SMEs
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
GSA Content Generator Crack (2025 Latest)
iTop VPN Crack Latest Version Full Key 2025
Types of Token_ From Utility to Security.pdf
Cost to Outsource Software Development in 2025
STL Containers in C++ : Sequence Container : Vector
Custom Software Development Services.pptx.pptx
Oracle Fusion HCM Cloud Demo for Beginners
AI-Powered Threat Modeling: The Future of Cybersecurity by Arun Kumar Elengov...
WiFi Honeypot Detecscfddssdffsedfseztor.pptx
assetexplorer- product-overview - presentation
"Secure File Sharing Solutions on AWS".pptx
AI/ML Infra Meetup | LLM Agents and Implementation Challenges

Testing your data mart - how to start | DOAG 2021