Just to clarify up-front: I\'m talking about unioning geometry, not the SQL keyword UNION.
UNION
I\'m trying to move some spatial data from Postgres with Post
The way I ended up doing this is with variables:
DECLARE @Shape GEOMETRY SET @Shape = GEOMETRY::STGeomFromText('GEOMETRYCOLLECTION EMPTY', @MySrid) SELECT @Shape = @Shape.STUnion(Shape) FROM MyShapeTable
It's not as nice, but it works.