Skip to content

Latest commit

 

History

History
57 lines (44 loc) · 2.09 KB

File metadata and controls

57 lines (44 loc) · 2.09 KB
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
ignite-2025
f1_keywords
STIsValid (geometry Data Type)
STIsValid_TSQL
helpviewer_keywords
STIsValid (geometry Data Type)
dev_langs
TSQL
monikerRange =azuresqldb-current || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current || =fabric-sqldb

STIsValid (geometry Data Type)

[!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.

Syntax

  
.STIsValid ( )  

Return Types

[!INCLUDEssNoVersion] return type: bit

CLR return type: SqlBoolean

Remarks

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.

Examples

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();  

See Also

STGeometryType (geometry Data Type)
MakeValid (geometry Data Type)
OGC Methods on Geometry Instances