For compatibility with earlier releases, diskettes (floppy disks) can be used to receive dumps. (However, if you need to do this, it is recommended you consider dumping to a disk dump device and then copying the dump to diskette or other external storage media.)
SQL Enterprise Manager cannot be used to initiate a diskette dump, because the console command-line utility must be used to prompt the user and then wait for responses.
Diskette dump devices must be located on the computer where SQL Server is running. By default, when SQL Server is installed, two diskette dump devices are created: DISKETTEDUMPA and DISKETTEDUMPB.
You cannot simultaneously dump multiple databases to the same diskette, but you can execute more than one dump or load at the same time to two diskette dump devices, as long as the diskette dump devices have different controller numbers. You can execute sp_helpdevice to find diskette dump device controller numbers.
A database backup can span many diskettes. When you back up to diskettes, the console utility prompts you to insert new diskettes if necessary. If you are using isql, you must execute the DUMP DATABASE statement and then switch to a different screen session and start the console utility.
console [/S servername] [/Ppipename]
where
The following example shows you how to use isql to back up the pubs database to the DISKETTEDUMPA dump device.
dump database pubs to diskettedumpa
console