home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / TRACK.ZIP / TRACKDEV.SQL < prev   
Text File  |  1989-08-28  |  331b  |  17 lines

  1. use master
  2. go
  3.  
  4. /* */
  5. /* Create a tracking device for TP/1 benchmarks (5 Meg) */
  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 = "track_db",
  13. physname = "c:\sql\data\track_db.dat",
  14. vdevno=@maxdevice,
  15. size=1024
  16. go
  17.