<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:osnews="http://www.osnews.com/rss2#">
	<channel>
		<title>OSNews: </title>
		<link>http://www.osnews.com/story/14753/Oracle_and_Open_Source</link>
		<description>Exploring the Future of Computing</description>
		<language>en-us</language>
		<copyright>Copyright 2001-2013, David Adams</copyright>
		<webMaster>adam+nospam@osnews.com</webMaster>
		<lastBuildDate>Thu, 23 May 2013 22:03:15 GMT</lastBuildDate>
		<image>
			<url>http://www.osnews.com/images/osnews.gif</url>
			<title>OSNews.com</title>
			<link>http://www.osnews.com</link>
		</image>
		<item>
			<title>Oracle is a resource PIG and Oracle knows it.</title>
			<link>http://www.osnews.com/thread?129092</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?129092</guid>
			<description>I'd say PostGreSQL and MySQL are evolving nicely, couple them with PERL and JBOSS and you have a decent platform to deploy your ERP solution!</description>
			<pubDate>Tue, 30 May 2006 17:00:00 GMT</pubDate>
			<author>donotreply@osnews.com (jerryn)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>The question is really...</title>
			<link>http://www.osnews.com/thread?129104</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?129104</guid>
			<description>a matter of scale. Any dbms seems pretty ok until you start really shoveling the coal to it.</description>
			<pubDate>Tue, 30 May 2006 17:48:00 GMT</pubDate>
			<author>donotreply@osnews.com (Sphinx)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Oracle is a resource PIG and Oracle knows it.</title>
			<link>http://www.osnews.com/thread?129107</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?129107</guid>
			<description>I'd say PostgreSQL and MySQL barely belong in the same sentence together. MySQL has never been a realistic competitor to Oracle, except in the limited case of simple, read-mainly databases. <br />
<br />
It's not just about performance, and it never has been. It is about serious manageability of your data. It is about knowing for sure that the database does what you say--and that what you say is what you mean--with your data. MySQL has a terrible track record in that area (they are addressing it somewhat in versions 5+ with ANSI-standard switches, so we'll see where things go)<br />
<br />
On the other hand, when it comes to logical data manageability, PostgreSQL correlates quite nicely to Oracle. The only areas where PostgreSQL might really be considered behind Oracle are in the &quot;extended&quot; implementation areas, such as stored procedures, clustering and sophistication of server management (on-disk layout, table partitioning, tablespaces, etc...). And really, PostgreSQL is making strides in each of these areas.</description>
			<pubDate>Tue, 30 May 2006 17:53:00 GMT</pubDate>
			<author>donotreply@osnews.com (rycamor)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Oracle is a resource PIG and Oracle knows it.</title>
			<link>http://www.osnews.com/thread?129210</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?129210</guid>
			<description>Hmm...might be off topic but I have never really worked a lot with PostgreSQL but mainly because for quick stuff MySQL is just unbeatable with its graphical tools and so on for quick creation of tables and so on. I wonder if PostgreSQL has that. Also does anyone know of any tools that will migrate my sample tables over to PostgreSQL with minimal hassle?</description>
			<pubDate>Tue, 30 May 2006 22:48:00 GMT</pubDate>
			<author>donotreply@osnews.com (suryad)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Oracle is a resource PIG and Oracle knows it.</title>
			<link>http://www.osnews.com/thread?129243</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?129243</guid>
			<description>I wonder if PostgreSQL has that. Also does anyone know of any tools that will migrate my sample tables over to PostgreSQL with minimal hassle?<br />
