Speakers & Sessions

Database | 45min |

Regular Expressions: Say What?

It has been possible since Oracle database release 10, Regular Expression support with its own set of functions. But getting started with Regular Expressions is not easy. Most database developers would avoid them if at all possible.

With current release of the Oracle database, Regular Expression syntax becomes more important. You can use them to redact data with DBMS_REDACT and to search for patterns using the Match_Recognize clause.

This session covers the basic syntax and gives you an easy introduction with Regular Expressions with plenty of code samples.

Alex Nuijten

Alex Nuijten

allAPEX

Alex Nuijten is an independent consultant (allAPEX), specializing in Oracle database development with PL/SQL and Oracle Application Express (APEX) and member of the Smart4APEX Guild. Besides his consultancy work, he conducts training classes, mainly in APEX, SQL and PL/SQL. Alex has been a speaker at numerous international conferences, such as ODTUG, Oracle Open World, UKOUG, IOUG, OUGF, BGOUG, nlOUG APEX World and OBUG. For his presentations, Alex received several Best Speaker awards. He wrote many articles in Oracle related magazines, and at regular intervals he writes about Oracle Application Express and Oracle database development on his blog “Notes on Oracle” (nuijten.blogspot.com). Alex is co-author of the following books “Oracle APEX Best Practices” (published by Packt Publishers) and “Real World SQL and PL/SQL” (published by Oracle Press). Because of his contributions to the Oracle community, Alex was awarded the Oracle ACE Director membership in August 2010.

Database | 45min |

Oracle Exadata Cloud at Customer Technical Deep Dive

Oracle Exadata Cloud at Customer continues to attract new customers across the globe and offers a compelling platform for customers that want cloud benefits but can’t move to the public cloud. Oracle Exadata Cloud at Customer uniquely combines the best database technology and Exadata, the most powerful database platform, with the operational simplicity and pay-as-you-grow economics of the cloud in a customer data center. Whether you are an experienced Exadata customer or never used Exadata before, you will benefit from the breadth and depth of this session. Topics covered include deployment, operations, networking, security, backup and recovery, maintenance, and use cases.

Ashish Ray

Ashish Ray

Vice President of Product Management, Oracle

Ashish Ray is Vice President of Product Management within Oracle’s core database development organization. His product responsibilities include Autonomous Database, Exadata, Database Cloud Services, Zero Data Loss Recovery Appliance, and Oracle Database’s High Availability solutions (Maximum Availability Architecture). In this role, he manages various product development and customer-focused initiatives around these highly critical products and cloud services. Mr. Ray has 25+ years of combined experience in software architecture design, software development and product management, focusing on the reliability, availability and scalability issues of enterprise computing. Mr. Ray has a BS and MS in Computer Science, and also an MBA from Wharton Business School, University of Pennsylvania.

Database | 45min |

How to Find Patterns in Your Data with SQL

SQL is a powerful language for accessing data. Using analytic functions, you can gain lots of insights from your data. But there are many problems which are hard or outright impossible to solve using these.

Introduced in 12c, the row pattern matching clause, match_recognize, fills this gap. With this it’s easy to write efficient SQL to answer many previously tricky questions.

This session introduces the match_recognize clause. It will use worked examples to show how it works and show how it’s easier to write and understand than traditional SQL solutions.

This talk is for developers and data analysts that need to do advanced data analysis.

Chris Saxon

Chris Saxon

Developer Advocate, Oracle

Chris Saxon is an Oracle Developer Advocate for SQL. His job is to help you get the best out of the Oracle Database and have fun with SQL!
To help you with this he blogs at All Things SQL. He also creates videos combining SQL and magic on YouTube at The Magic of SQL.
If you have questions about working with Oracle Database technology, please reach out to him. You can do this via Twitter or on Ask TOM.

Database | 45min |

SQL Syntax: Oracle vs. ANSI. Fight!

Debates over whether it is better to use Oracle syntax or ANSI in your SQL rage on the internet. It is time to settle these once and for all!

In the blue corner, Alex will champion ANSI style. And in the red corner, Chris will defend Oracle syntax.

