Tagged Questions

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
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
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?
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 ...