Thursday, March 31, 2011

Oracle Grant Sequence Syntax

It's dead simple: GRANT select ON schema.sequence_name to schema

Amazingly, Google's results for this are shocking at the moment, dead end unanswered or confusing results

Wednesday, March 30, 2011

MapGuide End User Survey - RFC 111 Subversion

I put forward an idea for a RFC for Mapguide, which involves deploying the MapGuide web viewer apps
(Fusion and AJAX Viewers) checked out from Subversion.

The initial proposal is MapGuide RFC 111 - Deploy Viewer Code with Subversion Attributes
with the follow up discussion over on MapGuide-Internals

There have been some questions over how the end users of MapGuide would find using this
solution. Of course it's entirely optional solution for keeping your MapGuide Server running
with the latest bug fixes / improvements for the web viewers.

So I have put together this Quick Survey to get some background on our user base.

http://zackster.polldaddy.com/s/mapguide-source-control-survey
(Poll is now closed)

Wednesday, March 09, 2011

SQL Server 2008: ARITHABORT error with Spatial data

This is a nice cryptic error:


UPDATE failed because the following SET options have incorrect settings: 'ARITHABORT'. Verify that SET options are correct for use with indexed views and/or indexes on computed columns and/or filtered indexes and/or query notifications and/or XML data type methods and/or spatial index operations. 

If you get the following error with a SQL Server 2008 database when your trying to update some spatial data, the solution is to check the compatibility level for the database, I was working on an application which has been around for a while and it was set to be compatible with Sql Server 2000, hence the error.

I was a bit stumped initially, as this was my first look into spatial data with MS SQL Server, luckily Jackie Ng sits next to me and he found the solution pretty quickly.

Overall, my initial impressions of the Spatial support in SQL Server is that it's pretty basic compared to Oracle which is a much more complete implementation, but I'm glad spatial is finally a standard feature. I am rather surprised that re-projection is not part of the standard feature set.

I really loathe Oracle for it's recalcitrant attitude to Oracle Spatial licensing, but having seen what Sql Server offers, I understand why Oracle still does what it does, as SQL Server is not nearly equivalent.

Of course, IMHO anyone starting out on a new project requiring a spatial database should use PostGIS period.