Dump SQL Server 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'
精彩评论