1

Is there any way to copy database structure without data in Sybase using ddlgen utility, so the new database will be the same as it is copied from, but with empty tables.

Mamta Vyas
  • 93
  • 1
  • 2
  • 9

1 Answers1

0

The ddlgen tool by default only generates the SQL for a given database object so that you can run that SQL to re-create the object either to re-create the object or create it elsewhere. It will not migrate the data you would need to use bcp or perhaps sybmigrate to do the data copy.

Rich Campbell
  • 566
  • 2
  • 9