Transact-SQL Reference

sp_enumcodepages

Returns a list of the code pages and character sets supported by sp_makewebtask.

Syntax

sp_enumcodepages

Return Code Values

0 (success) or 1 (failure)

Result Sets
Column name Data type Description
Code Page integer Code page supporting the character set.
Character Set varchar(50) Character set alias code recognized by Microsoft® Internet Explorer and other browsers.
Description varchar(255) Description of the character set.

Remarks

The appropriate .nls files must be installed by the operating system and made available so that sp_makewebtask can create the .htm file from the proper code page.

Permissions

Execute permissions default to the public role.

Examples

This example returns a list of supported code pages and character sets supported by sp_makewebtask.

EXEC sp_enumcodepages

See Also

sp_makewebtask

System Stored Procedures