In a best-of-three battle, covering joins, functions and recursive queries they will each highlight the benefits of their chosen style.
This session is for developers looking to expand their SQL skills and understand the pros and cons of the syntax methods.

Chris Saxon

Chris Saxon

Developer Advocate, Oracle

Chris Saxon is an Oracle Developer Advocate for SQL. His job is to help you get the best out of the Oracle Database and have fun with SQL!
To help you with this he blogs at All Things SQL. He also creates videos combining SQL and magic on YouTube at The Magic of SQL.
If you have questions about working with Oracle Database technology, please reach out to him. You can do this via Twitter or on Ask TOM.
Alex Nuijten

Alex Nuijten

allAPEX

Alex Nuijten is an independent consultant (allAPEX), specializing in Oracle database development with PL/SQL and Oracle Application Express (APEX) and member of the Smart4APEX Guild. Besides his consultancy work, he conducts training classes, mainly in APEX, SQL and PL/SQL. Alex has been a speaker at numerous international conferences, such as ODTUG, Oracle Open World, UKOUG, IOUG, OUGF, BGOUG, nlOUG APEX World and OBUG. For his presentations, Alex received several Best Speaker awards. He wrote many articles in Oracle related magazines, and at regular intervals he writes about Oracle Application Express and Oracle database development on his blog “Notes on Oracle” (nuijten.blogspot.com). Alex is co-author of the following books “Oracle APEX Best Practices” (published by Packt Publishers) and “Real World SQL and PL/SQL” (published by Oracle Press). Because of his contributions to the Oracle community, Alex was awarded the Oracle ACE Director membership in August 2010.

Database | 45min |

Flashback – not JUST for DBAs

Most people think of the Flashback features in Oracle as the “In Case of Emergency” switch, to only be used when something catastrophic has occurred on your database. And yes, it is true that Flashback will definitely help you in those 3 seconds after you press the Commit button and you realise that you probably needed to have a WHERE clause on that “delete all rows from the SALES table” SQL statement. Or for when you run “drop table” on the Production database, when you were just so sure that you were logged onto the Test system. But Flashback is not only for those “Oh No!” moments. It offers much much more in modern application development. It enables benefits for developers ranging from data consistency to continuous integration and data auditing. Tucked away in Enterprise Edition are six independent and powerful technologies that might just save your career but they will also open up a myriad of other benefits of well.

Connor McDonald

Connor McDonald

Database Advocate, Oracle

Connor McDonald is a Oracle Developer Advocate for Oracle Corporation. Over the past 25 years, he has worked with systems in Australia, the United Kingdom, Southeast Asia, Western Europe, and the United States. He has co-authored three books and has been a popular speaker at Oracle conferences around the world, specializing in topics regarding the database engine and PL/SQL. He won the Oracle Code speaker award in 2018, has three times won the Best Speaker award by the UK Oracle User Group, and was awarded a Lifetime Achievement award by the UKOUG in 2016. He was also awarded the AUSOUG Master Presenter lifetime achievement award in 2018.

Database | 45min |

Avoid “Horror Queries”: Keep Your SQL Simple and Fast

SQL is a powerful and efficient query language when used correctly. But inefficient and inappropriate SQL statements can cause massive performance problems. Instead of solving such issues with additional indexes, optimizer hints, SQL profiles or SQL plan baselines, a much better and more sustainable solution is often to rewrite the SQL statements and to reduce the complexity of the queries.

During performance tuning tasks for my customers, I’m often confronted with complex SQL statements. Many of these statements were developed years ago and changed several times by people that either had not enough SQL skills or had not the time to understand the original query in detail. This can lead to queries that are not only very slow, but also hard to understand – for the developers as well as for the query optimizer. By transforming these SQL statements into simpler queries, the optimizer can calculate better estimations and generate faster execution plans.

In this presentation, some real-life examples of terrible “horror queries” will be shown and rewritten into simpler, more elegant and faster SQL statements. The goal of the presentation is to show how to improve the performance of a query by factors with appropriate SQL statements and powerful Oracle SQL features.

Dani Schnider

Dani Schnider

Senior Principal Consultant, Trivadis

