home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / BENCHSQL.ZIP / BDEV.SQL next >
Text File  |  1989-08-29  |  324b  |  17 lines

  1. use master
  2. go
  3.  
  4. /* */
  5. /* Create a device to house a 300 meg database */
  6. /* */
  7.  
  8. declare @maxdevice int, @out char(50)
  9. select @maxdevice = max(low/16777216) from sysdevices
  10. select @maxdevice = @maxdevice + 1
  11. disk init
  12. name = "benchdev",
  13. physname = "c:\sql\data\benchdev.dat",
  14. vdevno=@maxdevice,
  15. size=153600
  16. go
  17.