ODI Studio拓扑结构的创建与配置 后来发现ODI 自带的mysql的KM比较少,所以还是以Oracle版本的sakila 作为了练习的源数据库。

下载地址:

https://code.google.com/p/sakila-sample-database-ports/downloads/      需要翻_墙

解压后发现有各种数据库的实现。

oracle-sakila-db sakila的Oracle版本

oracle-sakila-db.rar

在oracle数据库创建sakila用户

用于执行以下的各个sql

/*第1步:创建临时表空间  */
create temporary tablespace odi_temp 
tempfile 'C:\app\ORACLE\oradata\orcl\odi_temp.dbf'
size 50m 
autoextend on 
next 50m maxsize 20480m 
extent management local; 
  
/*第2步:创建数据表空间  */
create tablespace odi_data 
logging 
datafile 'C:\app\ORACLE\oradata\orcl\odi_data.dbf'
size 50m 
autoextend on 
next 50m maxsize 20480m 
extent management local; 
  

/*第3步:创建用户并指定表空间  */
create user sakila identified by sakila
default tablespace odi_data 
temporary tablespace odi_temp
quota unlimited on odi_data
profile default ;


/*第4步:给用户授予权限  */
grant connect,resource to sakila;
grant create view to sakila;
View Code

相关文章:

  • 2022-12-23
  • 2021-10-22
  • 2021-12-31
  • 2021-12-19
  • 2022-12-23
  • 2021-04-18
  • 2021-07-26
  • 2021-11-21
猜你喜欢
  • 2021-08-12
  • 2021-12-14
  • 2021-06-02
  • 2022-02-20
  • 2021-07-13
  • 2022-12-23
  • 2021-12-26
相关资源
相似解决方案