Does any one have a script (or some other way) to script the data of the database?
I'll explain better: The enterprise manager scripts the database schema (creates the database, the tables, views, and all the other objects).
I need a way to quickly script the data, in the format:
INSERT INTO MyTable (ID, Name) VALUES (1, 'aaa')
The restore is out of question, because the database already have data on it, and I want to add some more fix tables and data.
An import is also out of question, as I need to send the script to the client, so he can click a button and fill the database with the new data (comming from the script).
NetAngel
I'll explain better: The enterprise manager scripts the database schema (creates the database, the tables, views, and all the other objects).
I need a way to quickly script the data, in the format:
INSERT INTO MyTable (ID, Name) VALUES (1, 'aaa')
The restore is out of question, because the database already have data on it, and I want to add some more fix tables and data.
An import is also out of question, as I need to send the script to the client, so he can click a button and fill the database with the new data (comming from the script).
NetAngel