Am Mittwoch, den 08.06.2005, 19:46 +0000 schrieb Uwe Brauer: > >>>>> "Frank" == Frank Sch�nheit <- Sun Microsystems Germany > <[EMAIL PROTECTED]>> writes: > > Frank> Hi Uwe, > > Frank> Do you have a chance trying the latest (nearly 2.0) version > Frank> from http://download.openoffice.org/680/index.html? 1.1.x > Frank> is quite old, and in this area some things definately > Frank> changed. > > Hi > > I tried out > http://people.debian.org/~halls/openoffice/test/ooo1.9-java/ a > which is version openoffice.org1.9.73, frankly this versi�n is awful, > the fonts to huge, but most important my problem seems to persists, by > the way as I said in an earlier mail it seems that I cannot just > access to an older mysql database, which I copied via backup.
Have you tried accessing the old databases from the commandline client? Maybe there is a problem with mysql, in that case dumping and restoring the database to and from a text file with the mysql-tools could help... man page for "mysqldump" says: ... The most normal use of mysqldump is probably for making a backup of whole databases. See Mysql Manual section 21.2 Database Back- ups. mysqldump --opt database > backup-file.sql You can read this back into MySQL with: mysql database < backup-file.sql or mysql -e 'source /patch-to-backup/backup-file.sql' database However, it's also very useful to populate another MySQL server with information from a database: mysqldump --opt database | mysql --host=remote-host -C database ... HTH, Marc --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