<br />
There are free GUI admin/development tools  for postgresql e.g. pgAdminIII, there are also many commersial closed source tools for postgresql development. Personally I like the web based phpPgAdmin tool best. It is far more advanced than the similarly named phpMyAdmin tool for MySQL.<br />
<br />
For porting MySQL stuff to postgres there is compatibility library available that could be helpful when porting MySQL applications to Postgresql you find it at: <a href="http://pgfoundry.org/projects/mysqlcompat/" rel="nofollow">http://pgfoundry.org/projects/mysqlcompat/</a><br />
<br />
There are also plenty commersial tools that might help you migrate MySQL to Postgresql. Even though you should be able to migrate quite easily with the compatibility lib mentioned above as both MySQL and Postgresql can dump their contents into sql form. <br />
<br />
Unfortunately MySQL dumps in a nonstandard insert statement format with multiple value fields for each insert line, but with a little tweaking with standard unix text editing tools that is quite easily fixed.</description>
			<pubDate>Wed, 31 May 2006 01:01:00 GMT</pubDate>
			<author>donotreply@osnews.com (unoengborg)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Oracle is a resource PIG and Oracle knows it.</title>
			<link>http://www.osnews.com/thread?129270</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?129270</guid>
			<description>From my point of view, a flow-on (and very real) benefit of PostgreSQL and MySQL is that they're not being pushed by a company which wants to take over your complete computer (10g RAC) and storage (10g ASM).<br />
<br />
On the other hand, if I was running a large corp (&gt; 10000 employees) I'd want something that can scale and be highly available, possibly even parallel. For my money, that's where Oracle sits. Any requirement less than that and I'm gonna stick with PostgreSQL.</description>
			<pubDate>Wed, 31 May 2006 04:17:00 GMT</pubDate>
			<author>donotreply@osnews.com (McBofh)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>porting etc.</title>
			<link>http://www.osnews.com/thread?129301</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?129301</guid>
			<description>i just recently ported a php webapp from mysql to postgresql, it was no problem at all, mostly renaming mysql_* commands to pg_* barely any syntax changes.<br />
<br />
on the schema side it was changing auto_increments to serials.<br />
<br />
in the sql it was mainly changing nulls to defaults.<br />
<br />
i used some regex replaces in kate to convert a mysqldump to a set of standard insert statements for sourcing into psql (just the data, i recreated the tables using pgadmin3).<br />
<br />
python support is good too - there's at least 4 postgresql modules, three of which are dbi2-compliant.<br />
<br />
with databases there always seems to be specific sectors that use them:<br />
<br />
  big companies use oracle/db2;<br />
<br />
  mcse/phb -types use sql server;<br />
<br />
  banks use sybase;<br />
<br />
  foss projects/hacky webdevs use mysql.<br />
<br />
postgresql never seems to be on the map, bit like firebird i guess.</description>
			<pubDate>Wed, 31 May 2006 10:13:00 GMT</pubDate>
			<author>donotreply@osnews.com (simo)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Postgresql Client Admin Tools</title>
			<link>http://www.osnews.com/thread?129335</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?129335</guid>
			<description>As far as Postgresql admin clients go, you get what you pay for.  The best I have used is PG Lightning Admin at <a href="http://www.amsoftwaredesign.com" rel="nofollow">http://www.amsoftwaredesign.com</a></description>
			<pubDate>Wed, 31 May 2006 14:32:00 GMT</pubDate>
			<author>donotreply@osnews.com (snorkel)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Oracle is a resource PIG and Oracle knows it.</title>
			<link>http://www.osnews.com/thread?129346</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?129346</guid>
			<description>You're right about high-end enterprise wanting high-availability and concurrent access.  However, this is less a feature of the database and more a feature of the operating system stack and application design.  As far as I know, all high-availabitity clustering solutions are capable of running a wide variety of service payloads, including various database implementations.  Concurrent access is more a function of how the application is programmed than which database is running.<br />
<br />
In short, a highly-available clustering platform running Oracle is would be no more available than the same platform running a less expensive database.  I guess the Oracle system might failover to peer nodes less frequently, at best.</description>
			<pubDate>Wed, 31 May 2006 17:21:00 GMT</pubDate>
			<author>donotreply@osnews.com (butters)</author>
			<category>Comments</category>
		</item>
	</channel>
</rss>
