<?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>Malcolm&#039;s Tech Tips</title>
	<atom:link href="http://malcolmchalmers.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://malcolmchalmers.com</link>
	<description>Tips and tricks explained.</description>
	<lastBuildDate>Tue, 09 Mar 2010 11:17:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fixing slow Save As problems.</title>
		<link>http://malcolmchalmers.com/2010/03/09/fixing-slow-save-as-problems/</link>
		<comments>http://malcolmchalmers.com/2010/03/09/fixing-slow-save-as-problems/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 11:17:01 +0000</pubDate>
		<dc:creator>Malcolm Chalmers</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://malcolmchalmers.com/2010/03/09/fixing-slow-save-as-problems/</guid>
		<description><![CDATA[<p>Open RegEdit and go to :
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers</p>
<p>and rename it to something like</p>
<p>HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiersOLD</p>
]]></description>
		<wfw:commentRss>http://malcolmchalmers.com/2010/03/09/fixing-slow-save-as-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do you create Export/Import views</title>
		<link>http://malcolmchalmers.com/2010/03/04/how-do-you-create-exportimport-views/</link>
		<comments>http://malcolmchalmers.com/2010/03/04/how-do-you-create-exportimport-views/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 20:00:44 +0000</pubDate>
		<dc:creator>Malcolm Chalmers</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://malcolmchalmers.com/?p=931</guid>
		<description><![CDATA[<p>Run the &#8220;catexp.sql&#8221; as SYS. The file is located in $ORACLE_HOME/rdbms/admin.</p>

SQL&#62; @?/rdbms/admin/catexp.sql
]]></description>
		<wfw:commentRss>http://malcolmchalmers.com/2010/03/04/how-do-you-create-exportimport-views/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Renaming a SQL Server instance.</title>
		<link>http://malcolmchalmers.com/2010/02/25/renaming-a-sql-server-instance/</link>
		<comments>http://malcolmchalmers.com/2010/02/25/renaming-a-sql-server-instance/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 20:00:54 +0000</pubDate>
		<dc:creator>Malcolm Chalmers</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://malcolmchalmers.com/?p=924</guid>
		<description><![CDATA[
SQL&#62; sp_dropserver 'oldservername';
SQL&#62; sp_addserver 'newservername';

<p>don&#8217;t run in same batch.
the two statements must be executed separately.</p>
<p>via sp_addserver Transact-SQL.</p>
]]></description>
		<wfw:commentRss>http://malcolmchalmers.com/2010/02/25/renaming-a-sql-server-instance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to turn on or off colors in bash</title>
		<link>http://malcolmchalmers.com/2010/02/22/how-to-turn-on-or-off-colors-in-bash/</link>
		<comments>http://malcolmchalmers.com/2010/02/22/how-to-turn-on-or-off-colors-in-bash/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 23:32:47 +0000</pubDate>
		<dc:creator>Malcolm Chalmers</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://malcolmchalmers.com/?p=970</guid>
		<description><![CDATA[<p>Type the following command for just this listing,
$ ls --color=none
Or remove the alias with the unalias command:
$ unalias ls</p>
<p>via How to turn on or off colors in bash.</p>
]]></description>
		<wfw:commentRss>http://malcolmchalmers.com/2010/02/22/how-to-turn-on-or-off-colors-in-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving an Oracle database to a newer Oracle home</title>
		<link>http://malcolmchalmers.com/2010/02/18/moving-an-oracle-database-to-a-newer-oracle-home/</link>
		<comments>http://malcolmchalmers.com/2010/02/18/moving-an-oracle-database-to-a-newer-oracle-home/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 20:00:35 +0000</pubDate>
		<dc:creator>Malcolm Chalmers</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://malcolmchalmers.com/?p=928</guid>
		<description><![CDATA[<p></p>
<p>Moving a database to a new oracle home, owned by a different user and running a newer version.</p>
<p>NOTE : This is how is worked in my environment. It might not work the same in your environment. This is meant as a guide only.</p>
<p></p>

Stop the databse
Change the ownership of all files.
- include files in oradata, admin, [...]]]></description>
		<wfw:commentRss>http://malcolmchalmers.com/2010/02/18/moving-an-oracle-database-to-a-newer-oracle-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changeing an Oracle database character set</title>
		<link>http://malcolmchalmers.com/2010/02/12/changeing-an-oracle-database-character-set/</link>
		<comments>http://malcolmchalmers.com/2010/02/12/changeing-an-oracle-database-character-set/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 04:54:32 +0000</pubDate>
		<dc:creator>Malcolm Chalmers</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://malcolmchalmers.com/?p=969</guid>
		<description><![CDATA[
Check what character set you are using at the moment.
SQL&#62; select value from v$nls_parameters where parameter='NLS_CHARACTERSET';

Shutdown the database.
SQL&#62; shutdown immediate;

Startup in mount mode.
SQL&#62; startup mount;

Restrict the database.
SQL&#62; alter system enable restricted session;

Check the current job_queue_processes setting.
SQL&#62; show parameter job_queue_processes;

Set it to 0 for now.
SQL&#62; alter system set job_queue_processes=0;

Open the database.
SQL&#62; alter database open;

Change the character [...]]]></description>
		<wfw:commentRss>http://malcolmchalmers.com/2010/02/12/changeing-an-oracle-database-character-set/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using cpio</title>
		<link>http://malcolmchalmers.com/2010/02/09/using-cpio/</link>
		<comments>http://malcolmchalmers.com/2010/02/09/using-cpio/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 01:49:08 +0000</pubDate>
		<dc:creator>Malcolm Chalmers</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://malcolmchalmers.com/?p=968</guid>
		<description><![CDATA[<p>Some files that you get from Oracle download come in cpio format.
Here&#8217;s what to do with them.
First unzip the files:</p>

gunzip lnx_920_disk1.cpio.gz
gunzip lnx_920_disk2.cpio.gz
gunzip lnx_920_disk3.cpio.gz

<p>Next unpack the contents of the files:</p>
cpio -idmv &#60; lnx_920_disk1.cpio
cpio -idmv &#60; lnx_920_disk2.cpio
cpio -idmv &#60; lnx_920_disk3.cpio

]]></description>
		<wfw:commentRss>http://malcolmchalmers.com/2010/02/09/using-cpio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prtdiag is Not working in Solaris</title>
		<link>http://malcolmchalmers.com/2010/02/04/prtdiag-is-not-working-in-solaris/</link>
		<comments>http://malcolmchalmers.com/2010/02/04/prtdiag-is-not-working-in-solaris/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 20:00:51 +0000</pubDate>
		<dc:creator>Malcolm Chalmers</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://malcolmchalmers.com/?p=956</guid>
		<description><![CDATA[<p>Try running it as root.
If this works then check the permisions on /var/run/picld_door</p>
<p>The permisions should be set to 444
ie:</p>
ls -l /var/run/picld_door
Dr--r--r--   1 root     root           0 Aug 27 07:40 /var/run/picld_door
<p>This is the fix:</p>
shell&#62; chmod 444 /var/run/picld_door
]]></description>
		<wfw:commentRss>http://malcolmchalmers.com/2010/02/04/prtdiag-is-not-working-in-solaris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch Picture Resize</title>
		<link>http://malcolmchalmers.com/2010/01/28/batch-picture-resize/</link>
		<comments>http://malcolmchalmers.com/2010/01/28/batch-picture-resize/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 20:00:28 +0000</pubDate>
		<dc:creator>Malcolm Chalmers</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://malcolmchalmers.com/?p=959</guid>
		<description><![CDATA[<p>A good program to resize a bunch of photos all at once.</p>
<p>How you set the options is a bit odd, you rename the execuatable file, but otherwise a good program.</p>
<p>Batch Picture Resize</p>
<p>There is a &#8220;Renaming Wizard&#8221; of the site to show you how to rename the file to get different outputs.</p>
]]></description>
		<wfw:commentRss>http://malcolmchalmers.com/2010/01/28/batch-picture-resize/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recording from TV to watch later</title>
		<link>http://malcolmchalmers.com/2010/01/26/recording-from-tv-to-watch-later/</link>
		<comments>http://malcolmchalmers.com/2010/01/26/recording-from-tv-to-watch-later/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 08:17:56 +0000</pubDate>
		<dc:creator>Malcolm Chalmers</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://malcolmchalmers.com/?p=964</guid>
		<description><![CDATA[<p>Here&#8217;s a few Q&#38;As on time-shifting: recording from TV to watch later from the Australian Copyright Council. Its an interesting read, if you&#8217;re concerned about copyright law. Which we all should be.</p>
]]></description>
		<wfw:commentRss>http://malcolmchalmers.com/2010/01/26/recording-from-tv-to-watch-later/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
