Click to Rate and Give Feedback
MSDN
MSDN Library
SQL Server
SQL Server 2008
Database Engine
Technical Reference
 STIsEmpty (geography Data Type)
Community Content
In this section
Statistics Annotations (0)
Collapse All/Expand All Collapse All
SQL Server 2008 Books Online (October 2009)
STIsEmpty (geography Data Type)

Returns 1 if a geography instance is empty. Returns 0 if a geography instance is not empty.

.STIsEmpty ( )

SQL Server return type: bit

CLR return type: SqlBoolean

The following example creates an empty geography instance and uses STIsEmpty() to verify that the instance is empty.

DECLARE @g geography;
SET @g = geography::STGeomFromText('POLYGON EMPTY', 4326);
SELECT @g.STIsEmpty();
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement | Site Feedback
Page view tracker