SQL Server XLDB_STATISTICS_VERSION Function
Updated 2023-06-15 22:29:30.123000
Description
Use wct.XLDB_STATISTICS_VERSION to display version information for the XLeratorDB/statistics module.
Syntax
SELECT [westclintech].[wct].[XLDB_STATISTICS_VERSION] (
<@InfoType, nvarchar(4000),>)
Arguments
@InfoType
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
Remarks
· InfoType values:
| column 1 | column 2 |
|---|---|
| 0 | Simple version information is returned in the format (x.xx.xxxx.xx) – Major version, minor version, build and revision. |
| 1,V,Verbose | Version and Registration information is returned, including version, build, licensed user name, license key, server name, expiration date, etc. |
Examples
select wct.XLDB_STATISTICS_VERSION(0)
Here is the result set.
| column 1 |
|---|
| 1.0.1227.33 |
select wct.XLDB_STATISTICS_VERSION(1)
Here is the result set.
| column 1 |
|---|
| XLeratorDB-statistics |
| CustomerID: trial_XLDB |
| License Key: 111111 |
| Expiration Date: 03/15 |
| Build: 1227.33 |
| XLeratorDB (c)2008 Wes |