 




<?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; Oracle Tablespaces</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/oracle/oracle-tablespaces/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Sun, 19 May 2013 19:08:42 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Data issue in a Oracle Table</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/data-issue-in-a-oracle-table/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/data-issue-in-a-oracle-table/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 08:55:57 +0000</pubDate>
		<dc:creator>Ctnaveenkumar</dc:creator>
				<category><![CDATA[Oracle Tables]]></category>
		<category><![CDATA[Oracle Tablespaces]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have a 180 GB size table. When I select the table,it returns some columns with null data. But if I Select that particular record showing NULL column with a Primary key filter,it is showing data for that column. Please let me know what might be the problem with that table.]]></description>
				<content:encoded><![CDATA[<p>I have a 180 GB size table. When I select the table,it returns some columns with null data. But if I Select that particular record showing NULL column with a Primary key filter,it is showing data for that column. Please let me know what might be the problem with that table.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/data-issue-in-a-oracle-table/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Oracle- Parsing data in a specific row into a temp table</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/oracle-parsing-data-in-a-specific-row-into-a-temp-table/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/oracle-parsing-data-in-a-specific-row-into-a-temp-table/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 15:44:43 +0000</pubDate>
		<dc:creator>Dug</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Tables]]></category>
		<category><![CDATA[Oracle Tablespaces]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have used select text from dba_views where owner = &#8216;Something&#8217; and view_name = &#8216;Something&#8217;; I get back a row with the word (MEMO) in it. However that row contains a lot of text when clicked on. Such as something like SELECT /* SCCS Rev 1.1 10/14/2002 by Blah SCCS Rev 1.2 10/24/2002 Blah SCCS [...]]]></description>
				<content:encoded><![CDATA[<p>I have used<br />
select  text from dba_views<br />
where owner = &#8216;Something&#8217;<br />
and view_name = &#8216;Something&#8217;;</p>
<p>I get back a row with the word (MEMO) in it. However that row contains a lot of text when clicked on. Such as something like</p>
<p>SELECT<br />
/*<br />
 SCCS Rev 1.1<br />
   10/14/2002  by Blah</p>
<p> SCCS Rev 1.2<br />
  10/24/2002  Blah</p>
<p> SCCS Rev 1.3<br />
   11/08/2002  D.Dolganenko<br />
   1. Time scan</p>
<p>How can i parse each row of that text, into a temp table?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/oracle-parsing-data-in-a-specific-row-into-a-temp-table/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oracle- Source Code for Tables and Views cannot find</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/oracle-source-code-for-tables-and-views-cannot-find/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/oracle-source-code-for-tables-and-views-cannot-find/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 13:38:53 +0000</pubDate>
		<dc:creator>Dug</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Table]]></category>
		<category><![CDATA[Oracle Tablespaces]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hey, I am working on some coding to find a certain phrase with a number like (SCCS Rev 1.13) in the comments within procedures, tables, views, packages, etc. It works for everything except Tables and Views. This is because i am using Dba_source which does not include the source code for table or views. Does [...]]]></description>
				<content:encoded><![CDATA[<p>Hey, I am working on some coding to find a certain phrase with a number like (SCCS Rev 1.13) in the comments within procedures, tables, views, packages, etc. It works for everything except Tables and Views. This is because i am using Dba_source which does not include the source code for table or views. Does anyone have any ideas of what i cud do or what i could use to search for the phrasse in those too? I included my code below. The first procedure uses the data within a table (Project, Owner, Name) passed from the second procedure below. </p>
<p>CREATE OR REPLACE package body REINARD_DEV5.RevNum_pkg<br />
as<br />
procedure UPDATE_REVNUM(Object_project in varchar2,Object_owner in varchar2,<br />
                        Object_name in varchar2)       /*Procedure updates RevNum in Column*/<br />
    is<br />
        Cursor RevNum_cur is<br />
            select Text from dba_source<br />
            where owner=Object_owner<br />
            and name=Object_name<br />
            and TRIM(upper(text)) like upper(&#8216;SCCS Rev%&#8217;);</p>
<p>             NumB_old number:=0;<br />
             NumS_old number:=0;<br />
             NumB_new number;<br />
             NumS_new number;<br />
Begin<br />
        For RevNum_rec in RevNum_cur<br />
        Loop<br />
            RevNum_rec.text:=REPLACE(REPLACE(TRIM(LTRIM(LTRIM(TRIM(RevNum_rec.text),&#8217;SCCS Rev&#8217;),&#8217;rev&#8217;)), CHR(10) ), CHR(13) );                          /* Filters out text SCCS Rev */<br />
            NumB_new := To_number(Substr(RevNum_rec.text,0,instr(RevNum_rec.text,&#8217;.')-1));<br />
            Begin<br />
                NumS_new := To_number(Substr(RevNum_rec.text,instr(RevNum_rec.text,&#8217;.')+1));<br />
            Exception<br />
                when others then<br />
                    NumS_new := To_number(Substr(RevNum_rec.text,instr(RevNum_rec.text,&#8217;.')+1,2));<br />
            End;<br />
            If NumB_new &gt;= NumB_old then<br />
                If NumS_new &gt;= NumS_old then<br />
                    NumB_old := NumB_new;<br />
                    NumS_old := NumS_new;<br />
                End if;<br />
            End if;<br />
        End loop;<br />
        If NumB_old =0 and NumS_old = 0 then<br />
            Update Reinard_dev5.Test<br />
            Set Revision = &#8216; &#8216;<br />
            where Table_owner = Object_owner<br />
            and   Table_name = Object_name;<br />
        else<br />
            Update Reinard_dev5.Test<br />
            Set Revision = To_char(NumB_new)||&#8217;.'||To_char(NumS_new)<br />
            where Table_owner = Object_owner<br />
            and   Table_name = Object_name;<br />
        End if;<br />
Exception<br />
    When others then<br />
        Update Test<br />
        Set Revision = &#8216;Error&#8217;<br />
        where Table_owner = Object_owner<br />
        and   Table_name = Object_name;<br />
End;</p>
<p>procedure Find_RevNum       /* Selects all rows in table and inserts into update procedure */<br />
    is<br />
        Cursor RevNum_cur is<br />
            select *<br />
            from Test;<br />
    Begin<br />
        For RevNum_rec in RevNum_cur<br />
        Loop<br />
            Update_RevNum(REVNUM_REC.PROJECT,REVNUM_REC.TABLE_OWNER,<br />
                                       REVNUM_REC.TABLE_NAME);<br />
        End loop;<br />
    End Find_RevNum;</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/oracle-source-code-for-tables-and-views-cannot-find/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Variation in space occupied in same TABLSPACE by equally populated tables.</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/variation-in-space-occupied-in-same-tablspace-by-equally-populated-tables/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/variation-in-space-occupied-in-same-tablspace-by-equally-populated-tables/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 12:41:12 +0000</pubDate>
		<dc:creator>DBDEV</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle Tablespaces]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am inserting data in table T2 from T1(INSERT INTO T2..SELECT..FROM T1..). Both tables are in same tablespace. Even though records in T2 are less than T1,size occupied by T2(12 GB) is much higher than T1(440 MB). WHat may be the reason(s)?]]></description>
				<content:encoded><![CDATA[<p>I am inserting data in table T2 from T1(INSERT INTO T2..SELECT..FROM T1..). Both tables are in same tablespace. Even though records in T2 are less than T1,size occupied by T2(12 GB) is much higher than T1(440 MB). WHat may be the reason(s)?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/variation-in-space-occupied-in-same-tablspace-by-equally-populated-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle table space</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/oracle-table-space/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/oracle-table-space/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 16:16:28 +0000</pubDate>
		<dc:creator>Oracle1985</dc:creator>
				<category><![CDATA[Oracle administration]]></category>
		<category><![CDATA[Oracle Tablespaces]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[how do we purge the old data in the table space of the the segment in oracle 10g?]]></description>
				<content:encoded><![CDATA[<p>how do we purge the old data in  the table space of the the segment in oracle 10g?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/oracle-table-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Do I release unused space from a tablespace after dropping a blob table</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-release-unused-space-from-a-tablespace-after-dropping-a-blob-table/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-release-unused-space-from-a-tablespace-after-dropping-a-blob-table/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 17:11:30 +0000</pubDate>
		<dc:creator>Hmhora</dc:creator>
				<category><![CDATA[BLOB]]></category>
		<category><![CDATA[Oracle Tablespaces]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have a 30 GB BLOB table in a 162 GB tablespace. After I used the online table reorg to move this BLOB table and its BLOB index to another tablespace, Toad tells me that I have about 35 GB free. However, I can not reduce the size of this tablespace (i.e, resize the datafiles [...]]]></description>
				<content:encoded><![CDATA[<p>I have a 30 GB BLOB table in a 162 GB tablespace. After I used the online table reorg to move this BLOB table and its BLOB index to another tablespace, Toad tells me that I have about 35 GB free. However, I can not reduce the size of this tablespace (i.e, resize the datafiles associated with this tablespace). </p>
<p>Question: Is there a way to reduce the size of a tablespace after we drop a big table in that tablespace ?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-release-unused-space-from-a-tablespace-after-dropping-a-blob-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 g Temp Tablespace always shows full in OEM.</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/10-g-temp-tablespace-always-shows-full-in-oem/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/10-g-temp-tablespace-always-shows-full-in-oem/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 14:15:14 +0000</pubDate>
		<dc:creator>DAC</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle Tablespaces]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[have a Oracle 10g database that is with its temporary tablespace full. Is there any way to clean this tablespace? I tried to restart the database, but i&#8217;ve no effect.Every day I increase the size of temp tablespace.Night we run some procedures and morning temp tablespace shows Full.]]></description>
				<content:encoded><![CDATA[<p>have a Oracle 10g database that is with its temporary tablespace full. Is there any way to clean this tablespace? I tried to restart the database, but i&#8217;ve no effect.Every day I increase the size of temp tablespace.Night we run some procedures and morning temp tablespace shows Full.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/10-g-temp-tablespace-always-shows-full-in-oem/feed/</wfw:commentRss>
		<slash:comments>1</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/24 queries in 0.033 seconds using memcached
Object Caching 689/750 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-19 22:08:27 -->