Dani Schnider works as Senior Principal Consultant for Trivadis, a database consulting company in Zurich/Switzerland. Since 1994, he is working with Oracle databases (version 6 to 19c), since 1997 mainly in Data Warehouse projects. His main focus is architecture, data modeling and physical design of data warehouses, but he also works in development of ETL processes as well as SQL performance tuning.
Dani is co-author of the books “Data Warehousing mit Oracle – Business Intelligence in der Praxis” (Hanser Verlag, 2011) and “Data Warehouse Blueprints” (Hanser Verlag, 2016). He is Oracle ACE and writes about Data Warehousing with Oracle on his blog https://danischnider.wordpress.com, publishes articles and presents his practical knowledge on conferences.

Database | 45min |

Alternative al public cloud

Come poter sfruttare i vantaggi del cloud computing anche negli scenari in cui non è possibile accedere al cloud pubblico.
Scopriremo come i sistemi ingegnerizzati oracle possono essere utilizzati per il deploy di un cloud privato o ibrido in modalità at customer sia su Exadata per workload esclusivamente database e PCA per workload general purpose.

Daniele Bocciolini

Daniele Bocciolini

DB Management Solution, Filippetti S.p.A

Technology enthusiast, developer, system administrator, he gained expertise in development and deployment of full stack solutions from bare metal to mobile app. Started in 2009 by working with Oracle Database 9i has been extending his area of expertise to Oracle WebCenter, ODI, OBIEE 12c Suite, Oracle VM 3, Oracle Cloud and Oracle Private Cloud Appliance and ZFS Storage appliance for the last few years.
Fields of expertise: Consolidation on virtual environment, linux, middleware and Database administration, permissioned blockchain implementation.

Database | 45min |

How to identify performance problems of a sql statement

How to identify performance problems of a sql statement:? in this session we will discuss different techniques (ash, awr etc) on how to identify performance problems related to sql statement.

Donatello Settembrino

Donatello Settembrino

Oracle performance consultant, ICTeam

Donatello is a senior consultant with experience in Oracle Database.
He is specialized in Oracle performance troubleshooting, Oracle instance assessment, expert in database design for good performance, development in PL/SQL and knows very well SQL

Database | 45min |

MySQL Group Replication in Docker Containers

Would you like to get a clustered environment up and running in a very short time and automate your deployment? What are you waiting for? Attend my session and you will discover how to get a MySQL high available replication topology on Docker.
After a short introduction about some top current trends of our days, such as DevOps, Agility, On-Demand environments and Open Source, we will start talking about what’s Docker and MySQL Group Replication. I will also explain what a database proxy is. Then, with the help of a demo, we will see all the steps to deploy a 3-nodes cluster in containers.

Elisa Usai

Elisa Usai

Delivery Manager, dbi

Elisa Usai. 35 years old, Italian and living in the French speaking part of Switzerland. Like dancing and IT. Me.
Seriously… I have more than 10 years of experience in the field of Information Technology, especially with the MySQL technology. My expertise also includes Oracle, SQL Server and PostgreSQL technologies as well as monitoring solutions. Prior to joining dbi services, I was MySQL Consultant for a governmental institution in Lausanne. I also worked as Database and Monitoring Specialist for Nespresso. I hold a degree in Computer Engineering from the Politecnico di Torino in Italy.

Database, Analytics & Big Data | 10min |

Oracle ACE Program Presentation

Jennifer Nicholson

Jennifer Nicholson

Director Developer Advocacy Programs, Oracle

Jennifer Nicholson is the Director of Developer Advocacy Programs on the Groundbreakers team at Oracle. She manages the Oracle ACE, Java Champions and Groundbreaker Ambassador programs. The Oracle ACE program recognizes individuals who contribute significantly in the Oracle community by presenting at conferences, blogging, writing (books and articles), and answering questions on forums. Java Champions are prominent in the Java community and are nominated by Java Champions. Groundbreaker Ambassadors are developers who are experts in their field and present at prominent developer conferences around the world.
To learn more, go to following pages:
Oracle ACE Program (how to Nominate an ACE)
Groundbreaker Ambassador Program (how to Nominate an Ambassador)
Java Champions program

Database | 45min |

Zero Downtime Migration: what is it and how to implement it?

