<?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>GeoNotes &#187; Database</title>
	<atom:link href="http://northredoubt.com/n/category/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://northredoubt.com/n</link>
	<description></description>
	<lastBuildDate>Sat, 04 Sep 2010 03:07:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Exporting and Importing in Oracle: A Quick Start</title>
		<link>http://northredoubt.com/n/2008/09/05/exporting-and-importing-in-oracle-a-quick-start/</link>
		<comments>http://northredoubt.com/n/2008/09/05/exporting-and-importing-in-oracle-a-quick-start/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 19:35:00 +0000</pubDate>
		<dc:creator>John Zastrow</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://northredoubt.com/n/?p=58</guid>
		<description><![CDATA[I do this about twice per year and every time I have to look back at my notes to remember how. Maybe you are in the same boat. So, to save us both some trouble I&#8217;m going to blog my notes on the subject here. exp schemaname/password@instance FILE=d:\mydump.dmp [follow instructions] Give the file a name&#8230;]]></description>
		<wfw:commentRss>http://northredoubt.com/n/2008/09/05/exporting-and-importing-in-oracle-a-quick-start/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Optimize all tables in a database, Part 2</title>
		<link>http://northredoubt.com/n/2008/07/05/optimize-all-tables-in-a-database-part-2/</link>
		<comments>http://northredoubt.com/n/2008/07/05/optimize-all-tables-in-a-database-part-2/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 01:47:17 +0000</pubDate>
		<dc:creator>John Zastrow</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://northredoubt.com/n/2008/07/05/optimize-all-tables-in-a-database-part-2/</guid>
		<description><![CDATA[Ok, not being satisfied with my first exploration of a global &#8220;do something&#8221; mysql script I asked the community for help. The result is posted below, and here are the links that got me here. http://www.linuxquestions.org/questions/showthread.php?p=2668261#post2668261 http://www.linuxforums.org/forum/linux-programming-scripting/85836-loop-within-loop-mysql-ops.html#post445403 Here is the final example script that optimizes (or replace optimize with your favorite command like backup, alter&#8230;]]></description>
		<wfw:commentRss>http://northredoubt.com/n/2008/07/05/optimize-all-tables-in-a-database-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reformatting a text field in Microsoft Access to be a true date</title>
		<link>http://northredoubt.com/n/2008/07/05/reformatting-a-text-field-in-microsoft-access-to-be-a-true-date/</link>
		<comments>http://northredoubt.com/n/2008/07/05/reformatting-a-text-field-in-microsoft-access-to-be-a-true-date/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 01:24:22 +0000</pubDate>
		<dc:creator>John Zastrow</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://northredoubt.com/n/2008/07/05/reformatting-a-text-field-in-microsoft-access-to-be-a-true-date/</guid>
		<description><![CDATA[I had a text field (DATEOLD) with values like 20030526, that were dates in YYYYMMDD. I needed these values to exist in a true datetime field in Microsoft Access. So I created a new field called NEWDATE of the date/time type. Then I ran the query below to convert the numbers. UPDATE Itec_data1 SET [NEWDATE]&#8230;]]></description>
		<wfw:commentRss>http://northredoubt.com/n/2008/07/05/reformatting-a-text-field-in-microsoft-access-to-be-a-true-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selecting Date from a Mysql field in specific format</title>
		<link>http://northredoubt.com/n/2008/07/05/selecting-date-from-a-mysql-field-in-specific-format/</link>
		<comments>http://northredoubt.com/n/2008/07/05/selecting-date-from-a-mysql-field-in-specific-format/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 01:19:40 +0000</pubDate>
		<dc:creator>John Zastrow</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://northredoubt.com/n/2008/07/05/selecting-date-from-a-mysql-field-in-specific-format/</guid>
		<description><![CDATA[I had a membership table with users and the datetime at which they joined the site. I needed to get a count of members joining per month, so I did this: SELECT DATE_FORMAT( regdate, '%b %Y' ) AS MONTH , count( uid ) AS Users FROM gl_users GROUP BY MONTH LIMIT 0 , 30 Which&#8230;]]></description>
		<wfw:commentRss>http://northredoubt.com/n/2008/07/05/selecting-date-from-a-mysql-field-in-specific-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to append tables in Mysql</title>
		<link>http://northredoubt.com/n/2008/07/05/how-to-append-tables-in-mysql/</link>
		<comments>http://northredoubt.com/n/2008/07/05/how-to-append-tables-in-mysql/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 23:58:01 +0000</pubDate>
		<dc:creator>John Zastrow</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://northredoubt.com/n/2008/07/05/how-to-append-tables-in-mysql/</guid>
		<description><![CDATA[For those of you that have puzzled over how to append tables in Mysql like an Access &#8216;Append&#8217; query, start here: insert into table1 select * from table2;&#60;br /&#62; Where table1 and table2 are identical. This might fail if you use an auto-incrementing counter on both.]]></description>
		<wfw:commentRss>http://northredoubt.com/n/2008/07/05/how-to-append-tables-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL: My Oracle quick reference</title>
		<link>http://northredoubt.com/n/2008/07/05/sql-my-oracle-quick-reference-2/</link>
		<comments>http://northredoubt.com/n/2008/07/05/sql-my-oracle-quick-reference-2/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 23:52:56 +0000</pubDate>
		<dc:creator>John Zastrow</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://northredoubt.com/n/2008/07/05/sql-my-oracle-quick-reference-2/</guid>
		<description><![CDATA[SET PAGESIZE 400 SET LINESIZE 120 SPOOL C:\TEMP\FILENAME.TXT SPOOL OFF ED SAVE -&#62; ALT-F4 / SELECT * FROM TAB SELECT MAX(LENGTH FIELDNAME) FROM TABLE COLUMN FIELDNAME FORMAT A25 (FOR TEXT)]]></description>
		<wfw:commentRss>http://northredoubt.com/n/2008/07/05/sql-my-oracle-quick-reference-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
