<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Armedia Blog &#187; Content Server</title>
	<atom:link href="http://www.armedia.com/blog/category/enterprise_content_management/documentum/content_server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.armedia.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 15:53:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>High Volume Server (Part 2)</title>
		<link>http://www.armedia.com/blog/2009/11/high-volume-server-part-2/</link>
		<comments>http://www.armedia.com/blog/2009/11/high-volume-server-part-2/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 13:39:03 +0000</pubDate>
		<dc:creator>dselvakumar</dc:creator>
				<category><![CDATA[Content Server]]></category>
		<category><![CDATA[Documentum]]></category>

		<guid isPermaLink="false">http://www.armedia.com/blog/?p=218</guid>
		<description><![CDATA[HVS (Part 2) Data Partitioning Before we delve into Data Partitioning, here’s a review of some fundamental database concepts. In terms of this article the focus will be on Oracle as the database. Fundamental Database (ORACLE) concepts: A Table: (i) Stores structured data (ii) is a database object housed in a segment. A normal table [...]]]></description>
			<content:encoded><![CDATA[<p>HVS (Part 2) Data Partitioning</p>
<p>Before we delve into Data Partitioning, here’s a review of some fundamental database concepts. In terms of this article the focus will be on Oracle as the database.</p>
<p>Fundamental Database (ORACLE) concepts:<br />
A Table:<br />
(i) Stores structured data<br />
(ii) is a database object housed in a segment.<br />
A normal table (i.e. non-partitioned) is exactly one segment. A partitioned table will be made up of as many segments as it has partitions.</p>
<p>A Tablespace:<br />
(i) is a logical container for segments<br />
(ii) may be empty but it will most likely hold one or more segments<br />
(iii) may be made up of one or more data files.</p>
<p>A Data file:<br />
(i) is the physical operating system (OS) disk file that stores data. All data in an Oracle database ends up in a data file that is part of a file system configured by the OS or as a raw device managed by Oracle</p>
<p>A Data Block: is Oracle manages the storage space in the data files of a database in units called data blocks.</p>
<p>A Segment: is made up of extents and is the logical container for an object in an Oracle database</p>
<p>An Extent: is a set of contiguous data blocks</p>
<p>Data Partitioning (as it relates to the HVS)<br />
Data Partitioning, in a nutshell, decomposes a database object (indexes, tables) into smaller more manageable pieces called partitions. The goal of data partitioning is to reduce the amount of data read for a particular SQL operation so that the overall response time is reduced. The data is organized using a partition key which is essentially a set of columns that determines in which partition a given row of objects will reside. It is important to note that the underlying database must also be partition enabled (which Oracle has been for quite a while). HVS uses i_partition as the partition key and HVS does Range partitioning, i.e., each partition is specified by the value of its partition key (i_partition). When using HVS, a SysObject, all its associated content objects, any local ACLs being referenced by the SysObject, and so on, will be assigned to the partition designation of the SysObject. For a LWSO, if the i_partition is NOT explicitly set, it will by default, be in the same partition as the parent, thus sharing the same i_partition id. Partition pruning is essentially directing a query to a subset of partitions rather than the entire table.</p>
<p>Data Partitioning leads to improved manageability (storage of data files on different physical drives), improved availability (partition independence) and optimized queries (using partition pruning).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.armedia.com/blog/2009/11/high-volume-server-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High Volume Server (HVS) Part1</title>
		<link>http://www.armedia.com/blog/2009/09/high-volume-server-hvs-part1/</link>
		<comments>http://www.armedia.com/blog/2009/09/high-volume-server-hvs-part1/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 18:32:04 +0000</pubDate>
		<dc:creator>dselvakumar</dc:creator>
				<category><![CDATA[Content Server]]></category>
		<category><![CDATA[Documentum]]></category>

		<guid isPermaLink="false">http://www.armedia.com/blog/?p=207</guid>
		<description><![CDATA[After hearing so much about EMC Documentum HVS, we decided to look under the hood to understand what the hype was all about. What is HVS? Made broadly available in version 6.5 (you need to purchase the key) it is a generic term that refers to 3 broad areas of enhancements namely 1) Lightweight SysObjects [...]]]></description>
			<content:encoded><![CDATA[<p>After hearing so much about EMC Documentum HVS, we decided to look under the hood to understand what the hype was all about.</p>
<p>What is HVS? Made broadly available in version 6.5 (you need to purchase the key) it is a generic term that refers to 3 broad areas of enhancements namely 1) Lightweight SysObjects (LWSO) 2) data partitioning and 3) scoping &#038; batching.</p>
<p>This article will serve as an introduction to LWSO and the next article will deal with data partitioning and then batching &amp; scoping. Stay tuned as the final post will deal with findings from base testing these enhancements.</p>
<p>LWSO share common attributes between parent objects providing the following benefits:</p>
<ul>
<li>normalizes the object model,</li>
<li>reduces metadata storage space, and</li>
<li>enhances repository scalability.</li>
</ul>
<p>It is important to note that LWSO are subtypes of shareable types which are subtypes of dm_sysobject. Many LWSO can share the same parent type.</p>
<p>When LWSO have a parent object the object is called unmaterialized (or dematerialized) LWSO.<br />
Unmaterialized LWSO will have identical values for all the attributes of its shared parent.<br />
LWSO get converted from unmaterialized to materialized when certain actions such as checkout, link, unlink, or etc are applied to the LWSO.</p>
<p>A materialized object does not have a parent and can become a parent for another LWSO object. Materialized objects are full SysObjects and are called private parent if they do not have any child LWSO. Materialized objects can be converted to unmaterialized objects by re-parenting them. Re-parenting maps LWSO i_sharing_parent attribute back to a sharable parent converting the object to a unmaterialized object.</p>
<p>Documentum provides the following for the manipulating LWSO:<br />
DQL:</p>
<ul>
<li>MIGRATE TO LITE (converts a dm_sysobject to LWSO),</li>
<li>CREATE SHAREABLE TYPE,</li>
<li>CREATE LIGHTWEIGHT TYPE.</li>
</ul>
<p>DFC: IDfLightObject, IDfSession, IDfPersistentObject.</p>
<p>In the next article we will explore data partitioning and its implementation in the HVS.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.armedia.com/blog/2009/09/high-volume-server-hvs-part1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Content Collection, Migration, and Delivery</title>
		<link>http://www.armedia.com/blog/2009/06/content-collection-migration-and-delivery/</link>
		<comments>http://www.armedia.com/blog/2009/06/content-collection-migration-and-delivery/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 22:17:42 +0000</pubDate>
		<dc:creator>kevans</dc:creator>
				<category><![CDATA[Alfresco]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Case Management]]></category>
		<category><![CDATA[Content Authoring]]></category>
		<category><![CDATA[Content Server]]></category>
		<category><![CDATA[Data Migration]]></category>
		<category><![CDATA[Documentum]]></category>
		<category><![CDATA[eDiscovery]]></category>
		<category><![CDATA[Electronic Health Records]]></category>
		<category><![CDATA[Enterprise Content Management]]></category>
		<category><![CDATA[Mobility]]></category>
		<category><![CDATA[Performance Monitoring]]></category>
		<category><![CDATA[Records Management]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Web Content Management]]></category>

		<guid isPermaLink="false">http://www.armedia.com/blog/?p=192</guid>
		<description><![CDATA[There are well over 35 proprietary document management systems, an astronomical number of homegrown document management systems, and billions of sources for information to come from.  As technology changes, new and better features are added to current systems, new products are coming out, and software systems frequently have to be upgraded.  As companies merge, workflows [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small;"><span style="font-family: Calibri;">There are well over 35 proprietary document management systems, an astronomical number of homegrown document management systems, and billions of sources for information to come from.<span style="mso-spacerun: yes;">  </span>As technology changes, new and better features are added to current systems, new products are coming out, and software systems frequently have to be upgraded.<span style="mso-spacerun: yes;">  </span>As companies merge, workflows that were once adequate, no longer cover the bases for the growing needs of the “new” organization.<span style="mso-spacerun: yes;">  </span>What happens when companies merge and they were using two different document management systems?<span style="mso-spacerun: yes;">  </span>Which one takes over?<span style="mso-spacerun: yes;">  </span>Or do they continue to use both?<span style="mso-spacerun: yes;">  </span>As organizations grow, merge, and split, the number of input sources and output destinations dramatically increase.<span style="mso-spacerun: yes;">  </span>How do we integrate these new information pathways , along with new applications that are introduced, keeping you in the same locked in status? </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small;"><span style="font-family: Calibri;">It’s simple.<span style="mso-spacerun: yes;">  </span>The new Content I/O Suite.<span style="mso-spacerun: yes;">  </span>Armedia’s Content I/O Suite allows users to collect information from all of those billions of sources, migrate it to the centralized repository in the company, and then, if needed, deliver that information to the different web portals that may need to view the information later.<span style="mso-spacerun: yes;">  </span>In fact, it can even send the information to multiple repositories all from the same interface.<span style="mso-spacerun: yes;">  </span>So what if Human Resources uses Documentum, and Accounting uses Laserfiche, and some departments have their own collaborative eRoom set up, but you just merged with another company who uses SharePoint and FileNet.<span style="mso-spacerun: yes;">  </span>What if one user could capture the information coming in from the website, or through email, or through regular snail mail, and deliver it into the appropriate system, without that one user ever having to be trained in each of those systems?<span style="mso-spacerun: yes;">  </span>Sounds too good to be true, doesn’t it?<span style="mso-spacerun: yes;">  </span>Check it out at <a href="http://armedia.com/products/suite/">http://armedia.com/products/suite/</a>. </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small;"><span style="font-family: Calibri;">-Kristin Evans</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.armedia.com/blog/2009/06/content-collection-migration-and-delivery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

