| title | STIsValid (geometry Data Type) | ||
|---|---|---|---|
| description | STIsValid (geometry Data Type) | ||
| author | MladjoA | ||
| ms.author | mlandzic | ||
| ms.date | 08/03/2017 | ||
| ms.service | sql | ||
| ms.subservice | t-sql | ||
| ms.topic | reference | ||
| ms.custom |
|
||
| f1_keywords |
|
||
| helpviewer_keywords |
|
||
| dev_langs |
|
||
| monikerRange | =azuresqldb-current || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current || =fabric-sqldb |
[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance FabricSQLDB]
Returns true if a geometry instance is well-formed, based on its Open Geospatial Consortium (OGC) type. Returns false if a geometry instance is not well-formed.
.STIsValid ( )
[!INCLUDEssNoVersion] return type: bit
CLR return type: SqlBoolean
The OGC type of a geometry instance can be determined by invoking STGeometryType().
[!INCLUDEssNoVersion] produces only valid geometry instances, but allows for the storage and retrieval of invalid instances. A valid instance representing the same point set of any invalid instance can be retrieved using the MakeValid() method.
The following example creates a geometry instance and uses STIsValid() to test if the instance is valid.
DECLARE @g geometry;
SET @g = geometry::STGeomFromText('LINESTRING(0 0, 2 2, 1 0)', 0);
SELECT @g.STIsValid(); STGeometryType (geometry Data Type)
MakeValid (geometry Data Type)
OGC Methods on Geometry Instances