Hello,
My problem is the following (apart from being a newbie):
I'm trying to get all my banktransactions (from csv-files from my bank) into MySQL (5.0.33). I managed to do that. Now I have to update the 'target'-base because some fields don't have the right values (ie INC should be changed to Incasso and 087xxxxxxx should be 87xxxxxxx)
I tried to make a 1 query that updates all the fields (columns) I want, but thats not working. I can write multiple queries that each change a value but all those queries should be run twice every month.
So, but i'm not sure, I thought this was something to do as stored procedure. Am i right or is there a better way?
If so I have to read about stored procedures and try to figure out how to work with them.
But first of all I have to know if 'stored proc.' are the way to handle this.
Thanks in advance
Bauke
My problem is the following (apart from being a newbie):
I'm trying to get all my banktransactions (from csv-files from my bank) into MySQL (5.0.33). I managed to do that. Now I have to update the 'target'-base because some fields don't have the right values (ie INC should be changed to Incasso and 087xxxxxxx should be 87xxxxxxx)
I tried to make a 1 query that updates all the fields (columns) I want, but thats not working. I can write multiple queries that each change a value but all those queries should be run twice every month.
So, but i'm not sure, I thought this was something to do as stored procedure. Am i right or is there a better way?
If so I have to read about stored procedures and try to figure out how to work with them.
But first of all I have to know if 'stored proc.' are the way to handle this.
Thanks in advance
Bauke