SQL Server/T-SQL/System/sp dropmessage — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 10:20, 26 мая 2010
Dropping a User-Defined Error Message
3>
4> -- Creating the new message
5> EXEC sp_addmessage
6> 100001,
7> 14,
8> N"The current table %s is not updateable by your group!"
9> GO
Msg 15043, Level 16, State 1, Server BCE67B1242DE45A\SQLEXPRESS, Procedure sp_addmessage, Line 137
You must specify "REPLACE" to overwrite an existing message.
1>
2>
3> EXEC sp_dropmessage 100001
4> GO