MySQL backup

N!cklas

Verified User
Joined
Oct 25, 2005
Messages
19
Hi,
When in MySQL management I have the option to download database. But the only thing that I get when I click is this:

-- MySQL dump 10.9
--
-- Host: localhost Database: admin_DATABASE-NAME
-- ------------------------------------------------------
-- Server version 4.1.14-standard

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

Not sure if there's a limit in DB-size, but according to DA it's now 178Mb. Some tables are MyISAM and some are InnoDB if that's what causing the problem. I have other DB's that's smaller and only MyISAM and I have no problem with them...

Any help appreciated :)
 
Back
Top