Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
10answers
541 views

How do you manage databases during development?

My development team of four people has been facing this issue for some time now: Sometimes we need to be working off the same set of data. So while we develop on our local computers, the dev database ...
16
votes
9answers
909 views

C++ Is private really private?

I was trying out the validity of private access specifier in C++. Here goes: Interface: // class_A.h class A { public: void printX(); private: void actualPrintX(); int x; }; ...
13
votes
10answers
446 views

Database constraints - keep or ignore?

When I was learning in university, they taught us the database fundamentals, basics and rules, and one of the most important rules is the constraints (primary key, foreign key), and how to make 1-m, ...
9
votes
2answers
570 views

Which git commands perform integrity checks?

Trying to determine how quickly a user would be warned of corruption in the object database with git-1.7.4.1, I pulled a one-bit switcheroo: $ git init repo Initialized empty Git repository in ...
7
votes
4answers
178 views

Dilema: Cascade delete or Join delete

It's not a specific question, more a general wondering. When you have to make a delete on multiple tables in a 1:M relationship, is it better to make a FK constraint with a cascade delete or join ...
6
votes
2answers
93 views

Non-Trusted Constraints

I just learned, to my amazement, that foreign key constraints can be non-trusted. This occurs when a constraint is added using WITH NOCHECK. When a constraint is non-trusted, it isn't used by the ...
5
votes
3answers
136 views

Repeated parameter checks in functions

I often have call hierarchies in that all methods need the same parameters. If I dont't want to put them on the instance level (member of the class) then I ask me always if its meaningfull to check ...
5
votes
2answers
199 views

How to prevent column b containing the same value as any column a in Oracle?

What is a good way to prevent a table with 2 columns, a (unique) and b, from having any record where column b is equal to any value in column a? This would be used for a table of corrections like ...
4
votes
6answers
53 views

Practices for allowing systems to accommodate human error?

Systems have to sometimes accommodate the possibility of real world bad data. Consider that some data originates with paper forms. And forms inherently have a limited means of validating data. ...
4
votes
2answers
141 views

Data integrity and restrictions