Oracle has recently announced Zero Downtime Migration (ZDM), a tool that automates the migration of on-premises databases to the cloud. But how it works and what can it achieve beside moving databases to the cloud?

In the first part of the presentation, the ZDM product manager, Ricardo Gonzalez, will give an overview of the tool and its capabilities for migration to the cloud as well as on-premises.

In the second part, Ludovico Caldara, database engineer at CERN, will show some technical aspects about its configuration and usage.

Ludovico Caldara

Ludovico Caldara

Computing Engineer, CERN

Ludovico is an Oracle ACE Director and database specialist with two decades of experience on Oracle and other database products. He has administered literally thousands of databases in big data centers so he has developed a natural leaning to automation, monitoring and high availability. He is an active blogger, frequent speaker and a confirmed Community contributor, working for CERN in Switzerland.
Ricardo Gonzalez

Ricardo Gonzalez

Senior Principal Product Manager, Oracle

A passionate professional with international experience gained through working alongside multinational enterprise software companies, educational and not-for-profit organizations in the US, Italy, Mexico and Costa Rica. He is currently based in the San Francisco Bay Area.
He holds a B.Sc in Computer Science and a Master in Business Administration, focused on Entrepreneurship and Innovation.
He currently works on the IT sector as a Product Manager for the Oracle Database Cloud Migration, ACFS & FPP products & Technical Evangelist for the Real Application Clusters team. He works with prospect and current customers, understanding better their needs and providing input to the development team towards the creation of new features and further development of the product. He is also a training leader, expositor and participates in customer relationships at Oracle events throughout the World.
At Oracle he also contributes by helping with promotion, recruitment events and generating awareness among the local technology community.

Database | 45min |

Explain the Explain Plan – Interpreting Execution Plans for SQL Statements

The execution plan for a SQL statement can often seem complicated and hard to understand. Determining if the execution plan you are looking at is the best plan you could get or attempting to improve a poorly performing execution plan can be a daunting task even for the most experienced DBA or developer. This session examines the different aspects of an execution plan, from selectivity to parallel execution and explains what information you should be gleaming from the plan and how it affects the execution. It offers insight into what caused the Optimizer to make the decision it did as well as a set of corrective measures that can be used to improve each aspect of the plan.

Database | 45min |

Harnessing The Power Of Optimizer Hints

The goal of the Oracle Optimizer is to examine all possible execution plans for a SQL statement and to pick the one with the lowest cost, which should be the most efficient. From time to time, it may become necessary to influence the plan the Optimizer chooses. The most powerful way to alter the plan chosen is via Optimizer hints. But knowing when and how to use Optimizer hints correctly is somewhat of a dark art. This session explains in detail how Optimizer hints are interpreted, when they should be used, and why they sometimes appear to be ignored.

Maria Colgan

Maria Colgan

Master Product Manager, Oracle

Maria Colgan is a master product manager at Oracle Corporation and has been with the company since version 7.3 was released in 1996. Maria’s core responsibility is creating material and lectures on the Oracle Database and the best practices for incorporating it into your environments. She is also responsible for getting the feedback from our customers and partners incorporated into future releases of the product.
Prior to this role; she was the product manager for Oracle Database In-Memory and the Oracle Database query optimizer. Maria is the primary author of the SQLMaria blog https://sqlmaria.com and a contributing author to the Oracle Optimizer blog https://blogs.oracle.com/optimizer.

Database | 45min |

AutoUpgrade – Unattended Hands-Free Database Upgrades to Oracle Database 19c

Database upgrades are no fun for most people. And some customers have hundreds or thousands of databases to upgrade. The new AutoUpgrade tool will automate your database upgrades. This is exactly what most people waited for. A small, lean and simple tool which upgrades your databases – not only to Oracle 19c but also to 18c or 12.2.0.1. Upgrades become an easy task. You can embed it into your scripts – and schedule it overnight. The next morning, the database is upgraded. One config file – that’s it. This talk includes an interactive live demo – and many tips and tricks.

Mike Dietrich

Mike Dietrich

Master Product Manager - Database Upgrade and Migrations, Oracle

