<?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>Square DBA - Oracle DBA Talk</title>
	<atom:link href="http://www.squaredba.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.squaredba.com</link>
	<description>Oracle DBA Forum, Articles, FAQs, Scripts, OCP Test Papers, Free Blog, DBA Training</description>
	<lastBuildDate>Mon, 18 Jul 2011 17:24:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Move and partitioned index to a new tablespace</title>
		<link>http://www.squaredba.com/move-and-partitioned-index-to-a-new-tablespace-262.html</link>
		<comments>http://www.squaredba.com/move-and-partitioned-index-to-a-new-tablespace-262.html#comments</comments>
		<pubDate>Mon, 18 Jul 2011 17:24:02 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Oracle How-To]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[Partitioned Tables]]></category>
		<category><![CDATA[tablespace]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=262</guid>
		<description><![CDATA[To dynamically move a partitioned index to a new tablespace run the following SQL select &#8216;Alter index &#8216;&#124;&#124;INDEX_OWNER&#124;&#124;&#8217;.'&#124;&#124;INDEX_NAME&#124;&#124;&#8217; rebuild partition &#8216;&#124;&#124;PARTITION_NAME&#124;&#124;&#8217; tablespace CDR_DETAIL_INDEX1;&#8217; from dba_ind_partitions where TABLESPACE_NAME = &#8216;DW_CDR_DETAIL&#8217;;]]></description>
		<wfw:commentRss>http://www.squaredba.com/move-and-partitioned-index-to-a-new-tablespace-262.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change a table&#8217;s default tablespace</title>
		<link>http://www.squaredba.com/change-a-tables-default-tablespace-257.html</link>
		<comments>http://www.squaredba.com/change-a-tables-default-tablespace-257.html#comments</comments>
		<pubDate>Mon, 18 Jul 2011 17:03:51 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Oracle How-To]]></category>
		<category><![CDATA[Partitioned Tables]]></category>
		<category><![CDATA[tablespace]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=257</guid>
		<description><![CDATA[Do you need to change a table&#8217;s default tablespace? It&#8217;s pretty simple: ALTER TABLE {OWNER}.{TABLE NAME} MODIFY DEFAULT ATTRIBUTES TABLESPACE {NEW TABLESPACE NAME}; This does not move the table it only changes the attribute for the default tablespace. This is helpful if you are adding partitions, but not specifying the tablespace.]]></description>
		<wfw:commentRss>http://www.squaredba.com/change-a-tables-default-tablespace-257.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Purge The DBA Recycle Bin</title>
		<link>http://www.squaredba.com/purge-the-dba-recycle-bin-252.html</link>
		<comments>http://www.squaredba.com/purge-the-dba-recycle-bin-252.html#comments</comments>
		<pubDate>Mon, 20 Jun 2011 09:15:52 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Oracle How-To]]></category>
		<category><![CDATA[RECYCLEBIN]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=252</guid>
		<description><![CDATA[Need to dump the DBA recycle bin? It&#8217;s pretty easy. As a DBA user run: purge dba_recyclebin;]]></description>
		<wfw:commentRss>http://www.squaredba.com/purge-the-dba-recycle-bin-252.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove non-ASCII characters from a column</title>
		<link>http://www.squaredba.com/remove-non-ascii-characters-from-a-column-255.html</link>
		<comments>http://www.squaredba.com/remove-non-ascii-characters-from-a-column-255.html#comments</comments>
		<pubDate>Tue, 14 Jun 2011 18:53:04 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Oracle How-To]]></category>
		<category><![CDATA[Oracle Tip]]></category>
		<category><![CDATA[ASCII]]></category>
		<category><![CDATA[non-ASCII]]></category>
		<category><![CDATA[special]]></category>
		<category><![CDATA[VarChar2]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=255</guid>
		<description><![CDATA[Do you need to remove special (non-ASCII) characters from a VarChar2 column in Oracle? Create this function: CREATE OR REPLACE FUNCTION O1DW.RECTIFY_NON_ASCII(INPUT_STR IN VARCHAR2) RETURN VARCHAR2 IS str VARCHAR2(2000); act number :=0; cnt number :=0; askey number :=0; OUTPUT_STR VARCHAR2(2000); begin str:=&#8217;^'&#124;&#124;TO_CHAR(INPUT_STR)&#124;&#124;&#8217;^'; cnt:=length(str); for i in 1 .. cnt loop askey :=0; select ascii(substr(str,i,1)) into [...]]]></description>
		<wfw:commentRss>http://www.squaredba.com/remove-non-ascii-characters-from-a-column-255.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamically Move Partitions To A New Tablespace</title>
		<link>http://www.squaredba.com/dynamically-move-partitions-to-a-new-tablespace-250.html</link>
		<comments>http://www.squaredba.com/dynamically-move-partitions-to-a-new-tablespace-250.html#comments</comments>
		<pubDate>Wed, 08 Jun 2011 18:45:08 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Oracle How-To]]></category>
		<category><![CDATA[compress]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[partition]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=250</guid>
		<description><![CDATA[Do you want to move partitions to a new tablespace in Oracle? Here is some helpful SQL: Find a partitioned table&#8217;s default table space: SELECT def_tablespace_name FROM dba_part_tables where owner = &#8216;O1DW&#8217; and table_name = &#8216;ACME_FAILED_DETAIL&#8217;; Change a partitioned table&#8217;s tablespace: ALTER TABLE O1DW.ACME_FAILED_DETAIL MODIFY DEFAULT ATTRIBUTES TABLESPACE ACME_FAILED_BIG1; Move existing partitions to a new [...]]]></description>
		<wfw:commentRss>http://www.squaredba.com/dynamically-move-partitions-to-a-new-tablespace-250.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamically Delete Old Partitions</title>
		<link>http://www.squaredba.com/dynamically-delete-old-partitions-246.html</link>
		<comments>http://www.squaredba.com/dynamically-delete-old-partitions-246.html#comments</comments>
		<pubDate>Wed, 08 Jun 2011 17:19:34 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Oracle How-To]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[partitions]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=246</guid>
		<description><![CDATA[Are you looking to delete older partitions in an Oracle database? Here is a basic SQL query that will give you what you need. select &#8216;ALTER TABLE &#8216;&#124;&#124;table_owner&#124;&#124;&#8217;.'&#124;&#124;table_name &#124;&#124;&#8217; DROP PARTITION &#8216; &#124;&#124;partition_name&#124;&#124;&#8217; UPDATE INDEXES;&#8217; from dba_tab_partitions where table_owner = &#8216;O1DW&#8217; and table_name = &#8216;ACME_FAILED_DETAIL&#8217; order by PARTITION_POSITION; Modify to your specific needs.]]></description>
		<wfw:commentRss>http://www.squaredba.com/dynamically-delete-old-partitions-246.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Large Directories</title>
		<link>http://www.squaredba.com/finding-large-directories-244.html</link>
		<comments>http://www.squaredba.com/finding-large-directories-244.html#comments</comments>
		<pubDate>Mon, 30 May 2011 08:01:45 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[DBA Thoughts]]></category>
		<category><![CDATA[Oracle How-To]]></category>
		<category><![CDATA[Oracle Tip]]></category>
		<category><![CDATA[large directories]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=244</guid>
		<description><![CDATA[Recently I was looking to clear some space on one of my Oracle servers. I looked for large files with this command: find . -type f -size +100000k -exec ls -lh {} \; &#124; awk &#8216;{ print $9 &#8220;: &#8221; $5 }&#8217; This looks for files over 100MB, but other than datafiles there were very [...]]]></description>
		<wfw:commentRss>http://www.squaredba.com/finding-large-directories-244.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What are cvutrace.log.* files</title>
		<link>http://www.squaredba.com/what-are-cvutrace-log-files-242.html</link>
		<comments>http://www.squaredba.com/what-are-cvutrace-log-files-242.html#comments</comments>
		<pubDate>Mon, 23 May 2011 07:54:31 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Oracle How-To]]></category>
		<category><![CDATA[Oracle Tip]]></category>
		<category><![CDATA[cvutrace.log]]></category>
		<category><![CDATA[SRVM_TRACE]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=242</guid>
		<description><![CDATA[I was looking to clear some space recently and ran across a 14G directory (/u01/app/grid/product/11.2.0/grid/cv/log). Inside there were a lot of files like &#8220;cvutrace.log.0_20100720015347&#8243;. These files are log files related to a RAC installaation. They can safely be deleted. To stop the files from being generated is add the following at the top of the [...]]]></description>
		<wfw:commentRss>http://www.squaredba.com/what-are-cvutrace-log-files-242.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Oracle GoldenGate version 11.1.1.1 released</title>
		<link>http://www.squaredba.com/oracle-goldengate-version-11-1-1-1-released-239.html</link>
		<comments>http://www.squaredba.com/oracle-goldengate-version-11-1-1-1-released-239.html#comments</comments>
		<pubDate>Thu, 12 May 2011 17:39:34 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Oracle News]]></category>
		<category><![CDATA[GoldenGate]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=239</guid>
		<description><![CDATA[After long wait Oracle finaly relesed new Oracle GoldenGate version 11.1.1.1 which supports encrypted tablespaces. About Replicating TDE-encrypted data Oracle GoldenGate supports the Transparent Data Encryption (TDE) at the column and tablespace level. ● Column-level encryption is supported for all versions of 10.2.0.5, 11.1, and 11.2. ● Tablespace-level encryption is supported for all versions of [...]]]></description>
		<wfw:commentRss>http://www.squaredba.com/oracle-goldengate-version-11-1-1-1-released-239.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Upgrade and Personal Blog</title>
		<link>http://www.squaredba.com/site-upgrade-and-personal-blog-235.html</link>
		<comments>http://www.squaredba.com/site-upgrade-and-personal-blog-235.html#comments</comments>
		<pubDate>Wed, 04 May 2011 19:12:35 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=235</guid>
		<description><![CDATA[I upgraded wordpress to 3.1.2. Let me know if you see any issues. Also I run this blog to document some of my Oracle experiences. It do not update it all that often, but I try to get a couple updates posted per month. I also have several other sites. One for where I live, [...]]]></description>
		<wfw:commentRss>http://www.squaredba.com/site-upgrade-and-personal-blog-235.html/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 disk: enhanced
Object Caching 490/628 objects using disk: basic

Served from: www.squaredba.com @ 2012-02-05 00:55:54 -->
