How to change the size of tempdb in SQL Server 6.x (ISQL/w)
To change the size of tempdb in SQL Server 6.x
- On the Start menu, point to Programs/Microsoft SQL Server 6.x, and then click ISQL/w.
- Enter the sa password; then click Connect.
- Execute a DISK INIT command to increase the size of the tempdb device to at least 25 MB.
- Execute an ALTER DATABASE command to increase the size of the tempdb database to at least 25 MB.
Examples
--Increase the size of the tempdb device
DISK INIT name = ‘tempdb1’,physname = ‘c:\mssql\data\tempdb1.DAT’,vdevno = 100, size = 12800
GO
--Increase the size of tempdb
ALTER DATABASE tempdb ON tempdb1 = 25
(c) 1988-98 Microsoft Corporation. All Rights Reserved.