hot questions tagged wikipedia+mysql - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T12:21:26Zhttp://stackoverflow.com/feeds/tag?tagnames=wikipedia%2bmysql&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1603681/truncate-mediawiki0Truncate mediawikiPierre2009-10-21T21:12:20Z2009-11-16T20:32:02Z
<p>Hi all,
I'm working with the mediawiki API ( e.g. <a href="http://en.wikipedia.org/w/api.php" rel="nofollow">http://en.wikipedia.org/w/api.php</a>) and I would like to be able to 'truncate' the mysql tables in order to reset the local installation while keeping some tables (users, ?...).
What would be the SQL queries ? </p>
<p>I would say: tuncate all the tables but ${PREFIX}_user and update ${PREFIX}_user set user_editcount=0 ?</p>
<p>Any other(safer) suggestion ?</p>
http://stackoverflow.com/questions/1001156/wikipedia-integration-issue-need-to-finally-sort-this-out-1010Wikipedia integration issue - need to finally sort this out 101Ali2009-06-16T12:25:21Z2009-06-16T13:44:21Z
<p>Sorry guys, I've been running a mock asking questions on how to integrate wikipedia data into my application and frankly I don't think I've had any success on my end as I've been trying all the ideas and kinda giving up when I read a dead end or obstacle. I'll try to explain what exactly I am trying to do here.</p>
<p>I have a simple directory of locations like cities and countries. My application is a simple php based ajax based application with a search and browse facility. People sign up and associate themselves with a city and when a user browses cities - he/ she can see people and companies in that city i.e. whoever is a part of our system that is. </p>
<p>That part is kinda easily set up on its own and is working fine. The thing is that My search results would be in the format i.e. some one searches for lets say Beijing. It would return in a three tabbed interface box:</p>
<ol>
<li>First Tab would have an infobox containig city information for Beijing</li>
<li>Seond would be a country tab holding an infobox of the country information from CHina</li>
<li>Third tab would have Listings of all contacts in Beijing.</li>
</ol>
<p>The content for the first two tabs should come from Wikipedia.Now I'm totally lost with what would be the best way to get this done and furthermore once decide on a methodology then - how do I do it and make it such that its quite robust.</p>
<p>A couple of ideas good and bad as I have been able to digest so far are:</p>
<ol>
<li><p>Run a curl request directly to wikipedia and parse the returning data everytime a search is made. There is no need to maintain a local copy in this case of the data on wikipedia. The other issue is that its wholly reliant on data from a remote third location and I doubt it is feasible to do a request everytime to wikipedia to retrieve basic information. Plus considering that data on wikipedia requires to be parsed at every request - thats gonna surmount to heavy server loads.. or am I speculating here.</p></li>
<li><p>Take a Download of the wikipedia dump and query that. Well I've downloaded the entire database but its gonna take forever to import all the tables from the xml dump. Plus consider the fact that I just want to extract a list of countries and cities and their info boxes - alot of the information in the dump is of no use to me.</p></li>
<li><p>Make my own local tables and create a cron[I'll explain why cron job here] script that would somehow parse all teh countries and cities pages on wikipedia and convert them to a format I can use in my tables. However honestly speaking I do not need all of the information in the infoboxes as is infact if I could just even get the basic markup of the infoboxes as is - that would be more than enough for me. Like:</p></li>
</ol>
<p>Title of Country | Infobox Raw text</p>
<p>I can personally extract stuff like coordinates and other details if I want.</p>
<p>I even tried downloading third party datasets from infochiumps and dbpedia but the dataset from infochimps is incomplete and didn't contain all the information I wanted to display - plus with dbpedia I have absolutely no idea what to do with the csv file I downloaded of infoboxes and am afraid that it might also not be complete.</p>
<p>But that is just part of the issue here. I want a way to show the wikipedia information - I'll have all the links point to wikipedia as well as a nice info from wikipedia displayed properly all around BUT the issue is that I need a way that periodically I can update the information I have from wikipedia so atleast I don't have totally outdated data. Like well lets say a system that can check and if we have a new country or new location it can parse the information and somehow retrieve it. I'm relying on categories of countries and cities in wikipedia for this here but frankly all these ideas are on paper, partially coded and its a huge mess.</p>
<p>I'm programming in PHP and MySQL and my deadline is fast approaching - given the above situation and requirements what is the best and most practical method to follow and implement. I am totally open to ideas - practical examples if anyone has done something similar - I would love to hear :D</p>
http://stackoverflow.com/questions/908813/copy-chosen-wikipedia-articles-into-own-wiki0Copy chosen Wikipedia articles into own wiki?alimango2009-05-26T03:31:11Z2009-05-26T05:04:50Z
<p>Hi, is there a way to batch copy certain wikipedia articles(about 10,000) to my own mediawiki site?</p>
<p>EDIT:
How do I do this without overwriting similarly named articles/pages?
Also I don't plan on using illegal means (crawlers etc) </p>
http://stackoverflow.com/questions/862613/importing-wikipedia-database-dumb-kills-navicat-anyone-got-any-ideas1Importing wikipedia database dumb - kills navicat - anyone got any ideas?Ali2009-05-14T10:26:38Z2009-05-14T13:13:40Z
<p>Ok guys I've downloaded the wikipedia xml dump and its a whopping 12 GB of data :\ for one table and I wanted to import it into mysql databse on my localhost - however its a humongous file 12GB and obviously navicats taking its sweet time in importing it or its more likely its hanged :(.</p>
<p>Is there a way to include this dump or atleast partially at most you know bit by bit.</p>
<p><hr /></p>
<p>Let me correct that its 21 GB of data - not that it helps :\ - does any one have any idea of importing humongous files like this into MySQL database.</p>