SQL Server XLDB_MATH_VERSION Function
Updated 2023-10-20 16:00:56.383000
Syntax
SELECT [westclintech].[wct].[XLDB_MATH_VERSION] (
<@InfoType, nvarchar(4000),>)
Description
Use the scalar function XLDB_MATH_VERSION to display version information for the XLeratorDB/math module.
Arguments
@InfoType
is a specifier that determines the verbosity of the returned version information. @InfoType must be of a data type that is implicitly convertible to varchar.
Return Type
nvarchar(max)
Remarks
InfoType values:
{"columns":[{"field":"column 1","width":193},{"field":"column 2","width":445}],"rows":[{"column 1":"0","column 2":"Simple version information is returned in the format (x.xx.xxxx.xx) – Major version, minor version, build and revision."},{"column 1":"1,V,Verbose","column 2":"Version and Registration information is returned, including version, build, licensed user name, license key, server name, expiration date, etc."}]}
Examples
select wct.XLDB_MATH_VERSION(0);
Here is the result set.
{"columns":[{"field":"column 1"}],"rows":[{"column 1":"1.03.118.144"}]}
select wct.XLDB_MATH_VERSION(1);
Here is the result set.
{"columns":[{"field":"column 1"}],"rows":[{"column 1":"Product: XLeratorDB-math2008"},{"column 1":"Version: 1.14"},{"column 1":"Build: 0503.711"},{"column 1":"License Ver: 5"},{"column 1":"CustomerID: XLDB-math2008_Full_v01.14"},{"column 1":"OrderID: -1 / -1"},{"column 1":"Retail Edition: Standard"},{"column 1":"License Key: 111111"},{"column 1":"License Plan: Standard"},{"column 1":"Order Date: Thursday, May 6, 2021"},{"column 1":"License SQL Server Cluster Type: Non-Clustered"},{"column 1":"Current Server: DESKTOP-7217QQ3"},{"column 1":"Current Server is Clustered: NO"},{"column 1":"Expiration Date: 12/31/2021"},{"column 1":"OS: Microsoft Windows NT 6.2.9200.0; (Win32NT)"},{"column 1":"Processors: 4"},{"column 1":".NET: 4.0.30319.42000"},{"column 1":"Culture: en-US : English (United States) (1033[ovr])"},{"column 1":"Copyright: XLeratorDB (c)2008-2022 WestClinTech LLC, Irvington, NY. WestClinTech.com"},{"column 1":"Host Application: Microsoft SQL Server 2017 (RTM-GDR) (KB5014354) - 14.0.2042.3 (X64)"},{"column 1":"Apr 29 2022 21:04:31"},{"column 1":"Copyright (C) 2017 Microsoft Corporation"},{"column 1":"Enterprise Edition (64-bit) on Windows 10 Pro 10.0 <X64> (Build 19043: )"}]}