If you have a support-contract with Sybase you should be able to download good, old Sybase Central which can generate DDL for you. Otherwise you have to go back to basics and use ddlgen, something like: ddlgen -U user -P password -S ASE-instane -TDB -N db_name -O db_name .ddl Either way (with any tool) you will most likely face some problems with dependencies with exicuting the generated DDL because it will e.g. try to install a procedure before another procedure, on which the one to install depends. Normally you have to tweak the sequence of installing objects.
↧