Drops an alternate language from the server and removes its row from master.dbo.syslogins.
sp_droplanguage language [, dropmessages]
where
Executing the sp_droplanguage system stored procedure also drops a language from the list of available alternate languages by deleting its entry from the master.dbo.syslanguages table.
If there are no associated messages, this example drops French from the set of available alternate languages.
sp_droplanguage french
If there are associated messages, this example drops French from the set of available alternate languages.
sp_droplanguage french, dropmessages
Only the system administrator can use this procedure.
master.dbo.syslanguages, master.dbo.sysmessages
sp_helplanguage |