Webdevelopment
Drupal
Betriebssysteme
Design
Sonstige
Di., 27/08/2019 - 19:44
Body
Tools/Resourcen
- https://github.com/abg/dbsake | top funktioniert ohne große Probleme. EInfach FRM Struktur Ausgabe!
- offical mysqlfrm | funktioniert null. viel zu komplex wenn man einfach nur eine ausgabe der FRM struktur will.
- https://www.ipserverone.info/server/database/how-to-recover-an-orphan-innodb-database-from-ibd-file/ | nutzt http://www.ipfusions.com/setup/percona-data-recovery-tool-for-innodb-0.5.tar.gz
- https://www.percona.com/blog/2013/11/05/how-to-recover-an-orphaned-ibd-file-with-mysql-5-6/
- https://ipfs-sec.stackexchange.cloudflare-ipfs.com/dba/A/question/57120.html | Das funktioniert so nicht bei mir weil unterschiedliche Versionen, nur minimal aber unetrschiedlich.
DBSAKE BEISPIEL
./dbsake frmdump /mnt/6TB/tmp/frm-recover/affiliate_feeder/amazon_account.frm
AUSGABE
--
-- Table structure for table `amazon_account`
-- Created with MySQL Version 10.1.35
--
CREATE TABLE `amazon_account` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`locale` varchar(255) NOT NULL,
`associate_id` varchar(255) NOT NULL,
`access_key` varchar(255) NOT NULL,
`secret_access_key` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Weitere Infos
Drupal
Webdevelopment