Based in Bavaria, Germany. >25 years IT experience. Database Upgrade and Migration specialist, currently in the role of a Master Product Manager working for Oracle for over 20 years. Interlink between customers/partners and the Oracle Upgrade Development. Holding technical workshops between Arctic and Antarctica. Assisting customers in their reference projects onsite and remotely worldwide. Troubleshooting upgrade and migration issues. Eager to learn something new every day. Experienced conference speaker. Music lover. LP/vinyl enthusiast. Mountain hiker. Runner.
Find out more about Mike on the Upgrade Blog: https://MikeDietrichDE.com

Database | 45min |

Database Stats. Doing It Right, When It’s Harder

Following on from “Doing It Right, The Easy Way”. Oracle Statistics are critical to the optimizer and your system performance, whether on-premises, in the Cloud or Autonomous.
What do you need to consider when tables get big, you have quickly changing data, and other more complex situations.
What can you do with Oracle to make your life easier, and where can it get in the way?

Neil Chandler

Neil Chandler

Database Architect, Chandler Systems

Neil has been working in IT since 1988, and with Oracle software since 1991 in both a Production Support and Development capacity.
Neil is an independent consultant who specialises in Performance Tuning, RAC, DataGuard, and Goldengate.
Neil also works with SQL Server, MariaDB and other databases.
Neil is an Oracle ACE Director, and a board member of the UKOUG
He likes to drink strong smooth Italian coffee, good beer and better whisky, depending upon the time of day.

Analytics & Big Data| 45min |

Putting machine learning into production : the good the bad and the ugly

Data Science and Machine Learning are key tools that organisations around the world are using to find hidden patterns in their data. These patterns can give key business insights and financial benefits. When it comes to maximizing the business value there are a number of key technical and business challenges that are limiting this potential success. One key success factor is the ability to take data science and machine learning out of the lab environment and into production use. Developers find it difficult to incorporate the outputs and models from data science and machine learning into applications and building complex IT solutions, particularly when trying to manage concept drift. At the same time the business is facing difficulties with ROI and how these projects operate differently to typical IT projects. This presenting will explore these challenges for IT and Business and will give pointers for how you can maximize the business value of data science and machine learning.

Brendan Tierney

Brendan Tierney

Oralytics

Brendan Tierney, Oracle GroundBreaker Ambassador & Oracle ACE Director, is an independent consultant (Oralytics) and lectures on data science, databases, and Big Data at the Dublin Institute of Technology/Dublin Technological University. He has 25+ years of experience working in the areas of data mining, data science, Big Data, and data warehousing. Brendan is a recognized Data Science and Big Data expert and has worked on projects in Ireland, the UK, Belgium, Holland, Norway, Spain, Canada, and the U.S. Brendan is active in the Oracle User Group community, where he is one of the leaders for the OUG in Ireland and is a Member Advocate at Board of Director level with the UKOUG. Brendan has also been editor of the UKOUG Oracle Scene magazine and is a regular speaker at conferences around the world. He is an active blogger and also writes articles for OTN, Oracle Scene, IOUG SELECT Journal, ODTUG Technical Journal, and ToadWorld. He is also on the board of directors for DAMA in Ireland. Brendan has published four books, three with Oracle Press/McGrwa-Hill (Predictive Analytics Using Oracle Data Miner, Oracle R Enterprise: Harnessing the Power of R in Oracle Database, and Real World SQL and PL/SQL: Advice from the Experts) and one with MIT Press (Essentials of Data Science). These books are available on Amazon, in print, ebook and audio book formats.

Analytics & Big Data| 45min |

REST enabled Neural Networks in Oracle 18c

Everywhere you look machine learning is being used to provide valuable insights of your customer data, as well as data from other parts of your organisation. The Oracle Data Warehouse Cloud Service and Oracle 18c Database allows you to build real-time predictive machine learning models. These can be build using the Oracle Advanced Analytics option, using the R language or using the new Oracle Machine Learning product. But the real value comes when these machine learning models can be shared throughout the organisation. This presentation will demonstrate how these machine learning models can be build and then shared using RESTful services allowing real-time scoring of data from any of languages used for your production applications.

Brendan Tierney

Brendan Tierney

Oralytics

