Increasing the row or page size
Can anyone tell me the step by step procedure of increasing the page/row/primary data file size in MS SQL Server 2000 ?
Can anyone tell me the step by step procedure of increasing the page/row/primary data file size in MS SQL Server 2000 ?
USE master
GO
ALTER DATABASE dbname
MODIFY FILE (NAME = filename, SIZE = newsize)
GO