home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / BENCHSQL.ZIP / INDEX.SQL < prev    next >
Text File  |  1989-04-19  |  439b  |  29 lines

  1. /* */
  2. /* This creates indexes for the TP/1 benchmarks */
  3. /* */
  4.  
  5. use bench 
  6. go
  7.  
  8. /* */
  9. /* Create an index on account */
  10. /* */
  11.  
  12. create unique clustered index anumber_idx on account (number)
  13. go
  14.  
  15.  
  16. /* */
  17. /* Create an index on branch */
  18. /* */
  19.  
  20. create unique clustered index bnumber_idx on branch (number)
  21. go
  22.  
  23. /* */
  24. /* Create an index on teller */
  25. /* */
  26.  
  27. create unique clustered index tnumber_idx on teller (number)
  28. go
  29.