Oracle
An overview of the Oracle integration with Secoda
Oracle Metadata Extracted
Getting Started with Oracle
Create a Database User
-- Create a secoda user
CREATE USER secoda IDENTIFIED BY '<password>';
-- Run this query for any schemas you'd like to import into Secoda
BEGIN
FOR table IN (SELECT owner, table_name FROM all_tables WHERE owner='<schema>') LOOP
EXECUTE IMMEDIATE 'grant select on '||table.owner||'.'||table.table_name||' to secoda';
END LOOP;
END; Whitelist Secoda IP Address
Connect Oracle to Secoda
Last updated
Was this helpful?