使用Oracle Data Integrator Studio创建资料档案库

一、Creating the Database Schema

复制代码
/*第1步:创建临时表空间  */
create temporary tablespace user_temp  
tempfile 'C:\app\ORACLE\oradata\orcl\user_temp.dbf' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;  
 
/*第2步:创建数据表空间  */
create tablespace user_data  
logging  
datafile 'C:\app\ORACLE\oradata\orcl\user_data.dbf' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;  
 
/*第3步:创建用户并指定表空间  */
create user ODI_REPO identified by ODI_REPO  
default tablespace user_data  
temporary tablespace user_temp; 
 
/*第4步:给用户授予权限  */
grant connect,resource,dba to ODI_REPO;
复制代码

二、创建Master Repository"并连接

启动 odi64.exe,运行新建主资料档案库向导

image

配置连接信息,用户名和口为第一步创建的

image

忽略掉,字符编码问题

image

输入SUPERVISOR的密码

imageimage

创建中

image

创建成功

image

三、Connecting to the Master Repository"

ODI→连接 新建登陆

image

image

输入资料档案库连接信息

image

连接成功,设计器tab页是灰显的,因为项目存在资料档案库

image

四、创建工作资料档案库

登陆主资料档案库,选择拓扑→主资料档案库 右键新建工作资料档案库,

image

默认,即可。

指定类型,开发

image

登陆进去后发现设计器不是灰显的了,说明资料档案库登陆成功。

image

五、资料档案库其他操作

Attaching a work repository consists of linking an existing work repository to the current master repository. This existing work repository already exists in the database and has been previously detached from this or another master repository.

Detacheing a work repository, by deleting its link to the master repository. This is an opposite operation to attaching. This operation does not destroy the work repository content.

Erasing a work repository consists of deleting the work repository from the database.Erasing your work repository is an irreversible operation. All information stored in the work repository will be definitively deleted, including the metadata of your models, projects and run-time information such as scenarios, schedules, and logs.

连接和分离是相反的操作,分离资料档案库只是删除和主资料档案库的连接,分离后后面可以重新attache。从数据库中擦除资料档案库会从数据库物理删除内容,不可恢复。

5.1 修改工作资料档案库口令 Changing a Work Repository Password

5.2 连接资料档案库 Attaching a work repository

5.3 分离资料档案库Detaching  a Work Repository

 

5.4 从数据库擦除资料档案库 Erasing a work repository

参考文献:

ODI Studio创建资料档案库

http://docs.oracle.com/middleware/1213/odi/administer-develop/admin_reps.htm#ODIAD154

posted on   小强斋太  阅读(2182)  评论(1编辑  收藏  举报

编辑推荐:
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示

目录导航