Forum: Database Design Aug 15th, 2009 |
| Replies: 7 Views: 654 @debasisdas The user is looking to setup a lookup table for his status codes not store all his data in one table. |
Forum: Database Design Aug 11th, 2009 |
| Replies: 7 Views: 654 Like I told you in my earlier post, 1 table is always faster.
You should also use an index if you want to increase scanning speeds as index scans are faster than table scans. |
Forum: Database Design Aug 6th, 2009 |
| Replies: 7 Views: 654 It is always faster accessing 1 table instead of multiple tables. Not quite sure what else you want in the table but try something like this would most likely be best
ID Code ... |
Forum: Database Design Aug 4th, 2009 |
| Replies: 5 Views: 15,565 At my previous company we also resorted to using dotdefender after we came under a serious sql injection attack. The product worked very well and we were able to get it up and running very fast. It... |
Forum: Database Design Jul 29th, 2009 |
| Replies: 6 Views: 415 Here is a link to an article on creating an event schedule in mysql, unfortunately I don't use mysql so it is the best I can do for you.
... |
Forum: Database Design Jul 28th, 2009 |
| Replies: 6 Views: 415 I don't know mysql very much but if you schedule a job it should not care if a file is open or not. |
Forum: Database Design Jul 28th, 2009 |
| Replies: 6 Views: 415 Schedule a job to run the script at whatever interval you want. |
Forum: Database Design Jul 20th, 2009 |
| Replies: 10 Views: 2,195 When I did my final project instead of trying to think of an aimless program that hundreds of other students have already done and will just be scrapped the second it was graded.
I found a small... |