list all the defined messages in sysmessages : sysmessages « System Tables Views « SQL Server / T-SQL Tutorial

SQL Server / T-SQL Tutorial
1. Query
2. Insert Delete Update
3. Table
4. Table Join
5. Data Types
6. Set Operations
7. Constraints
8. Subquery
9. Aggregate Functions
10. Date Functions
11. Math Functions
12. String Functions
13. Data Convert Functions
14. Analytical Functions
15. Sequence Indentity
16. View
17. Index
18. Cursor
19. Database
20. Transact SQL
21. Procedure Function
22. Trigger
23. Transaction
24. XML
25. System Functions
26. System Settings
27. System Tables Views
28. User Role
29. CLR
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL Server / T-SQL Tutorial » System Tables Views » sysmessages 
27. 32. 1. list all the defined messages in sysmessages
6>
7>
8SELECT top 10 error, severity, description
9FROM master..sysmessages
10> ORDER BY error
11> GO
error       severity description

----------- -------- -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------
         21       20 Warning: Fatal error %d occurred at %S_DATE. Note the error and time, and contact your system administrator.

        101       15 Query not allowed in WAITFOR.

        102       15 Incorrect syntax near '%.*ls'.

        103       15 The %S_MSG that starts with '%.*ls' is too long. Maximum length is %d.

        104       15 ORDER BY items must appear in the select list if the statement contains a UNION, INTERSECT or EXCEPT operator.

        105       15 Unclosed quotation mark after the character string '%.*ls'.

        106       16 Too many table names in the query. The maximum allowable is %d.

        107       15 The column prefix '%.*ls' does not match with a table name or alias name used in the query.

        108       15 The ORDER BY position number %ld is out of range of the number of items in the select list.

        109       15 There are more columns in the INSERT statement than values specified in the VALUES clause. The number of values in the VALUES clause must match the number of columns specified in
the INSERT statement.

(10 rows affected)
27. 32. sysmessages
27. 32. 1. list all the defined messages in sysmessages
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.