- 浏览: 91144 次
- 性别:
- 来自: 上海
最新评论
-
zq_zero:
很好,不过如果改为用字符串数组来存储迭代结果和判断是否重 ...
Oracle自定义聚合函数实现字符串拼接 -
sea0108:
good。。
Oracle自定义聚合函数实现字符串拼接
文章列表
Job Logs:
$Documentum\dba\log\<Repository Id in
Hex>
\agentexec\<JobId>
AgentExec Log:
$Documentum\dba\log\<Repository Id in
Hex>
\agentexec\agentexec.log
Docbase Log:
$Documentum\dba\log\<Docbase Name>
.log
Docbroker Log:
$Documentu ...
There are four steps
1) identify whther any sysobjects are attached to the lifecycle
select * from dm_sysobject(all) where r_policy_id = '460186d080230dc5'
2)
if any results from above query, you need to delete that sysobject, or
assign any other lifecycle to it. make sure the above the que ...
the related error occurs when a object is saved. DFC checks the
i_vstamp attribute of the object you previously obtained with
dfSession.getObject() and the current i_vstamp value of the object in
the repository. If the values are different, it means that the object
was in the meantime changed ...
确认文件存放路径
- 博客分类:
- documentum
1.查看file_system_path DQL
//r_object_id
select r_object_id from dm_document where object_name = 'test.docx';
//storage_id
select storage_id,data_ticket from dmr_content where any parent_id = '090003eb80006f4f' and rendition=0;
//root
select root from dm_filestore where r_object_id = ...
转载于:http://idior.cnblogs.com/archive/2006/03/20/354027.html
Kerberos
协议:
Kerberos
协议主要用于计算机网络的身份鉴别
(Authentication),
其特点是用户只需输入一次身份验证信息就可以凭借此验证获得的票据
(ticket-granting ticket)
访问多个服务,即
SSO(Single Sign On)
。由于在每个
Client
和
Service
之间建立了共享密钥,使得该协议具有相当的安全性。条件
先来看看
Kerberos
协议的前 ...
在 Linux 管理中,常有需要修改根目录下 .bash_profile
文件,更改环境变量的情况,文件修改后,一般的做法是重新登录,或者重新启动机器,不知道大家是怎么做的,反正我以前是用前面的两个办法中的一个,感觉很
不方便。现在发现了一个命令: source .bash_profile
在修改好 .bash_profile 文件后,直接运行这个命令,就可以直接让环境变量的修改生效了。
转载
http://www.blogjava.net/huliqing/archive/2008/04/18/193907.html
对于作Java桌面应用来说,比较烦人的就是安装部署问题,客户端是否安装有jre、jre版本问题、jre去哪下载、如何用jre启动你的Java应用?不要说刚接触电脑的人,就算是比较熟悉电脑,如果没有接触过Java,面对一个Java应用,如何在Windows下启动它,估计都会折腾半天。如果不是因为这个问题,Java在我的眼里算是最完美的语言了,也是我最喜爱的语言。 所以我认为这个是导致Java桌面应用被一些人所讨厌的最大原因,Java的优势是“一次编写 ...
java -cp "d:\ucfinit.jar" com.documentum.ucf.client.install.TestInstall "http://192.168.19.7:8080/attach" "/wdk/contentXfer/ucf.installer.config.xml"
由于安装documentum 6.5sp2需要oracle的版本最低为10.2.0.4,目前好像没有oracle10.2.0.4的直接安装版,所以只能采取升级10.2.0.1的办法来实现。
操作步骤:
1.完全安装10.2.0.1
2.安装完成后,停止所有的oracle服务,可以通过停止oracle 的window services或者使用以下命令
emctl stop dbconsole
Sqlclub学习社区
isqlplusctl stop
本文来自Sqlclub
lsnrctl stop
...
1 AIX系统的安装
使用AIX 5300L5的介质,根据系统提示进行安装
这一步很简单,不详细说明
安
装完成后需要设置好系统时区、时间和网路。
2 调整文件系统
初步装好的系统,其文件系统如下:
# df -k
Filesystem
1024-blocks Free %Used Iused %Iused Mounted on
/dev/hd4 32768 15648
53% 1724 11% /
/dev/hd2 1212416 8764 100% 31825 11% /usr
/dev/hd9var
32768 23884 28% 369 5% /v ...
详细的实现方法见:
http://developer.emc.com/developer/Articles/DisplayCustomAttributesInWebtop.htm
There are two events on the browser tree (there are in the
BrowserTree class):
refreshTreeFromId(Control oControl, ArgumentList oArgs);
refreshTreeFromAbsolutePath(Control oControl, ArgumentList oArgs);
These let you set the currently selected node on the browser tree.
Look at the web ...
–
For example:
//create table
CREATE TABLE RT_CENTERS
(CENTER_ID
NUMBER, CENTER_NAME
VARCHAR2(60 BYTE))
//register table
–
REGISTER TABLE dm_dbo.rt_centers
(
CENTER_ID INT, CENTER_NAME CHAR(60) ) ;
Go;
//update registered table permis ...
docbase Owner account password will be stored in encrypted format in the following location
$DOCUMENTUM/dba/config/<repository name>/dbpasswd.txt
To decrypt the password, Open the file with any text editor and copy the contents
Sample:
DM_ENCR_TEXT=pdxgPcWP7kDrw2qoq/DXMJ+L6ijsxQU ...
今天在www.dmdeveloper.com看到一个国外documentum人士的面试题,贴来大家共赏一下,题目不难,答好也不容易。
(1) Describe the Documentum object model (I usually mention dm_sysobject and custom types to give them a starting point, then I wait to hear about dm_document, concept of inheritance, etc.)
(2) Describe the Documentum securit ...