Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
1answer
8k views

Rails 3: Validate combined values

In Rails 2.x you can use validations to make sure you have a unique combined value like this: validates_uniqueness_of :husband, :scope => :wife In the corresponding migration it could look like ...
4
votes
5answers
674 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
5answers
337 views

How to fix possible db corruption?

I'm at a client doing some quick fixes to their access application. It was a while I had a go with access, but I'm recovering quickly. However, I've discovered an interesting problem: For some ...
3
votes
3answers
2k views

SQL Server: How to make server check all its check constraints?

It seems that some scripts generated by Enterprise Manager* (or not, it doesn't matter) created check constraints WITH NOCHECK. Now when anyone modifies the table, SQL Server is stumbling across ...
2
votes
1answer
71 views

MySQL: Update a table in its own trigger

Apparently MySQL have the really annoying restriction of not being able to update a table inside a trigger defined for that same table. I'm using MySQL version 5.1 and I get the error: "Can't update ...
2
votes
2answers
158 views

Is it possible to integrate my database with a forum (SMF, phpBB) database?

I have a web application with a user base. I want to add a forum, but I don't want users to register there again. I'm using Rails/Postgresql. Is it possible to integrate the forum so that after ...
2
votes
9answers
2k views

How can MyISAM tables be used more safely?

I like InnoDB's safety, consistency, and self-checking. But I need MyISAM's speed and light weight. How can I make MyISAM less prone to corruption due to crashes, bad data, etc.? It takes forever to ...
1
vote
1answer
29 views

integrity constraint in Oracle

Suppose that a table named SuplProd has the columns supplier and product and two entries: (Sony Ericcson, Xperia) and (Apple, iPhone). I would like to create a table named Orders with columns ...
1
vote
3answers
141 views

Question about composite primary keys

Example table: Ticket - id - tenant_id - foo TicketItem - id - tenant_id - ticket_id - bar Assuming that id and tenant_id on each table make up composite primary keys, ...
1
vote
2answers
103 views

Foreign key constraint should be complaining but somehow it's not

I have, among others, three tables: account, address and account_address. The account_address table has an account_id and an address_id. It's your standard many-to-many relationship. I have a ...
1
vote
2answers
2k views

How to check MySQL integrity?

I have a big MySQL 5 Database for a drupal site on an old machine. After backing up and restoring on a fresh database, I got: ERROR 1064 (42000) at line **: You have an error in your SQL syntax; ...
1
vote
3answers
161 views

MySQL Multi-Insert? MySQL DB integrity after failed INSERT

Is it possible to insert a row into multiple tables at once? If you do several tables related by an ID; what is the best way to ensure integrity is maintained in case an INSERT fails?
1
vote
3answers
89 views

How to go about catching database and software version mismatch on deployed application?

I'm developing a standalone application that accesses a common database on a server. It will be used by a few dozen people in my organization. I know that I will need to update the software and the ...
0
votes
1answer
103 views

Integrity constraint issue in an inheritance relational model with MySQL 5.5

I have the following database relational schema that purports to model an EMP supertype together with two FULL_TIME_EMP and PART_TIME_EMP subtypes: The problem I have is one of integrity i.e. I ...
0
votes
1answer
27 views

Hopefully simple SQL question for enforcing immutability of a column based on the value of another column

I have a table with a Value column and a Status column. What is the simplest and most effective way to enforce the following? The idea is that money values are entered into the database and then ...
0
votes
1answer
440 views

“SQLSTATE[23000]: Integrity constraint violation” in Doctrine

i do get an Integrity constraint violation for Doctrine though i really can't see why. Schema.yml User: columns: id: type: integer primary: true autoincrement: true ...