The aspect of an object which describes it as unaltered since a reference time at which a description of its state was recorded, or a description of the continued functioning of a property of the object. An example of this is checking whether the MD5 hash of this file is the same as the MD5 hash that was calculated yesterday, to ensure the file was unaltered.
Questions tagged [integrity]
300 questions
2
votes
3 answers
Android: Verifying the application's integrity on the server side
I'm writing an Android app that communicates via HTTPS with a server application. On the server side, I have to be absolutely sure about the Android app's integrity. This means that the server app needs to be sure that it's communicating with the…

Peter
- 379
- 2
- 5
- 10
2
votes
3 answers
django cannot fix integrity error
I've decided to drop a row from a field from a database i'm setting up in django. I've deleted it in models/form and completely re-ran the database (makemigrations, migrate). However, no matter what I do i keep getting an integrity error (NOT NULL…

Abjilla22
- 11
- 4
- 14
2
votes
1 answer
How to Introspect normal world from secure world using TrustZone?
I have learned that secure world can protect critical data from being accessed by normal world, What I don't understand is that how do I measure the integrity of normal world from secure world.
I find some relevant work in the Samsung TZ-RKP and…

Tgn Yang
- 330
- 3
- 16
2
votes
3 answers
Is there a 2 or 3-bit checksum algorithm
Is there a 2 or 3 bit checksum algorithm that I can use to check my 6 bits of data for errors which I am reading in from an optical sensor that detects 8 bit patterns? I was not able to find anything.

Benedikt M.
- 145
- 1
- 13
2
votes
1 answer
IntegrityError when saving user with username=email
I have modified my application, so that when a new user is registered, it's username and email are the same. But when a new user is created, I'm getting IntegrityError : (1062, "Duplicate entry 'my@email.com' for key 'username'"), still the user is…

muntu
- 2,355
- 4
- 19
- 18
2
votes
1 answer
Data integrity before migration
I have to migrate 1.5TB of data from a Subversion to a perforce server.
Is there any tool I can use to check if there is errors in the files?

Simon du Four
- 21
- 1
2
votes
2 answers
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 server within the network where the database server resides.…

ninesided
- 23,085
- 14
- 83
- 107
2
votes
0 answers
Data integrity in concurrency environment
We know that DBMS harness many technique to ensure the data integrity and satisfying the ACID properties when there are many transactions running simultaneously in a concurrency environment. Apart from setting Isolation Level, what other means taken…

didxga
- 5,935
- 4
- 43
- 58
2
votes
5 answers
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. Initially I thought that I could get away with only using one database. …

Chris Kloberdanz
- 4,436
- 4
- 30
- 31
2
votes
1 answer
Checking the integrity of a copied folder
I am copying a big folder (300Gb) into an external hard drive. I want to make sure the copied file is complete and not corrupt before deleting the original file. How can I do that in ubuntu?

bigTree
- 2,103
- 6
- 29
- 45
2
votes
1 answer
Achieving referential integrity in an Employee, Manager and Department relationship
I found a case in ER where for the life of me I can't figure out how to achieve referential integrity. The classical Employee, Manager, Department relationship can illustrate this problem.
With the following constraints:
Employee can work in only…

Maksym Bykovskyy
- 832
- 1
- 8
- 18
2
votes
2 answers
Delete a queue via Database
Currently I run some tests with OTRS.
I searched for a possibility to delete the waste queues and found somewhere a tip to do that via deleting the records in the database.
Proceed:
Removing constraint:
ALTER TABLE queue_standard_response DROP…

chuckmensch
- 69
- 1
- 12
2
votes
1 answer
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.
Calling force(boolean) on the RAF's FileChannel appears to provide…

Chris B
- 9,149
- 4
- 32
- 38
2
votes
1 answer
*-property of Biba model
In Dieter Gollmann's Computer security book, under Biba model, *-property is explained as follows.
If subject s can read (observe) object o, then s can have write access to some other object p only if fo(p)<=fo(o).
I expect that the ultimate idea…

Bee
- 12,251
- 11
- 46
- 73
1
vote
2 answers
Errors between two models with OneToOne relation (Integrity constraint violation)
I have a problem with Doctrine 2 and OneToOne relation when it's the time to insert new infos in the database.
Model: User.php

Jean-Philippe Rivard Lauzier
- 43
- 1
- 6