<?xml version="1.0" encoding="utf-8"?>
	<rss version="2.0">
		<channel>
			<title>Green Building Forum - SQL</title>
			<lastBuildDate>Sun, 19 Apr 2026 05:03:34 +0100</lastBuildDate>
			<link>https://www.greenbuildingforum.co.uk/newforum/</link>
			<description></description>
			<generator>Lussumo Vanilla 1.0.3</generator>
			<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196919#Comment_196919</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196919#Comment_196919</guid>
		<pubDate>Tue, 25 Feb 2014 14:05:10 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[I have access to the Met Office weather database.  This sounds impressive but is really just a bunch of text files.  Large text files mind, and this is the problem.  Once I have merged each years files (The DOS Copy command is just brilliant, had forgotten about it) I end up with a file that can be approaching 10 GB.  This is too large for Access or Excel to handle.<br />I was wondering if one of the flavours of SQL could handle it.  And if it can how easy is it to use.<br />All I really need to do is some conditional searching on location and time and maybe a bit of stats work on them, though Excel does this nicely (and charting).<br />Anyone an expert on SQL?]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196922#Comment_196922</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196922#Comment_196922</guid>
		<pubDate>Tue, 25 Feb 2014 14:14:18 +0000</pubDate>
		<author>jamesingram</author>
		<description>
			<![CDATA[<blockquote ><cite >Posted By: SteamyTea</cite>I have access to the Met Office weather database.  </blockquote> Excellent , so tell me, is it ok to strip some chimney flashing this afternoon or will it rain later ? thames valley area. <br /><img src="/newforum/extensions/Vanillacons/smilies/standard/bigsmile.gif" alt=":bigsmile:" title=":bigsmile:" />]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196924#Comment_196924</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196924#Comment_196924</guid>
		<pubDate>Tue, 25 Feb 2014 14:22:15 +0000</pubDate>
		<author>Paul in Montreal</author>
		<description>
			<![CDATA[&lt;blockquote&gt;&lt;cite&gt;Posted By: SteamyTea&lt;/cite&gt;Anyone an expert on SQL?&lt;/blockquote&gt;<br /><br />If you're on a 64-bit platform you're good up to between 2 and 4TB for the database size. <br /><br />You'll have to design a table structure for the data, but it should be fairly straightforward.  <br /><br /><a href="http://dev.mysql.com/doc/refman/5.6/en/table-size-limit.html" target="_self" rel="nofollow">http://dev.mysql.com/doc/refman/5.6/en/table-size-limit.html</a><br /><br /><a href="http://www.phpmyadmin.net/home_page/index.php" target="_self" rel="nofollow">http://www.phpmyadmin.net/home_page/index.php</a> is useful to admin a database and run queries.<br /><br />Paul in Montreal.]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196928#Comment_196928</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196928#Comment_196928</guid>
		<pubDate>Tue, 25 Feb 2014 14:45:45 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[On 32 bit on the old Desktop.<br /><br />Any particular flavour I should download, was going to go for MySQL.<br />I can install Linux if that would be easier.]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196935#Comment_196935</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196935#Comment_196935</guid>
		<pubDate>Tue, 25 Feb 2014 15:20:00 +0000</pubDate>
		<author>Paul in Montreal</author>
		<description>
			<![CDATA[I'd say go for MySQL - you might want to go the linux route with LAMP (Linux, Apache, MySQL, PHP) - as this is a very common combination for web-based work, though you probably don't need Apache if you're not hosting a website. <br /><br />See <a href="http://www.mysqlperformanceblog.com/2011/12/08/which-linux-distribution-for-mysql-server/" target="_self" rel="nofollow">http://www.mysqlperformanceblog.com/2011/12/08/which-linux-distribution-for-mysql-server/</a><br /><br />Paul in Montreal]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196936#Comment_196936</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196936#Comment_196936</guid>
		<pubDate>Tue, 25 Feb 2014 15:24:04 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[Thanks Paul, shall take a look.<br />As I use NTFS, I should be OK to handle the big files.<br />Do you know of a good tutorial as I can't find one, the 3 sites I looked at jump straight into the commands.  I need to know how to set it up from scratch.]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196939#Comment_196939</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196939#Comment_196939</guid>
		<pubDate>Tue, 25 Feb 2014 15:29:09 +0000</pubDate>
		<author>Paul in Montreal</author>
		<description>
			<![CDATA[I haven't had to do it myself - all the MySQL databases I use are on hosted webservers so there was nothing much to do.<br /><br />However, take a look at these:<br /><br /><a href="http://www.elated.com/articles/mysql-for-absolute-beginners/" target="_self" rel="nofollow">http://www.elated.com/articles/mysql-for-absolute-beginners/</a><br /><br /><a href="http://www.dreamincode.net/forums/topic/42301-beginners-guide-to-creating-simple-mysql-tables/" target="_self" rel="nofollow">http://www.dreamincode.net/forums/topic/42301-beginners-guide-to-creating-simple-mysql-tables/</a><br /><br />Paul in Montreal.]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196943#Comment_196943</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196943#Comment_196943</guid>
		<pubDate>Tue, 25 Feb 2014 15:40:25 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[That first one seems to make sense already.<br /><br />I am sure that importing data is not that hard, already done it in Access.  Actually linked to the *.csv files.]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196949#Comment_196949</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196949#Comment_196949</guid>
		<pubDate>Tue, 25 Feb 2014 15:52:22 +0000</pubDate>
		<author>ted</author>
		<description>
			<![CDATA[Most of the MySQL admin tools are able to import directly from csv files.<br /><br />You will probably want to play around with small files first rather than 10GB in one go.]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196951#Comment_196951</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196951#Comment_196951</guid>
		<pubDate>Tue, 25 Feb 2014 15:55:18 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[Yes, I have learn to test on a few lines of data, then a few hundred.  Spent way to many mornings crying into my tea after another wasted night of processing.  I usually forget what do to in case of an error <img src="/newforum/extensions/Vanillacons/smilies/standard/devil.gif" alt=":devil:" title=":devil:" />]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196967#Comment_196967</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196967#Comment_196967</guid>
		<pubDate>Tue, 25 Feb 2014 16:43:56 +0000</pubDate>
		<author>Ed Davies</author>
		<description>
			<![CDATA[I know next to nothing about relational databases (probably biggest single gap in my computing knowledge) but, yep, from what I understand MySQL is the obvious choice. The only plausible case for something else I can think of is that PostgreSQL has plug-ins which deal with geographical positions - e.g., find all records with lat/longs within 50 km of this point. If that's relevant it might be worth a look.]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196970#Comment_196970</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196970#Comment_196970</guid>
		<pubDate>Tue, 25 Feb 2014 17:20:21 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[Shall have to check that out as it is a useful feature as the not every station has full records from 1850.  Thanks]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196974#Comment_196974</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196974#Comment_196974</guid>
		<pubDate>Tue, 25 Feb 2014 17:52:19 +0000</pubDate>
		<author>bot de paille</author>
		<description>
			<![CDATA[A while ago I downloaded the full precipitation record for the UK going back to 1850, in txt file. I couldn't figure out how to get all the data into usable database.<br /><br /> Maybe you could try ST, would be interesting to see what it shows.]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196975#Comment_196975</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=196975#Comment_196975</guid>
		<pubDate>Tue, 25 Feb 2014 18:14:52 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[The Rainfall one is pretty 'busy', most of the data is the QA side and once filtered can be ignored.  Do you know if it was rain gauge of river gauge data?]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=197013#Comment_197013</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=197013#Comment_197013</guid>
		<pubDate>Tue, 25 Feb 2014 22:50:29 +0000</pubDate>
		<author>Andrew_Doran</author>
		<description>
			<![CDATA[Depending on the data formats and such in the file, you may have to tell the database how to interpret/convert a few fields when you import the file, such as dates for example.  If fields are not important, best to skip them as it will help keep the table size and your query times down.<br /><br />To enable queries to run in a reasonable time frame you may need to create some indexes, which act like an index in the back of a book does for a human.  For example, an index on the &quot;date&quot; field sounds like it would be a good candidate given that you mention doing queries by date.  I'd try a few queries once up and running and see.<br /><br />More techy alternatives to MySQL would be PostgreSQL as mentioned (lightweight, more featureful), or IBM DB2 Express-C (not &quot;Express&quot;, lots of documentation, tools) which is available free for personal use.  SQL query syntax is very similar between all of the products until you start getting into esoteric stuff.]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=197014#Comment_197014</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=197014#Comment_197014</guid>
		<pubDate>Tue, 25 Feb 2014 23:13:56 +0000</pubDate>
		<author>bot de paille</author>
		<description>
			<![CDATA[<blockquote ><cite >Posted By: SteamyTea</cite>The Rainfall one is pretty 'busy', most of the data is the QA side and once filtered can be ignored.  Do you know if it was rain gauge of river gauge data?</blockquote><br /><br /><br />No idea, though I had the impression the data was rainfall.<br /><br />There was a lot of data in the file, every single day for every single month going back to 1850.<br /><br />I think now they have changed the Met office website so that you need to register to get the data.]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=197017#Comment_197017</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=197017#Comment_197017</guid>
		<pubDate>Wed, 26 Feb 2014 06:56:25 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[<blockquote ><cite >Posted By: Andrew_Doran</cite>such as dates for example</blockquote>Yes, I found this out, the date comes as YYYY-MM-DD hh:mm but Excel prefers (and I) DD/MM/YYYY hh:mm.  Though I am not sure how to get around dates before 1900 when using Excel.<br />I don't mind using Access, just the file size is the problem.<br />Good tip about skipping data, had not thought of that one.]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=197030#Comment_197030</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=197030#Comment_197030</guid>
		<pubDate>Wed, 26 Feb 2014 11:51:06 +0000</pubDate>
		<author>bot de paille</author>
		<description>
			<![CDATA[Have you read this ST, met office data into excel<br /><br />http://www.metoffice.gov.uk/climate/uk/stationdata/help_import.html]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=197032#Comment_197032</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=197032#Comment_197032</guid>
		<pubDate>Wed, 26 Feb 2014 12:54:23 +0000</pubDate>
		<author>nigelm</author>
		<description>
			<![CDATA[SQL express is worth a look, free with a 10GB data limit]]>
		</description>
	</item>
	<item>
		<title>SQL</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=197039#Comment_197039</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=11803&amp;Focus=197039#Comment_197039</guid>
		<pubDate>Wed, 26 Feb 2014 13:39:41 +0000</pubDate>
		<author>djh</author>
		<description>
			<![CDATA[Since MySQL was bought by the evil Oracle empire, it is slowly being replaced by MariaDB, which is a work-alike by the original developer. But either work OK. A quick look shows I have one 20 GB instance lying about. There's also sqlite if you're just messing around.<br /><br />Oh and you ought to stick with the ISO date format; it will make your life easier. Translate it to an old-school format when printing or whatever if you insist.]]>
		</description>
	</item>
	
		</channel>
	</rss>