Brendan Tierney, Oracle GroundBreaker Ambassador & Oracle ACE Director, is an independent consultant (Oralytics) and lectures on data science, databases, and Big Data at the Dublin Institute of Technology/Dublin Technological University. He has 25+ years of experience working in the areas of data mining, data science, Big Data, and data warehousing. Brendan is a recognized Data Science and Big Data expert and has worked on projects in Ireland, the UK, Belgium, Holland, Norway, Spain, Canada, and the U.S. Brendan is active in the Oracle User Group community, where he is one of the leaders for the OUG in Ireland and is a Member Advocate at Board of Director level with the UKOUG. Brendan has also been editor of the UKOUG Oracle Scene magazine and is a regular speaker at conferences around the world. He is an active blogger and also writes articles for OTN, Oracle Scene, IOUG SELECT Journal, ODTUG Technical Journal, and ToadWorld. He is also on the board of directors for DAMA in Ireland. Brendan has published four books, three with Oracle Press/McGrwa-Hill (Predictive Analytics Using Oracle Data Miner, Oracle R Enterprise: Harnessing the Power of R in Oracle Database, and Real World SQL and PL/SQL: Advice from the Experts) and one with MIT Press (Essentials of Data Science). These books are available on Amazon, in print, ebook and audio book formats.
Neil Chandler

Neil Chandler

Database Architect, Chandler Systems

Neil has been working in IT since 1988, and with Oracle software since 1991 in both a Production Support and Development capacity.
Neil is an independent consultant who specialises in Performance Tuning, RAC, DataGuard, and Goldengate.
Neil also works with SQL Server, MariaDB and other databases.
Neil is an Oracle ACE Director, and a board member of the UKOUG
He likes to drink strong smooth Italian coffee, good beer and better whisky, depending upon the time of day.

Analytics & Big Data| 45min |

Buzzword Bingo or Reality? OAC ADW ODA Combined

AI technologies have enabled us to interact with systems and devices in revolutionary ways. Oracle has evolved chatbots into digital assistants (Oracle Digital Assistant) to leverage AI to improve the user experience. Come to this session to learn the basics of these digital assistants, such as intents, utterances, and entities. The presentation looks at the design of a conversation flow, connects Digital Assistant to Oracle Autonomous Data Warehouse and Oracle Analytics Cloud via back-end API, enabling Digital Assistant to execute and embed Analytics Cloud reports or execute and return SQL statements from Autonomous Data Warehouse and Digital Assistant to display dashboards from Analytics Cloud.

Analytics & Big Data| 10min |

I AM SPARTACUS – Making sense of IDCS

Oftentimes the journey to the cloud stems from a yearning for “Cloud removes all issues we used to have”. While cloud solutions do alleviate many tasks and eradicate many issues commonly found with on-premises products, it also adds new pieces to the puzzle which need to be understood in order to fully unlock their potentials and allow customers to realize all of the benefits.

Migrating on-premises OBIEE to Oracle Analytics Cloud is a straightforward enough task. The integration of a central cloud analytics platform with other clouds, on-premises data sources and security mechanisms at the same time, however, is a key factor that’s often neglected or misunderstood. In reality it is one of the most crucial success factors to any initiative.

Success is not about eye candy – it’s about what makes an initiative actually successful as in integral part of the enterprise.

The Oracle Identity Cloud Service IDCS is the unifying platform and methodology which allows you to integrate all the distinct security concepts and technologies playing a part in a modern, heterogeneous and hybrid infrastructure.

This presentation aims to walk through the technical steps needed to configure LDAP, IDCS and OAC.

Christian Berg

Christian Berg

Managing Director, Dimensionality

Working with in the data science and analytics space since 2000, Christian Berg has vast experience in project work covering all industries. His work as architect and evangelist covers in the cloud as well as on-premises implementations and includes not only data related activities but also security, infrastructure and architecture.
A prolific speaker and heavily engaged community leader, Christian is an Oracle ACE Director and has been designated Most Valued Contributor for Oracle Support Communities. He also teaches for Oracle University.

Analytics & Big Data| 45min |

Challenges and Pitfalls of Data Visualization

