Tagged Questions
The data-dump tag has no wiki summary.
5
votes
2answers
233 views
What's the easiest way to convert an SO data dump from HTML back to Markdown?
I've just got my hands on a Stackoverflow data dump, and I'm disappointed to see that the Body field of the posts is in HTML rather than Markdown. I suspect there's Markdown in the original database ...
2
votes
4answers
139 views
How do you sort the output of Data::Dumper (perl)?
I want to dump the values of my object into my browser, but it keeps printing the keys out of order. How can I dump the keys in (recursive) sort-order?
use Data::Dumper;
sub dump{
my($self) = ...
2
votes
1answer
357 views
How to export primary keys on data-dump?
When I export my database with doctrine:data-dump, I encounter 2 problems:
* the primary keys are not exported
* instead of foreign keys columns correct name, it uses the name of the foreign table.
...
2
votes
2answers
221 views
To read SO's data dump effectively
I use currently Vim to read SO's data dump. However, my Macbook slows down when I roll down just a few rows. This suggests me that there must be more efficient ways to read the data.
I know little ...
1
vote
2answers
79 views
Perl web API using Data::Dumper
We've developed an open web API using Apache and mod_perl, where you can pass text created by Data::Dumper to make requests.
Our data generally looks like this:
$VAR1 = {
'OurField' => ...
1
vote
1answer
114 views
How to make this python script memory efficient
This snippet pulls all of the docs out of my database, and dumps them into a gzip-compressed file. docs_to_dump is a django object containing all of the text documents to be dumped.
...
1
vote
1answer
344 views
Symfony 1.4 doctrine:data-dump reserverd words
I have a table with 2 columns with reserved words (read, write), while yes I can change the column names I want to see if there is a way to do things as is, for educational purposes :-)
When I load ...
1
vote
5answers
2k views
How to convert XML file to a Database?
I recently downloaded the SO Data Dump and was wondering how I could convert it from XML to a DB that I could use in my .NET applications.
0
votes
2answers
18 views
Where Can I find Social Sites Evaluation Data?
I am working on evaluation methods in online social communities, and I need real-word data to apply my algorithms on. What I exactly need is some records that shows the votes that users have given to ...
0
votes
1answer
134 views
What's the best compression algorithm for data dumps
I'm creating data dumps from my site for others to download and analyze. Each dump will be a giant XML file.
I'm trying to figure out the best compression algorithm that:
Compresses efficiently ...
0
votes
1answer
192 views
Extract data dumps from .sql file
I've got an .sql file, it's an database backup from four years ago. This .sql file is filled with table creations but also data dumps. Because I actually don't need and want the data I'm looking for ...
0
votes
2answers
185 views
Is there anywhere to get a free stockmark data feed/dump?
The Stock Market world seems to almost be as fragmented as our nation's Real Estate Fiefdoms. At any rate, are there any providers of free data dumps, API's, or feeds related to stocks or commodities? ...
0
votes
3answers
296 views
Propel-load-data is causing an error
I am trying to load fixtures but myproject is erroring at the CLI and starting the indexer process.
I have tried:
Rebuilding the schema and model
Emptying the database and starting again
Clearing ...
0
votes
2answers
465 views
SQL Server Table Dump - Not All Columns
I'm trying to do an SQL Server dump of a couple of tables in a database (Microsoft SQL Server). We don't have write access to the DB, so we can't do what I was originally thinking (create temp db, ...
0
votes
1answer
57 views
How to open problematic data dump and convert it to mysql (or some other practical format)?
I'm trying to work with pretty interesting data set. Unfortunately, I have problems with opening it and converting it into any useful format. It's collection of archived txt files. When i decompress ...