que juego de caracteres tengo que usar para restaurar una base de datos

arielcdp Seguir

Beta
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Desde
19 May 2010
Mensajes
108
si leo la cabecera del back up que tengo veo esto:
- Server version 5.0.41-Max

/*!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 `aaggregate_temp_1284138600`
--

DROP TABLE IF EXISTS `aaggregate_temp_1284138600`;
CREATE TABLE `aaggregate_temp_1284138600` (
`attachmentid` int(10) unsigned NOT NULL default '0',
`views` int(10) unsigned NOT NULL default '0',
KEY `attachmentid` (`attachmentid`)
) ENGINE=MEMORY DEFAULT CHARSET=latin1;

--
-- Dumping data for table `aaggregate_temp_1284138600`
--

LOCK TABLES `aaggregate_temp_1284138600` WRITE;
/*!40000 ALTER TABLE `aaggregate_temp_1284138600` DISABLE KEYS */;
/*!40000 ALTER TABLE `aaggregate_temp_1284138600` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aaggregate_temp_1284484200`
--
no me queda claro como setear mi nueva base de datos para que al subir esta no tenga problemas con los acentos Ñ y demás.
 
Arriba