Import English Wikipedia dump into SQL Server
问题 I've downloaded the latest English Wikipedia dump (enwiki-latest-pages-articles-multistream.xml) from here, and I'm trying to import it to SQL Server 2018. I can’t see the XML file because it weighs over 75 GB, and thus I don't know what kind of tables I should create before I'm going to work with Bulk XML. How can I do this? I can write some script on Python or C# . Thanks in advance! 回答1: Use following SQL Query to create database Create Database Feed ; GO USE [Feed] drop table Doc drop