Is it possible to generate a sql script that contains CREATE and INSERT statements for some tables within an Access database?
|
feedback
|
|
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. | |||||||||
feedback
|
|
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 | |||
|
feedback
|
|
Take a look at Access To MySQL conversion tool, it allows the generation of a dump file ... Take a look also at this good guide on how to dump data from MS Access . | |||
|
feedback
|