21

How do I generate scripts for all tables with a single stroke in SQL Server 2000?

Suraj Kumar
  • 5,547
  • 8
  • 20
  • 42
Ganesamoorthy
  • 3,623
  • 8
  • 25
  • 26

1 Answers1

42

You can't do this with one click of a button.

You have to:

  • Right click Database
  • Select All Tasks > Generate SQL Scripts
  • Click Show All
  • Check All Tables
  • Click the Formatting tab. Select the options you require
  • Click the Options tab. You may want to script out the Indexes, Full-Text Indexes, Triggers, Primary & Foreign Keys.
  • Then choose whether you want it all in one file or one file per object.
codingbadger
  • 42,678
  • 13
  • 95
  • 110