I have exported a sample.xml file from MySQL DB. The size of the file is approximately 9.5 GB. Can anyone please suggest me an external tool, so I can customised which specific columns I want in my exported XMl file. As I saw in XAMPP, there is no advanced option for choosing the specific columns while exporting to XML file. Any suggestion will be greatly appreciated. Thanks.
问问题
123 次
1 回答
2
我能想到几个选择:
您可以
CREATE VIEW
获取列的子集,然后将视图导出为 XML。您可以设计一个 XSL 脚本并使用xsltproc过滤 XML 输出。
您可以导出所有列,然后选择要导入的列
LOAD XML
。
于 2013-06-22T23:45:54.223 回答