This post is part of a series of blog posts on the Oracle Autonomous Database.
Oracle Machine Learning
Workflow Tasks for using Oracle Machine Learning:
- Create Oracle Machine Learning user
- Create workspaces
- Create projects
- Create notebooks
- Run SQL scripts/statements
Please note: Oracle Machine Learning users can also be created using SQL Developer.
Oracle Application Express (APEX)
- APEX is automatically enabled in the autonomous database
- Access is through the Service Console
- The initial access is through the “admin” user (in the Internal workspace)
APEX and SQL Developer Web Access Requirements with ADB-D:
- Must be inside customer VCN
- Service user Database Admin is automatically granted use of tooling
- Database users must be enabled to use tooling using ORDS.ENABLE_SCHEMA
BEGIN
ORDS.ENABLE_SCHEMA (p_enabled=> TRUE,
p_schema=> 'HRUSER', -- the database user name
p_url_mapping_type=> 'BASE_PATH',
p_url_mapping_pattern=> 'hr_alias', -- determines URI template for RESTful Services
p_auto_rest_auth=> TRUE ); -- authenticate request before any request can be serviced
END;