diff --git a/obaas/explore-platform/explore-platform.md b/obaas/explore-platform/explore-platform.md index f61d2b24..e6718fd3 100644 --- a/obaas/explore-platform/explore-platform.md +++ b/obaas/explore-platform/explore-platform.md @@ -222,12 +222,12 @@ Oracle Backend for Spring Boot and Microservices includes an Oracle Autonomous D In the SQL Worksheet, you can the first pull down list in the **Navigator** on the left hand side to see the users and schema in the database. Choose the **CONFIGSERVER** user to view tables (or other objects) for that user. This is the user associated with the Spring Config Server. - Execute this query to view tables associated with various Spring Boot services: + Execute this query to view tables associated with various Spring Boot services and the CloudBank: ```sql select owner, table_name - from dba_tables - where owner in ('CUSTOMER', 'FRAUD', 'ACCOUNT', 'USER', 'CONFIGSERVER') + from dba_tables + where owner in ('ACCOUNT', 'CUSTOMER', 'CONFIGSERVER', 'AZNSERVER') ``` ![Tables associated with Spring Boot services](images/obaas-adb-5.png) diff --git a/obaas/explore-platform/images/obaas-adb-5.png b/obaas/explore-platform/images/obaas-adb-5.png old mode 100755 new mode 100644 index 7408f2f3..28311575 Binary files a/obaas/explore-platform/images/obaas-adb-5.png and b/obaas/explore-platform/images/obaas-adb-5.png differ