- Impact
- 4
Edit: Solved - See thread.
I have a MySQL database. In the database there are titles that are in the pattern [blah] part [int]. I want to change "part" to "Episode." I attempted exporting the database via phpmyadmin, modifying it in OpenOffice Base, and importing it. . .but I got a "incorrect number of fields errors" when it finally worked. I used the CSV format.
Problem: I do not know if I will be able to upload the database from home. The failed attempt occurred at school where I get more than 3-5K upload bandwidth. I tried the same thing at home the day before, and it still hadn't uploaded after 40 minutes. There's a good chance of it just timing out. Sure, I could do the messy "partial upload" feature. . .or not. I guess if that's the only way to do it, I'll have to try it that way.
Problem:
OpenOffice Base appears to be useless. It's slow, it locks up, and it won't even load SQL format files for me. I loads CSV but everything else that it will load is not importable with phpmyadmin. Maybe I could just change the format with save-->as? This database stuff seems awfully tricky, I dunno. . . I used version 2.2 and portable version 3.0. I see similar complaints from other users. Is there anything free but much better?
Remote connection?:
It looks like there are ways to connect to a database and submit massive numbers of queries. . .but is there a find--->replace feature in such an environment? I know nothing about remotely connection to databases. I have heard of MySQL Query Viewer, but that's about it.
Thanks anyone who helps!
Code:
UPDATE table
SET title = REPLACE
(title,'part','Episode')
I have a MySQL database. In the database there are titles that are in the pattern [blah] part [int]. I want to change "part" to "Episode." I attempted exporting the database via phpmyadmin, modifying it in OpenOffice Base, and importing it. . .but I got a "incorrect number of fields errors" when it finally worked. I used the CSV format.
Problem: I do not know if I will be able to upload the database from home. The failed attempt occurred at school where I get more than 3-5K upload bandwidth. I tried the same thing at home the day before, and it still hadn't uploaded after 40 minutes. There's a good chance of it just timing out. Sure, I could do the messy "partial upload" feature. . .or not. I guess if that's the only way to do it, I'll have to try it that way.
Problem:
OpenOffice Base appears to be useless. It's slow, it locks up, and it won't even load SQL format files for me. I loads CSV but everything else that it will load is not importable with phpmyadmin. Maybe I could just change the format with save-->as? This database stuff seems awfully tricky, I dunno. . . I used version 2.2 and portable version 3.0. I see similar complaints from other users. Is there anything free but much better?
Remote connection?:
It looks like there are ways to connect to a database and submit massive numbers of queries. . .but is there a find--->replace feature in such an environment? I know nothing about remotely connection to databases. I have heard of MySQL Query Viewer, but that's about it.
Thanks anyone who helps!
Last edited:







