cancel
Showing results for 
Search instead for 
Did you mean: 

I have problem in cleaning data

Former Member
1,731

Hi, I just want to ask some help I am using SQLAnywhere 9,I have 80 tables in my database and already have thousand of data,..Now I want to create a reset database and i want to have the same table structure.,or Is it possible to extract the table structure of my database so that i can create a reset database with an empty tables?

please help me.

Thank you in advance.

View Entire Topic
MarkCulp
Participant

Use dbunload to export your schema. Example:

dbunload -n -c connection-string-to-your-database

This will generate a reload.sql file that you can then use to regenerate your schema in a new dbinit'ed database.

HTH