Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wiki Database, is there one?

Tags:

sql

database

wiki

I was searching the net for something like a wiki database, just like wikipedia but instead stores structured content, editable by users. What I was looking for was an online database accessible by everyone where people can design the schema and data with proper versioning of both schema and data. I couldn't find any such site. I am not sure if it is my search skills or if there really is no wiki database as of now. Does anyone out there know anything like this?

I think there is a great potential for something like this. A possible example will be a website with a GUI for querying a MySQL DB where any website visitor can create DB objects and populate data.


UPDATE: I had registered the domain wikidatabase.org to get started on a tool but I didn't find enough time yet. If anyone is interested in spending some time and coding on this, please let me know at wikidatabase.org

like image 442
Faiz Avatar asked Dec 06 '09 08:12

Faiz


People also ask

Is a wiki a database?

Wikipedia offers free copies of all available content to interested users. These databases can be used for mirroring, personal use, informal backups, offline use or database queries (such as for Wikipedia:Maintenance).

What are the 4 types of database?

Four types of database management systems hierarchical database systems. network database systems. object-oriented database systems.

Is Wikipedia a database or website?

Wikipedia is a free, web-based, collaborative and multilingual encyclopedia website and project supported by the non-profit Wikimedia Foundation. It has more than 48 million articles (over 6.56 million in English) written collaboratively by volunteers around the world.

Where does Wikipedia store its data?

The Wikimedia Foundation's servers are spread out in five colocation data centers in Virginia, Texas and San Francisco in the United States, Amsterdam in Europe, and Singapore in Asia.


6 Answers

OK this question is old, but Google led me here, so for anyone else out there looking for a wiki for structured data: Take a look at Foswiki.

like image 68
user843355 Avatar answered Oct 04 '22 11:10

user843355


It's not quite what you're looking for, but Semantic Mediawiki adds database-like features to MediaWiki:

http://semantic-mediawiki.org/wiki/Semantic_MediaWiki

It's still fundamentally a Wiki, but you can add semantic tags to pages ([[foo::bar]] [[baz::1000]]) and then do database-type queries across them: SELECT baz FROM pages WHERE foo=bar would be {{#ask: [[foo::bar]] | ?baz}}. There is even an embryonic SPARQL implementation for pseudo-SQL queries.

like image 23
lambshaanxy Avatar answered Oct 04 '22 12:10

lambshaanxy


This might be like what you're looking for: dbpedia.org. They're working on extracting data from Wikipedia, and encoding it in a structured format using RDF, so that it can be queried using SPARQL.

Linkeddata.org has a big list of RDF data sets.

like image 39
Kaypro II Avatar answered Oct 04 '22 10:10

Kaypro II


Something that might come close to your requirements is Google Docs.

What's offered is document editing roughly similar to MS Word, and spreadsheets roughly similar to Excel. I'm thinking of the latter, of course.

In Google Docs, You can create spreadsheets for free; being spreadsheets, they naturally have a row-and-column structure similar to a database, and which you can define flexibly. You can also share these sheets with other people. This seems to be a by-invite-only process rather than open-to-all, but there may be other possibilities I'm not aware of, or that level of sharing might be enough for you in any case.

like image 35
Carl Smotricz Avatar answered Oct 04 '22 12:10

Carl Smotricz


Do you mean something like http://www.freebase.com?

like image 42
cflewis Avatar answered Oct 04 '22 11:10

cflewis


You should check out https://www.wikidata.org/wiki/Wikidata:Main_Page which is a bit different but still may be of interest.

like image 30
James Avatar answered Oct 04 '22 10:10

James