Archive for the ‘Database’ Category

SQLite 3.7.0 Released – WAL is now available

Wednesday, July 21st, 2010

The official release information can be found [SQLite Release 3.7.0 On 2010 July 22 (3.7.0)]. The summary is that this is a pretty large change compared to previous releases.

  • WAL (Write Ahead Logging) support – this means:
    • Generally faster
    • More concurrency
    • Better disk performance when processing the WAL logs.
    • Cant use network shares or different computers for writing to the same logs.
    • [Complete WAL information can be found here]
  • Query planner enhancement
  • Logical database size is now stored in the database header so that bytes can be appended to the end of the database file

Well done to the SQLite team!

Gareth

PS And for those wondering, I will restart blogging again on a more regular basis very soon, just been unburying myself!

Handy SQL Server knowledge nuggets

Sunday, January 24th, 2010

These are worth reading, kind of a read once – nothing too complicated. However they will be useful if you have the need for these

I suspect everyone who has dealt with scalar UDF functions in production environments are already VERY aware of the performance sucking capability they can have on your nice server. Here are some nice comments if you are not painfully aware:

Gareth

SQLite updated webpage… now has search! Happy New Year!

Friday, January 8th, 2010

It seems the SQLite folks have added a significant, needed and often requested, feature to the SQLite site.  No the change we are talking about has nothing to do with the SQLite engine, but yes I’m talking about the web site. In the top right side of the website there is a new shiny unobtrusive “Search SQLite Docs…” search box.

So for all us who have spent time searching, or had pages pointed out to us :-) , for options  this is an excellent new years present!

Many thanks to the SQLite guys for both their product, and their handy dandy search feature!

SQL News – and the fact we have to go to 64 bit and more $

Saturday, November 14th, 2009

Everyone should know now that there has been a massive amount of Microsoft activity. This article will cover the recent SQL activity, however the big one really is that the tipping point for 64 bit is in progress. This is a shame for me as I’m running 32bit OS, and I’m going to have to pave my machine – but that is the price developers are going to have to pay to play!

  • [What's New in SQL Server 2008 R2 Editions]
    • Biggest first – Price increase! To say I’m disappointed is an understatement in this area. Specifically for developers  already have to support 2005 & 2008. Now they have to deal with R2, and persuade their customers to move to R2 if they want certain features.
    • MDS – Master Data Services – more on this one later. Pretty cool
    • Parallel Data Warehouse release
      • The DATAllegro purchase is now seeing the light as a Microsoft product!
      • Support of very large datasets (100Tb-1Pb). This is definitely something I would like to play with, but at $57,496 per processor…
    • Standard now has backup compression – but with the price tag…
  • [SQL Server 2008 R2 November CTP – What’s New In Reporting Services?]
    • Report Builder 3.0 is available! Woohoo!
    • Enhanced sharepoint integration
    • Aggregates of aggregates
    • New Data Visualization Report Items
  • [Using Filtered Statistics with Partitioned Tables]
    • Learn to appreciate filtered statistics!
  • [MDS (Master Data Services) is x64 Only]
    • I totally get this, but this is the tipping point for me to repave my machines :-(
    • With this requiring x64 and many new products requiring Windows 2008, Windows 7 or Vista it seems now is the time to move up.
  • [MSSQL End of service dates for Service packs]
    • Support for SQL Server 2005 Service Pack 2 (SP2)  will end on January 12, 2010
    • Support for SQL Server 2008 RTM will end on April 13, 2010

More to come!

Gareth