Mssmar: Datenbank kopieren

Beitrag lesen

Notepad bietet sich fuer sowas immer an. Falls zu gross ist wordPad die Wahl. (is doch nen Windows PC, nehm ich an?)

Jau, ich habe es mit Notepad aufgemacht und darin sind folgende MySql-Comandos, sage ich mal.

Ich glaube, dass ich die create-Befehle einfach nehme und die Tabellen Manuell über die Eingabe-Konsole von MySql-Server erstelle und fertig ist das Ganze ;-))

Danke und Gruß
Mssmar

Hierbei ein Paar Zeilen davon:

  
/*!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 */;  
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;  
/*!40103 SET TIME_ZONE='+00:00' */;  
/*!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 */;  
  
--  
-- Table structure for table `brand`  
--  
  
DROP TABLE IF EXISTS `brand`;  
CREATE TABLE `brand` (  
  `BrandId` int(10) unsigned NOT NULL auto_increment,  
  `Name` varchar(60) NOT NULL,  
  `Priority` int(2) NOT NULL,  
  PRIMARY KEY  (`BrandId`)  
) ENGINE=MyISAM DEFAULT CHARSET=latin1;  
  
--  
-- Dumping data for table `brand`  
--  
  
  
/*!40000 ALTER TABLE `brand` DISABLE KEYS */;  
LOCK TABLES `brand` WRITE;  
UNLOCK TABLES;  
/*!40000 ALTER TABLE `brand` ENABLE KEYS */;  
  
--  
-- Table structure for table `car`  
--  
  
DROP TABLE IF EXISTS `car`;  
CREATE TABLE `car` (  
  `CarId` int(10) unsigned NOT NULL auto_increment,  
  `Name` varchar(100) NOT NULL,  
  `PriceFrom` decimal(10,0) unsigned NOT NULL default '0',  
  `PriceTo` decimal(10,0) NOT NULL default '0',  
  `BrandId` int(10) unsigned NOT NULL default '0',  
  `ImageUrl` varchar(200) NOT NULL,  
  `Description` text NOT NULL,  
  PRIMARY KEY  (`CarId`)  
) ENGINE=MyISAM DEFAULT CHARSET=latin1;