 




<?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>IT Answers &#187; CLOB</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/clob/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Thu, 23 May 2013 13:48:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>MS-Access data inserted in to Oracle 11g CLOB</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/ms-access-data-inserted-in-to-oracle-11g-clob/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/ms-access-data-inserted-in-to-oracle-11g-clob/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 16:08:13 +0000</pubDate>
		<dc:creator>Sgafair</dc:creator>
				<category><![CDATA[CLOB]]></category>
		<category><![CDATA[formatting]]></category>
		<category><![CDATA[MS Access]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have an old MS-Access database storing data in bullet point format. I need to transfer this data across to an Oracle 11g EE database version at the same time maintain the MS-Access formatting.  How do I go about this?]]></description>
				<content:encoded><![CDATA[<p>I have an old MS-Access database storing data in bullet point format. I need to transfer this data across to an Oracle 11g EE database version at the same time maintain the MS-Access formatting.  How do I go about this?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/ms-access-data-inserted-in-to-oracle-11g-clob/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Numeric or Value Error for string aggregation</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/numeric-or-value-error/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/numeric-or-value-error/#comments</comments>
		<pubDate>Fri, 27 May 2011 13:57:39 +0000</pubDate>
		<dc:creator>Mitilma</dc:creator>
				<category><![CDATA[CLOB]]></category>
		<category><![CDATA[CLOB Problem]]></category>
		<category><![CDATA[String testing]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi, I use below code for string aggregation. My database table which I apply string aggregation is a large one with 165 million rows. Although I use CLOB, I get numeric or value error in eggregation termination function after the script is run for a long time. For a small table, I do not get [...]]]></description>
				<content:encoded><![CDATA[<p>Hi,<br />
I use below code for string aggregation. My database table which I apply string aggregation is a large one with 165 million rows. Although I use CLOB, I get numeric or value error in eggregation termination function after the script is run for a long time. For a small table, I do not get this error. What could be the reason for that? Thanks in advance.</p>
<div>&lt;code&gt; create or replace<br />
TYPE     t_string_agg AS OBJECT<br />
(<br />
  g_string  CLOB,<br />
  STATIC FUNCTION ODCIAggregateInitialize(sctx  IN OUT  t_string_agg)<br />
    RETURN NUMBER,<br />
  MEMBER FUNCTION ODCIAggregateIterate(self   IN OUT  t_string_agg,<br />
                                       value  IN      VARCHAR2 )<br />
     RETURN NUMBER,<br />
  MEMBER FUNCTION ODCIAggregateMerge(self  IN OUT  t_string_agg,<br />
                                     ctx2  IN      t_string_agg)<br />
    RETURN NUMBER,</p>
<p>    MEMBER FUNCTION ODCIAggregateTerminate(self         IN   t_string_agg,<br />
                                         returnValue  OUT  CLOB,<br />
                                         flags        IN   NUMBER)<br />
    RETURN NUMBER<br />
);</p>
<p>create or replace<br />
TYPE BODY     t_string_agg IS<br />
  STATIC FUNCTION ODCIAggregateInitialize(sctx  IN OUT  t_string_agg)<br />
    RETURN NUMBER IS<br />
  BEGIN<br />
    sctx := t_string_agg(NULL);<br />
    RETURN ODCIConst.Success;<br />
  END;<br />
  MEMBER FUNCTION ODCIAggregateIterate(self   IN OUT  t_string_agg,<br />
                                       value  IN      VARCHAR2 )<br />
    RETURN NUMBER IS<br />
  BEGIN<br />
    SELF.g_string := to_char(self.g_string) || &#8216;,&#8217; || value;<br />
    RETURN ODCIConst.Success;<br />
  END;<br />
  MEMBER FUNCTION ODCIAggregateMerge(self  IN OUT  t_string_agg,<br />
                                     ctx2  IN      t_string_agg)<br />
    RETURN NUMBER IS<br />
  BEGIN<br />
    SELF.g_string := to_char(SELF.g_string) || &#8216;,&#8217; || ctx2.g_string;<br />
    RETURN ODCIConst.Success;<br />
  END;<br />
  MEMBER FUNCTION ODCIAggregateTerminate(self         IN   t_string_agg,<br />
                                         returnValue  OUT  CLOB,<br />
                                         flags        IN   NUMBER)<br />
    RETURN NUMBER IS<br />
  BEGIN<br />
    &#8211;returnValue := RTRIM(LTRIM(to_char(SELF.g_string), &#8216;,&#8217;), &#8216;,&#8217;);<br />
    returnValue := SELF.g_string;<br />
    RETURN ODCIConst.Success;<br />
  END;<br />
END;</p>
<p>create or replace<br />
FUNCTION string_agg (p_input VARCHAR2)<br />
RETURN VARCHAR2<br />
PARALLEL_ENABLE AGGREGATE USING t_string_agg; &lt;/code&gt;</p></div>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/numeric-or-value-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to convert LONG to CLOB or to VARCHAR type in select statement</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-convert-long-to-clob-or-to-varchar-type-in-select-statement/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/how-to-convert-long-to-clob-or-to-varchar-type-in-select-statement/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 20:00:39 +0000</pubDate>
		<dc:creator>SamG</dc:creator>
				<category><![CDATA[CLOB]]></category>
		<category><![CDATA[Conversion]]></category>
		<category><![CDATA[DataType]]></category>
		<category><![CDATA[Long]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Question Edited by Michael Tidmarsh]]></description>
				<content:encoded><![CDATA[Question Edited by Michael Tidmarsh]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/how-to-convert-long-to-clob-or-to-varchar-type-in-select-statement/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Conversion of table into XML</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/conversion-of-table-into-xml/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/conversion-of-table-into-xml/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 10:10:28 +0000</pubDate>
		<dc:creator>SBK2009</dc:creator>
				<category><![CDATA[CLOB]]></category>
		<category><![CDATA[Oracle 8.1.4]]></category>
		<category><![CDATA[Table to XML]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[How to load a table into XML in a CLOb using Oracle 8.1.4]]></description>
				<content:encoded><![CDATA[<p>How to load a table into XML in a CLOb using Oracle 8.1.4</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/conversion-of-table-into-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hibernate with clob type</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/hibernate-with-clob-type/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/hibernate-with-clob-type/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 12:12:02 +0000</pubDate>
		<dc:creator>Arunpmk</dc:creator>
				<category><![CDATA[CLOB]]></category>
		<category><![CDATA[CLOB Problem]]></category>
		<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[SQL Exception]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am using clob of oracle 10 g in hibernate. When i tried to insert 5000lines of HTML code to the variable in jave, i am getting the following error; Caused by: org.springframework.jdbc.UncategorizedSQLException: Hibernate operation: could not insert: [com.citi.gicap.bpm.ver.domain.Notes]; uncategorized SQLException for SQL [insert into notes1 (REQUEST_ID, NOTES_TEXT, USER_ACTION, ACTIVITY_NAME, ATTCH_REFS, INSERT_ID, INSERT_DATE, UPDATE_ID, UPDATE_DATE, [...]]]></description>
				<content:encoded><![CDATA[<p>I am using clob of oracle 10 g in hibernate. When i tried to insert 5000lines of HTML code  to the variable in jave, i am getting the following error;<br />
Caused by: org.springframework.jdbc.UncategorizedSQLException: Hibernate operation: could not insert: [com.citi.gicap.bpm.ver.domain.Notes]; uncategorized SQLException for SQL [insert into notes1 (REQUEST_ID, NOTES_TEXT, USER_ACTION, ACTIVITY_NAME, ATTCH_REFS, INSERT_ID, INSERT_DATE, UPDATE_ID, UPDATE_DATE, NOTES_ID) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)]; SQL state [null]; error code [17090]; operation not allowed: streams type cannot be used in batching; nested exception is java.sql.SQLException: operation not allowed: streams type cannot be used in batching<br />
notes_text is CLOB type.<br />
Can you please check and give me solotion for this?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/hibernate-with-clob-type/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Handling null values in XMLType function</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/handling-null-values-in-xmltype-function/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/handling-null-values-in-xmltype-function/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 06:11:30 +0000</pubDate>
		<dc:creator>Cirysha</dc:creator>
				<category><![CDATA[CLOB]]></category>
		<category><![CDATA[Error LPX-00229]]></category>
		<category><![CDATA[NULL values]]></category>
		<category><![CDATA[XML Parser Messages]]></category>
		<category><![CDATA[XMLType]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have xmlfile stored in table in CLOB column.It contains some null rows with some spaces. While parsing that column, am using xmltype function on that column, then it is giving error :LPX-00229 input source is empty, beacuse of null clob columns. I have to craete an function index also using xmltype and some aother [...]]]></description>
				<content:encoded><![CDATA[<p>I have xmlfile stored in table in CLOB column.It contains some null rows with some spaces.<br />
While parsing that column, am using xmltype function on that column, then it is giving error :LPX-00229 input source is empty, beacuse of null clob columns. </p>
<p>I have to craete an function index also using xmltype and some aother functions on that column , at that time also iam getting same error.</p>
<p>How to handle nulls with xmltype function</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/handling-null-values-in-xmltype-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DTS of TEXT to BLOB or CLOB</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/dts-of-text-to-blob-or-clob/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/dts-of-text-to-blob-or-clob/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 19:55:35 +0000</pubDate>
		<dc:creator>Donranny</dc:creator>
				<category><![CDATA[BLOB]]></category>
		<category><![CDATA[CLOB]]></category>
		<category><![CDATA[Data Transformation Services]]></category>
		<category><![CDATA[DTS]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Is there a maximum size to DTS from text to a Blob or clob ?]]></description>
				<content:encoded><![CDATA[<p>Is there a maximum size to DTS from text to a Blob or clob ?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/dts-of-text-to-blob-or-clob/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AR server</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/ar-server/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/ar-server/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 07:51:38 +0000</pubDate>
		<dc:creator>Jiji</dc:creator>
				<category><![CDATA[AR server]]></category>
		<category><![CDATA[CLOB]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server 2000]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[we r using the AR server 7.0 the backend database is sql 2000 under window platform, so now if I need to change the database table format to CLOB then, any one could tell me what is the format of changing the database format, I mean the table format to In-row and Out-row method. Could [...]]]></description>
				<content:encoded><![CDATA[<p>we r using the AR server 7.0 the backend database is sql 2000 under window platform, so now if I need to change the database table format to <b>CLOB</b> then, any one could tell me what is the format of changing the database format, I mean the table format to In-row and Out-row method.<br />
Could any one please tell me the command and the procedure for how to create the In-row and out-row clob table.<br />
????????</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/ar-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tagged text in Windows to be inserted into Db2 Clob column on Mainframe</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/tagged-text-in-windows-to-be-inserted-into-db2-clob-column-on-mainframe/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/tagged-text-in-windows-to-be-inserted-into-db2-clob-column-on-mainframe/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 07:48:15 +0000</pubDate>
		<dc:creator>Narayananv</dc:creator>
				<category><![CDATA[CLOB]]></category>
		<category><![CDATA[DB2]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have a string-combinatino of rich text and tagged test: ex: &#8220;test msg &#60;p&#62;&#60;STRONG&#62;&#60;/P&#62;&#8221; on Windows machine. How i can insert data &#8216;AS IS&#8217; without any data loss into a Db2 clob column. Db2 is residing on mainframe and we are using Db2 version 8.]]></description>
				<content:encoded><![CDATA[<p>I have a string-combinatino of rich text and tagged test: ex: &#8220;test msg &lt;p&gt;&lt;STRONG&gt;&lt;/P&gt;&#8221; on Windows machine. How i can insert data &#8216;AS IS&#8217; without any data loss into a Db2 clob column. Db2 is residing on mainframe and we are using Db2 version 8.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/tagged-text-in-windows-to-be-inserted-into-db2-clob-column-on-mainframe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Table partitioning, CLOB and BLOBs in DB2 9 LUW?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/table-partitioning-clob-and-blobs-in-db2-9-luw/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/table-partitioning-clob-and-blobs-in-db2-9-luw/#comments</comments>
		<pubDate>Thu, 31 Jan 2008 20:48:24 +0000</pubDate>
		<dc:creator>OKONITA</dc:creator>
				<category><![CDATA[BLOB]]></category>
		<category><![CDATA[CLOB]]></category>
		<category><![CDATA[DB2]]></category>
		<category><![CDATA[LOB]]></category>
		<category><![CDATA[Table partitioning]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi all, My shop has decided that we will take advantage of DB29 table partitioning for some of our large tables. Some of these table have CLOB, LOB and BLOB columns. We intend to split the large tables across several storage objects. I am looking for someone who have done table partitioning and CLOB, LOB [...]]]></description>
				<content:encoded><![CDATA[<p>Hi all,<br />
My shop has decided that we will take advantage of DB29 table partitioning for some of our large tables. Some of these table have CLOB, LOB and BLOB columns. We intend to split the large tables across several storage objects. I am looking for someone who have done table partitioning and CLOB, LOB and BLOB work to share his or her experience with me as I embark on my DB29 adventure. My first question are this: </p>
<p>(a) Wha are the size limit, if any, for CLOB, LOB BLOB column in DB29 LUW and DB28 for z/OS if archiving and rollforward is enabled?</p>
<p>(b) Is incremental backup possible with CLOB, LOB and BLOB tables? If so, can backups be merged?<br />
(c) Can I go in and alter partitions dynamically?<br />
(d) What can anyone talk about CLOB, LOB, BLOB forward recovery and Full archive logging?<br />
(e) How long and what does it take to convert a non-partitioned table to a partition table?</p>
<p>Don&#8217;t woirry, I will be doing some serious reading of my own but I love to read what all the Gurus and masters and imperial wizards have to say!! Believe it or not, it always makes my day, when I read your post!!!</p>
<p>Thanks<br />
Enuda</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/table-partitioning-clob-and-blobs-in-db2-9-luw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/26 queries in 0.029 seconds using memcached
Object Caching 928/1041 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-23 14:40:23 -->