首页 > 技术文章 > Kettle7.1添加资源库(使用ORACLE作为资源库)

qiubenming-oracle 2019-05-26 12:44 原文

1.首先为资源库创建表空间

create bigfile tablespace REPO_TBS
datafile 'C:\Oracledatafiles\Oracledataspace\orcl\repo.dbf' SIZE 1024M autoextend on;

2建用户,授权限

--建用户,授权
create user repo identified by repo default tablespace REPO_TBS temporary tablespace temp;
grant connect,resource,dba to repo;

5启动spoon

 【connect】-【Other Repositories】,我们一般选择Database Respositories

 

 配置资源库连接时不能使用参数形式。

 

推荐阅读