Reconfigure SQL server's advanced settings

The following SQL statement is used to reconfigure the SQL SERVER advanced settings, such as max text repl size.

sp_configure 'max text repl size', 2147483647
GO
RECONFIGURE;

You can also configure this kind of advanced settings via the UI property windows  form. Right click on SQL server instance name, select "property" menu item, then click on "Advanced" tab in the "Server properties" windows form.


posted @ 2008-02-02 13:58  Rickie  阅读(693)  评论(0编辑  收藏  举报