Hi, I thought I post my first question to the forum today, thanks in advance for any replies I might get. Here is the problem, we have a 16 Gb database which spans multiple devices on a server. When trying to restore the backup to a second server configured identically I get a message stating that I'm out of disk space even though the two files used are 9 Gb each, seems to just be looking at the first device not both. We backup the entire database daily, perhaps we should use a diferent approach.The code I'm using follows:

RESTORE DATABASE FINDEMO
FROM DISK = 'L:FSSaturday600Finprod.bak'
WITH REPLACE,
MOVE 'FINPROD_Data' TO 'g:MSSQL7dataFINDEMO_Data.MDF',
MOVE 'FINPROD_Data2' TO 'f:MSSQL7dataFINDEMO_Data1_Data.NDF',
MOVE 'finprod_log' TO 'g:MSSQL7DataFINDEMO_Log.LDF'
MOVE 'finprod_log2' TO 'F:MSSQL7DataFINDEMO_Log.LDF'