Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
9answers
5k views

How to generate a verification code/number?

I'm working on an application where users have to make a call and type a verification number with the keypad of their phone. I would like to be able to detect if the number they type is correct or ...
5
votes
4answers
1k views

What algorithm to use to calculate a check digit?

What algorithm to use to calculate a check digit for a list of digits? The length of the list is between 8 and 12 digits. see also: How to generate a verification code/number?
4
votes
5answers
678 views

Are there any difference between data integrity and data consistency?

I'm a little confused about data consistency and data integrity. From Oracle Database Concepts: data integrity -------------- Business rules that dictate the standards for acceptable data. These ...
4
votes
9answers
410 views

Should you check for wrong parameter values in the constructor?

Do you check for data validity in every constructor, or do you just assume the data is correct and throw exceptions in the specific function that has a problem with the parameter?
3
votes
3answers
351 views

How reliable is the adler32 checksum?

I wonder how reliable the adler32 checksum is, compared to e.g. md5 checksums? It was told on wikipedia that adler32 is "much less reliable" than md5, so I wonder how much, and in which way? More ...
2
votes
3answers
253 views

How do I ensure data consistency in this concurrent situation?

The problem is this: I have multiple competing threads (100+) that need to access one database table Each thread will pass a String name - where that name exists in the table, the database should ...
0
votes
0answers
14 views

Guaranteeing consistency while accessing files on a web server

I'm in the process of building a simple update server for an application. The parts of the application being updated are configuration files; the most up-to-date copies of these files exist on the ...
0
votes
1answer
30 views

Rails consistency check on record update

I will start a system and we have chosed rails because it covers all our needs. We need consistency on database updates in some point of the system and I remember that I found in some official ...
0
votes
1answer
301 views

“Maximum allowed trigger depth” in SQL Server?

I know about "Allow Triggers to Fire Others" server setting that allows the action taken by a trigger to fire another trigger (or not), and as I understand it, my only options are True (allow trigger ...