Tagged Questions

0
votes
6answers
139 views

How to validate the clients database against my database schema?

Our clients use SQLServer/Oracle databases. Over the years, we've sent them many update scripts which they had to run manually. Most of the time, everything went smooth, but every …
3
votes
2answers
41 views

How to check the integrity of the storedprocedures

Hi, We have a large database containing a lot of stored procedures. Now we are updating our database but some stored procedures still use the old structure. We've found most of th …
0
votes
3answers
67 views

Online checksum checker for client side application

My client side application works only when online. Could i check the integrity of a winforms client application on server side? I would like to make my application useless when i …
0
votes
1answer
88 views

MD5 file processing

Good morning all, I'm working on an MD5 file integrity check tool in C#. How long should it take for a file to be given an MD5 checksum value? For example, if I try to get a 2gb …
0
votes
0answers
34 views

continuous integration — github — integrity

Guys, I have setup integrity for CI. I was wondering is there any common file where I can add build script which can be common to all the projects, rather than adding script to ea …
1
vote
1answer
73 views

Does RandomAccessFile.close() internally call FileChannel.force()?

I am using RandomAccessFile to perform some writes to a file as part of a transaction. Before I commit my transaction, I want to be absolutely sure that the data is written to disk …
1
vote
2answers
288 views

How can I encrypt a message in Perl to decrypt it in C#?

Hi all, I am needing to encrypt using Perl and decrypt on .Net (C#). i.e. Perl encrypts a file and my .Net code decrypts the file (and even maybe validates integrity). The proble …
1
vote
2answers
244 views

How do I verify the integrity of a Sybase dump file, without trying to load it?

Here's the scenario - a client uploads a Sybase dump file to (gzipped) to our local FTP server. We have an automated process which picks these up and then moves them to different s …
2
votes
2answers
77 views

Maintaining conceptual integrity of the system during Maintenance

While starting a new project, we kick start it based on what is "latest" and what is "known". This includes selection of programming languages, frameworks in those languages etc. …
0
votes
1answer
260 views

X.509 v3 certificate with non-repudiation and/or digital signature? Where can I get one?

Hi, To get things working as they should with AS2 protocol signatures, I need a digital certificate with keyUsage extensions 0 and/or 1 (nonRepudiation and/or digitalSignature). …
1
vote
2answers
330 views

How to ensure file integrity on file write failures?

Follow up to: How to safely update a file that has many readers and one writer? In my previous questions, I figured out that you can use FileChannel's lock to ensure an ordering o …
8
votes
2answers
1k views

On using Terracotta as a persistence solution.

Would it be a good idea to use Terracotta as a persistence solution (replacing a database)? I'm specifically wondering about data integrity issues and support for transactional sys …
1
vote
5answers
131 views

How to salvage referential integrity with mutiple databases

I am in the middle of designing a system that will be used to feed several production sites around the country (all information is in one site) with the potential to add more. Ini …