40
votes
22answers
722 views
Detecting database tampering, is it possible?
Hi everyone,
Long time listener, first time caller.
'Say you have a database table that is responsible for logging user activity. The integrity of this log is important, so you want to be able to …
23
votes
11answers
1k views
Tools for Generating Mock Data?
I'm looking for recommendations of a good, free tool for generating sample data for the purpose of loading into test databases. By analogy, something that produces "lorem ipsum" text for any RDBMS. …
21
votes
15answers
824 views
Where can I find free and open data?
Sooner or later, coders will feel the need to have access to "open data" in one of their projects, from knowing a city's zip to a more obscure information such as the axial tilt of Pluto.
I know …
14
votes
10answers
791 views
Workflow for statistical analysis and report writing
Does anyone have any wisdom on workflows for data analysis related to custom report writing? The use-case is basically this:
Client commissions a report that uses data analysis, e.g. a population …
13
votes
12answers
719 views
What is the best way to implement soft deletion?
Working on a project at the moment and we have to implement soft deletion for the majority of users (user roles). We decided to add an "is_deleted='0'" field on each table in the database and set it …
10
votes
13answers
435 views
Java Time Savers
I find the nature of this question to be quite suited for the practical-minded people on Stackoverflow.
I'm setting out on making a rather large-scale project in Java. I'm not going to go into …
9
votes
8answers
605 views
Persisting data suited for enums
Most projects have some sort of data that are essentially static between releases and well-suited for use as an enum, like statuses, transaction types, error codes, etc. For example's sake, I'll just …
8
votes
27answers
1k views
What’s your best and/or funniest data loss story?
Has anyone lost any critical data in a humorous but catastrophic way?
8
votes
4answers
1k views
How do you share data between a parent and forked child process in Python?
I'm pretty sure one would do this using the os.plock(op) function, but I have no idea how. Also, if there's a better way, I'd be grateful to find out. Code snippets are very welcome. Thanks!
7
votes
6answers
248 views
Cloud Computing and my company’s data
I am looking into Cloud Computing for my company. The one question that I can't seem to get out of my head is; What happens to my data and the ability to use it if the Cloud computing company goes out …
7
votes
2answers
551 views
Why is marshal so much faster than pickle?
From this question and my own benchmarks it seems that the marshal module is about 20-30x faster than cPickle. Why is this so? What functionality does cPickle offer over marshal that justifies this? …
7
votes
13answers
2k views
Difference between a LinkedList and a Binary Search Tree
What are the main differences between a Linked List and a BinarySearchTree? Is BST just a way of maintaining a LinkedList? My instructor talked about LinkedList and then BST but did't compare them or …
7
votes
5answers
393 views
How to find (or generate) thousands of company names for test/demo purposes
Ok, so this is rightfully a testing question more than a development question, but the two should go hand in hand :)
So, I've got a system I'm building which includes business contact information. …
7
votes
6answers
892 views
Embed data in a C++ program
I've got a C++ program that uses SQLite. I want to store the SQL queries in a separate file -- a plain-text file, not a source code file -- but embed that file in the executable file like a resource.
…
7
votes
7answers
201 views
What is the best strategy for retainment of large data sets?
I'm leading a project where we'll be recording metrics data. I'd like to retain the data for years. However, I'd also like to keep the primary table from becoming bloated with data that, while …
