Manual installation
Introduction
Setup
Creating the schema
-- Create the carto user/schema
CREATE USER CARTO NO AUTHENTICATION;
-- Grant object creation privileges
GRANT CREATE PROCEDURE TO CARTO; -- Covers both procedures and functions
GRANT CREATE TABLE TO CARTO; -- Required for map, statistics, tiler modules
GRANT CREATE VIEW TO CARTO; -- Required for LDS and data modules
GRANT UNLIMITED TABLESPACE TO CARTO;
-- Grant network ACL permissions (required for AT Gateway features)
BEGIN
DBMS_NETWORK_ACL_ADMIN.APPEND_HOST_ACE(
host => '*',
ace => xs$ace_type(
privilege_list => xs$name_list('connect', 'resolve'),
principal_name => 'CARTO',
principal_type => xs_acl.ptype_db
)
);
COMMIT;
END;
/Installation
Download the package
Execute the script
Setup AT Gateway (optional)
Granting access to users
Congratulations!
Last updated
Was this helpful?