Using the following table layout: TABLE Something ( SomethingId Name DateCreated IsObsolete ('Y','N') PRIMARY KEY (SomethingId) Foreign Key ...
4
votes
2answers
124 views

Best way to enforce this data-integrity constraint?

I have 3 tables (lets call them Foo, Bar and Baz. Tables: Foo FooId Bar BarId FooId Baz BazId BarId AnotherValue Obviously the foreign keys make it so that each Baz is associated with a ...
4
votes
2answers
241 views

How do I ensure data integrity for objects in google app engine without using key names?

I'm having a bit of trouble in Google App Engine ensuring that my data is correct when using an ancestor relationship without key names. Let me explain a little more: I've got a parent entity ...
4
votes
3answers
317 views

How to organize live data integrity tests and code unit tests?

I have several files with code testing code (which uses a "unittest" class). Later I found it would be nice to test database integrity also. I put this into a separate directory tree. (Things like ...
3
votes
2answers
52 views

How to map different many to manys with same constraint

I have a data model that i have some concerns over. Here it is: My concern is that it's possible to assign an application to a member, and then assign a role that is from a different application ...
3
votes
4answers
88 views

Data integrity for a large database table

I have to provide data integrity for a large database table. So, if a crafty admin manually changes the table (not via UI) I want to be able to detect it. My idea is to have HMAC for each record and ...
3
votes
1answer
400 views

Mongodb inserts not completing successfully (using node.js)

I've got a node.js script that loads an XML file. It loops through each element in the Mongo array and says that they're all getting inserted correctly, but when the script has completed a check of ...
3
votes
1answer
257 views

column not null deferrable

In Oracle deferred constraints are checked only at the point of commit. What is the meaning of DEFERRABLE clause in a case of NOT NULL constraint? For example create table test(a number not null ...
3
votes
3answers
1k views

VS 2010 Database Project dropping data on column name change

I am testing out the new database project features of Visual Studio 2010 and want to change the name of a column in a table. I changed the name in the create script and deployed it against the ...
3
votes
3answers
459 views

MS Access 2003: Can data disappear from records and how do I test for this and prevent it?

Problem and about the database: Data from a record in Access 2003 database has disappeared. This database has 1 backend and 3 frontends, multiple users and is hosted on Citrix. Within this database, ...
2
votes
2answers
54 views

How do I get the right locks for this SQL?

My database is SQL Server 2005/8. In a booking system we have a limit of 24 bookings on an event. This code in a stored procedure checks: - that the current user (@UserId) is not already booked on ...
2
votes
3answers
132 views

migrate the large data from xml file to the database

Q: I face the following problem two weeks ago , and i don't know how to handle it taking the performance issues , the data integrity in consideration. What I do is: I wanna to migrate the data from ...
2
votes
2answers
28 views

Where is the most convenient place to validate a property length of a saveable object?

I wonder where is the most convenient place to validate a property length on a persistent object. Let's say, there is a table called Country in my Db with CountryCode nvarvhar(3). And I have a ...
2
votes
3answers
81 views

Preventing inapropriate rows from being inserted into SQL Server database

I have a table for tent rents with the following columns: RentID, DateStarted, DateEnded, CustomerID, etc. DateStarted is always entered at the beginning of the rental period, DateEnded is ...
2
votes
1answer
269 views

Core data: deletions in a many-to-many structure

I just want to check really quickly. Say I have two entities in a data model: Catalog, and Product. They have a many-to-many relationship with each other, and both are required (a Catalog must have ...
2
votes
7answers
343 views

Opening Hours Database Design

We are currently developing an application in which multiple entities have associated opening hours. Opening hours may span multiple days, or may be contained within a single day. Ex. Opens Monday at ...
2
votes
4answers
107 views

Tools, rules or processes for checking internal consistency of XML config files

I've worked on projects that have very complex XML configuration, and one problem that's faced is maintaining the internal consistency of the XML. In this case I don't mean the strict XML schema ...
2
votes
1answer
122 views

Suitable hash function for data corruption

What is the most suitable hash function for file integrity checking (checksums) to detect corruption? I need to consider the following: Wide range of file size (1 kb to 10GB+) Lots of different file ...
2
votes
3answers
122 views

Need for both Ciphering and Integrity?

Why do some scenarios require both ciphering and integrity whereas some scenarios require only ciphering ? What are the factors that decide this in the case of networking domain ?
2
votes
5answers
199 views

SQL Trigger not working correctly

here are the 2 tables i have, i want to implement an trigger that customer cannot have more than 5 accounts from a one bank, but can have more than 5 in total. CREATE TABLE ACCOUNT( ACCOUNT_NO ...
2
votes
2answers
58 views

Efficient data importing?

We work with a lot of real estate, and while rearchitecting how the data is imported, I came across an interesting issue. Firstly, the way our system works (loosely speaking) is we run a Coldfusion ...
2
votes
3answers
113 views

Should I remove banned contents on my database?

I'm in front of decision on how to do with flagged data by the users. The banned data could be an image, a wiki, an user and something else need to be managed like a message board. I'd like to work ...
2
votes
2answers
969 views

SQL Server: How to ignore referential integrity until COMMIT?

i have a process to move rows from one database to another. Because of some circular foreign key reference chains i cannot remove the rows from the old database, nor can i insert them into the new ...
2
votes
1answer
177 views

How atomic is the Berkeley DB usage?

I am writing a simple app with 24 items in a hash to be persistent across program executions, so Berkeley DB (DBM) should be well suited for this task. And it is just for fun. But I wonder if using ...
2
votes
2answers
285 views

Checking rule violations before deleting a record

I would like to implement a "soft-delete" scheme for a number of entities in my SQL Server 2005 database. By this, I mean I would like to delete an row from a table if there are no referential ...
2
votes
4answers
1k views

How do you add Foreign Key Relationships?

I'm working with an existing SQL 2005 database that was not implemented with FK relationships between tables. I tried to add the relationships with a database diagram and my application immediately ...
2
votes
2answers
324 views

drop down list validation

I'm working on a web app project (in java; not that it matters) and we have a form with drop down lists and input fields,etc.. Obviously drop down lists are provided because we expect a specific ...
1
vote
1answer
81 views

Is there a difference between the terms “data integrity” and “data quality”?

I was asked this question in an interview today, and didn't know how to answer. Can anyone provide an insight as to the differences?
1
vote
1answer
82 views

how to do large file integrity check

I need to do integrity check for a single big file. I have read the SHA code for android,but it will need one another file for the result digest. Is there another method using a single file? I need a ...
1
vote
1answer
30 views

How to provide constraint to an associative table relating to two source tables with a common foreign key?

Example scenario. In a flight schedule system, there are a pilot table which refers to a plane_type table indicating the planes the pilot is able to fly (assuming that is a many-to-one relation). ...
1
vote
1answer
128 views

Null Integrity protection algorithm [closed]

What is the use of the NULL integrity protection algorithm ?
1
vote
2answers
211 views

How to go about transferring hash for file integrity check?

I have an application that downloads a file from the server. The connection is very unstable and so we are implementing a feature to check for file integrity so that we can know if the file was not ...
1
vote
1answer
200 views

DataSet Serialization Problem in .Net

I have a dataset containing several tables, which is populated from a stored procedure. I want to make it nested for the GetXml() method. I added the relation: set.Relations.Add( new ...
1
vote
1answer
144 views

File integrity check

We have large sets (10+) of very large files (> 1 GB) that we share across our network. There are occasionally a few smaller files too. Regardless, we want to make sure these files are correct after ...
1
vote
2answers
299 views

Whats the best way to compare large amounts of data between two different databases? Using C#

I have one desktop application receiving data from a webservice and storing it inside a local postgresql database (while the webservice retrieves data from a SQL Server database). At the end of the ...
1
vote
4answers
644 views

how to verify data integrity using SHA2?

package abc.xyz; import java.io.UnsupportedEncodingException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public class SHA2{ private static String ...
1
vote
8answers
172 views

Optional Unique Constraints?

I am setting up a SaaS application that multiple clients will use to enter data. However, I have certain fields that Client A may want to force unique, Client B may want to allow dupes. Obviously if ...
1
vote
1answer
67 views

Can mmap() gurantee the data integrity on crash, if I store data chunks in 1/n of Linux PAGE_SIZE?or disk block size?

I need to desgin a system with data persistent and fast reload, which is implemented with mmap(). But systems using mmap() for persistence offen lost data integrity on system crash, like single node ...
1
vote
2answers
147 views

Calculating a “based” data checksum. (SHA1/2, etc)

I'm not sure exactly how to ask this, but here's what I'm hoping for, given a structure that could contain 5+n keys (thus, there are 5 keys mandatory to my system, additional keys are optional) - I ...
1
vote
1answer
294 views

MySQL transactions: multiple concurrent transactions and data integrity

I'm using transactions for managing data across several MySQL InnoDB tables in a reasonably complex web application. Briefly, a given transaction works as follows: Data is read from a row in a ...
1
vote
2answers
280 views

Maintaining integrity of Core Data Entities with many incoming one-to-many relationships

I have a Core Data store which contains a number of MediaItem entities that describe, well, media items. I also have NewsItems, which have one-to-many relationships to a number of MediaItems. So far ...

1 2