Is it possible to generate a sql script that contains CREATE and INSERT statements for some tables within an Access database?
Asked
Active
Viewed 2.7k times
3 Answers
1
I've used Access to MySQL and Access to MSSQL (both free) before with success.
It can produce SQL Dumps for their respective targets. Download link
ahill
- 2,802
0
Jet/ACE supports DDL, yes, but not as fully as some other SQL dialects. It also has its idiosyncracies.
But keep in mind that Jet/ACE can execute only one statement at a time -- no batching of multiple statements in a single "script." Each DDL statement has to be executed one at a time, in succession.
David W. Fenton
- 232