In mysql, you can use mysqldump --xml
to dump to XML.
How do you dump a SQL Server database? Preferably to XML.
In mysql, you can use mysqldump --xml
to dump to XML.
How do you dump a SQL Server database? Preferably to XML.
You could try the undocumented sp_MSforeachtable command.
EXEC sp_MSforeachtable 'select * from ? for xml auto'