What is the purpose of system table master..spt_values and what are the meanings of its values?
Asked Answered
L

3

83

What is the purpose of system table master..spt_values?
Why was it provided and how one should use it?

What are the meanings of its type, low, high values?

Update:
Google search gives thousands of " its uses", for example:

Some posts warn against its use since it can be removed in future versions of SQL Server but there are already code scripts using it to illustrate new features of new SQL Server 11 (Denali):

Ladle answered 25/11, 2010 at 4:29 Comment(0)
G
73

The spt_values table is not mentioned in the the SQL Server documentation but it goes back to the Sybase days and there is some extremely minimal documentation in the Sybase online docs that can be summed up in this comment:

To see how it is used, execute sp_helptext and look at the text for one of the system procedures that references it.

In other words, read the code and work it out for yourself.

If you poke around the system stored procedures and examine the table data itself, it's fairly clear that the table is used to translate codes into readable strings (among other things). Or as the Sybase documentation linked above puts it, "to convert internal system values [...] into human-readable format"

The table is also sometimes used in code snippets in MSDN blogs - but never in formal documentation - usually as a convenient source of a list of numbers. But as discussed elsewhere, creating your own source of numbers is a safer and more reliable solution than using an undocumented system table. There is even a Connect request to provide a 'proper', documented number table in SQL Server itself.

Anyway, the table is entirely undocumented so there is no significant value in knowing anything about it, at least from a practical standpoint: the next servicepack or upgrade might change it completely. Intellectual curiosity is something else, of course :-)

Gula answered 25/11, 2010 at 9:4 Comment(6)
It is heavily used by the system sprocs, no chance of it changing.Reins
@PerformanceDBA: you're probably right (after all, the table has presumably been there from version 4.x or earlier all the way through to 2008) but that is still no guarantee that Microsoft won't change it in future. Relying on undocumented features always has some risk, even if it's a small one.Gula
I did not vote you down. I disagreed with one statement. It is not worth arguing about, since you refuse to address my point that it is heavily used by MS in their system stored procs and therefore removal will require those to be written, which is as likely as a snowball's chance in hell. Read my other Answer for further details. There is no guarantee that MS will exist in the future ;-)Reins
@PerformanceDBA: As I said, I think you're probably right, but to address your specific point: Microsoft has already modified many system procs to use the new DMVs instead of the old system tables, so clearly the code is not set in stone and is actively being maintained as versions change. If they can replace a reference to dbo.sysusers with one to sys.database_principals then they can certainly change a reference to spt_values. Whether or not they ever will is pure speculation, of course (I don't work for Microsoft).Gula
@didierc Updated, since the original link is now deadGula
The next service pack didn't change anything btw. Nor any other update during the following 10 years lolSalmons
R
8

Mostly answered in another question.

What are the meanings of its type, low, high values?

Most Types (ie. each specific lookup table, if they were separate) require either Name or Number. Some Types require Low and High columns as well. In Sybase, we have an ErrorNumber column, so the sproc can RAISERROR which is not hard-coded (can be changes with versions, etc).

It is not "cryptic" unless an enumerated list is "cryptic" to you; it is just a lookup table (all of them, differentiated by the Type column).

Reins answered 25/11, 2010 at 18:48 Comment(0)
W
3

One usage, definitely not its primary usage, is to generate a series of numbers:

--Generate a series from 1 to 100
SELECT
    TOP 100
    ROW_NUMBER() OVER(ORDER BY (SELECT NULL)) AS RowNum
FROM master.dbo.spt_values ORDER BY RowNum
Woodcock answered 20/4, 2019 at 18:10 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.