“A picture says more than a thousand words”. This sounds like a true statement. While it’s true that it is easier to tell a story with visuals than with words, it makes a huge difference which visual you are using for which story. What is the real story behind a visual. Using the wrong visual to tell a certain story can reduce the benefit of a visual to zero. In this presentation we will go through the Challenges & Pitfalls of Data Visualization.

Daan Bakboord

Daan Bakboord

BU Manager Data & Analytics, Pong

Self Employed Data & Analytics consultant in the Netherlands. DaAnalytics is my personal label. I joined Pong as as a Self-Employed entrepreneur to run the Data & Analytics Business Unit and to work together with a number of enthusiastic, experienced fellow entrepreneurs.
I have a strong focus on Oracle Analytics (#OAC, #OBIEE and Data Visualization) and Cloud Analytics (Fivetran, Snowflake and Looker). Next to that, I have a strong interest in (the Architecture and organization of) Modern (Cloud) Data Architectures in general (TOGAF, ArchiMate, and CBIP) and Oracle Analytics Architectures in specific.

Analytics & Big Data| 45min |

Is it Corked? Wine Machine Learning Predictions with OAC

What do you know about Machine Learning and Artificial Intelligence? How deep do you need to study before you can actually start implementing it?
Oracle Analytics Cloud democratizes the concept of Data Science: data cleansing, enrichment, model training and evaluation are now tasks that can be performed visually in the tool lowering the barrier of Machine Learning.

This presentation will show a live Machine Learning example with OAC, starting from a Wine Rating Dataset, we will understand the features, enrich them, build a predictive model to score the wine rating and validate it against unseen data, all with a simple GUI and without having to write a single line of code!

Are you ready to see Machine Learning in action? And understand all the steps involved in building and validating a model? Then check out this session!

Francesco Tisiot

Francesco Tisiot

BI Tech Lead, Rittman Mead

Francesco Tisiot is the BI tech lead at Rittman Mead and Oracle ACE Director. As an analyst, architect, and developer, he has built expertise in the data integration and business analytics space over the years. Francesco is involved in the analytics community by blogging on the Rittman Mead website, speaking at various conferences around the world, and being the president of the Italian User Group.

Analytics & Big Data| 45min |

When Machine Learning meets Graph Databases

Machine Learning is everywhere these days (just after AI), it started as a python and R thing, it joined the Oracle Database after and it’s now available for Oracle Graph Database as well. Let’s go through some examples of how graphs require to slightly adapt data preparation to run Machine Learning algorithms.

Analytics & Big Data| 10min |

Relational DB vs Graph DB: And The Winner Is?

No need to introduce Relational Databases anymore, and even less the power of SQL. But better to not ignore Graph Databases: they are powerful and have some obvious benefits compared to a relational database. Let’s compare the two and the power of their query languages with some practical examples and see which wins!

Gianni Ceresa

Gianni Ceresa

Managing Director, DATAlysis GmbH

Gianni is an OAC/OBIEE enthusiast more widely interested in BA/DW/EPM solutions with a special focus on Oracle products and solutions. Oracle ACE Director, owner of DATAlysis GmbH, a consulting company in Switzerland, he has more than 10 years of experience in multiple project roles like architect, analyst, team lead and developer, bridging together the business and the technical side of the BA world. His other activities include OBIEE/OAC training delivery, R&D, blogging and supporting the Oracle community on the Oracle forums.

Analytics & Big Data| 45min |

Making Sense of Location: Tracking, Visualizing & Analyzing Objects in 2D, 3D & 4D

Location information is a common element in many Big Data scenarios, in Smart Cities or in the context of the Internet of Things. This kind of positional data can explicitly be expressed as coordinates if it comes from a GPS sensor or it can be implicitly included in a postal code, a city or a landmark name, occurring in two or three dimensions, potentially even using time as the 4th dimension. For many years, Oracle has been offering technologies to manage, to analyze and to visualize this kind of data. In this session, we will review the basics of database development for geospatial data, both on-premise as well as in the cloud. We will look at tracking and tracing of moving objects, spatial data visualization, as well as more advanced analytics based on road networks. Two customer projects in Germany and Belgium are included to round off the session.

Hans Viehmann

Hans Viehmann

Product Manager, Oracle

Hans Viehmann is working for ORACLE Corporation as Product Manager for the Oracle Spatial and Graph technologies on both the database as well as the Big Data platforms.
He holds a degree in Physics from Hamburg University and started his career in Research before joining ORACLE over twenty-five years ago. After various positions in Presales and Business Development, he joined the Product Management Team in 2011. He is responsible for the outbound product managers on the Oracle Spatial and Graph team. With his team, he is looking after strategic projects and partnerships, the marketing activities, as well as the internal awareness around the Spatial and Graph technologies worldwide. He is working closely with various Oracle User Groups and helped establish Spatial and Graph Special Interest Groups in several countries. He is a regular speaker at conferences and user group events and serves on the advisory board of InGeoForum, Germany.

Analytics & Big Data| 10min |

HELP! How can I resolve my Oracle Analytics issues?

There is a vast amount of Oracle Analytics information out there in the wilderness but how do you get to it? How do you access it quickly? How can you keep up to date with this information? How can this information come to you? This 10 minute talk should show you how to get to the information that can assist you in resolving any Oracle Analytics issues that you may encounter.

This is targeted at the Oracle Analytics space but the principles apply across the board.

Joel Acha

Joel Acha

Oracle Analytics Consultant, Elffar Analytics

Joel is an independent Business Analytics Consultant with over 20 years working with Oracle products with a focus on Oracle Analytics Cloud and Oracle Business Intelligence product lines. Joel has worked on several projects across Europe in roles ranging from Development, Team Leading to Architecture. Joel spends time answering OBIEE and OAC questions on the Oracle Developer Community forums and blogs every now and then.

Analytics & Big Data| 45min |

Time Series Forecasting with R and Analytics

How to deal with time series forecasting with Oracle Analytics and R: how to predict sales for different types of items (continuous, seasonal, new,…) through the implementation of both algorithms already embedded in analytics and custom R scripts in order to see which of them best fits the problem and produces the best results.

Jonni Arioldi

IT Consultant, GN Techonomy

Mattia Ravasio

IT Consultant, GN Techonomy

JDE| 45min |

Estensioni applicative per Oracle JD Edwards

Come supportare la Digital Transformation attraverso le estensioni interne ed esterne all’ERP Oracle JD Edwards, per sfruttare al meglio le sue potenzialità e ottimizzare, di conseguenza, i processi aziendali.

Edoardo Volpi

Senior Manager, GN Techonomy

Davide Moroni

Oracle JDE ERP - Technical Leader, GN Techonomy

JDE| 45min |

Presentazione della struttura del gruppo

Presentazione della struttura del gruppo, desiderata e definizione dei primi gruppi di lavoro con relativi referenti.

Francesco Iarlori

Francesco Iarlori

Digital Innovator, Transformer & Strategist - Business Developer - Project Manager - Lecturer

Professional with almost 30 years of worldwide experience in sales, strategic planning & business development within major player across several industry sectors including Global Information Technology providers and Leading mobile operators, with a never-ending willingness to learn and to teach.
Organizer and team player, with an established number of success in identifying new and emerging business opportunities. Extensive knowledge of possible new products and services can be realized from a business and technological point of view.
High experienced in developing business plans for market growth in all stages: from market analysis, opportunities identification, through implementation.
An empathetic storyteller in keynotes or academic institutions where he likes to seed the need of the essence of knowledge: represent our world and improve it. World guesser constantly looking for metaphors and paradigms. Passionate about science and its day to day application, he likes music, arts, painting and any kind of human artifact.
A visionary and strategic planner in leading, advancing, evaluating strategic and tactical plans, and implement them directly at the customer or internal to the company. Extensive Innovative technology knowledge since the early 80s with implementation all over the world (Developed and Developing).
Advisor for Investor or Multinational Companies willing to address new GEOs markets such as Europe, USA, and Africa, this also cooperating with UN for developing countries. Independent Journalist, Keynote speaker in International Events, Columnist and teacher at Universities.

JDE| 45min |

Soluzioni di Picking Medical Spare Parts grazie a JDE

Roberto Bondi

IT Manager, CEFLA