View Single Post
  #23  
Old 10-13-2016, 08:34 PM
khalathas
Sarnak
 
Join Date: Jun 2007
Posts: 67
Default

This is a pure insert-only sql script, it won't drop or update any conflicting rows.

Code:
-- --------------------------------------------------------
-- Host:                         127.0.0.1
-- Server version:               5.1.68-community - MySQL Community Server (GPL)
-- Server OS:                    Win64
-- HeidiSQL Version:             9.1.0.4867
-- --------------------------------------------------------

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!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' */;
-- Dumping data for table peq.launcher: 11 rows
/*!40000 ALTER TABLE `launcher` DISABLE KEYS */;
INSERT INTO `launcher` (`name`, `dynamics`) VALUES
	('antonica', 0),
	('faydwer', 0),
	('odus', 0),
	('luclin', 0),
	('kunark', 0),
	('velious', 0),
	('ykesha', 0),
	('planes', 0),
	('dynamics', 20);
/*!40000 ALTER TABLE `launcher` ENABLE KEYS */;

-- Dumping data for table peq.launcher_zones: 75 rows
/*!40000 ALTER TABLE `launcher_zones` DISABLE KEYS */;
INSERT INTO `launcher_zones` (`launcher`, `zone`, `port`) VALUES
	('antonica', 'qeynos', 1200),
	('antonica', 'qeynos2', 1201),
	('antonica', 'qrg', 1202),
	('antonica', 'qeytoqrg', 1203),
	('antonica', 'highpass', 1204),
	('antonica', 'highkeep', 1205),
	('antonica', 'freportn', 1206),
	('antonica', 'freportw', 1207),
	('antonica', 'freporte', 1208),
	('antonica', 'runnyeye', 1209),
	('antonica', 'qey2hh1', 1210),
	('faydwer', 'oot', 1264),
	('antonica', 'sro', 1232),
	('antonica', 'southkarana', 1212),
	('antonica', 'northkarana', 1211),
	('antonica', 'eastkarana', 1213),
	('antonica', 'beholder', 1214),
	('antonica', 'blackburrow', 1215),
	('antonica', 'paw', 1216),
	('antonica', 'rivervale', 1217),
	('antonica', 'kithicor', 1218),
	('antonica', 'commons', 1219),
	('antonica', 'ecommons', 1220),
	('antonica', 'nektulos', 1223),
	('odus', 'erudnint', 1221),
	('odus', 'erudnext', 1222),
	('antonica', 'lavastorm', 1225),
	('antonica', 'nro', 1231),
	('antonica', 'soldunga', 1228),
	('antonica', 'soldungb', 1229),
	('faydwer', 'gfaydark', 1249),
	('antonica', 'guktop', 1260),
	('antonica', 'gukbottom', 1261),
	('velious', 'greatdivide', 1277),
	('velious', 'thurgadina', 1278),
	('velious', 'eastwastes', 1279),
	('velious', 'iceclad', 1280),
	('kunark', 'dreadlands', 1281),
	('kunark', 'skyfire', 1282),
	('kunark', 'burningwood', 1283),
	('ykesha', 'gunthak', 1284),
	('ykesha', 'dulak', 1285),
	('planes', 'poknowledge', 1286),
	('kunark', 'citymist', 1287),
	('velious', 'kael', 1288),
	('luclin', 'maiden', 1289),
	('luclin', 'umbral', 1290),
	('luclin', 'thegrey', 1291),
	('velious', 'velkator', 1292),
	('odus', 'hole', 1293),
	('antonica', 'permafrost', 1294),
	('kunark', 'veksar', 1295),
	('velious', 'necropolis', 1296),
	('velious', 'frozenshadow', 1297),
	('planes', 'ponightmare', 1298),
	('planes', 'podisease', 1299),
	('planes', 'poinnovation', 1300),
	('luclin', 'dawnshroud', 1301),
	('luclin', 'acrylia', 1302),
	('luclin', 'akheva', 1303),
	('kunark', 'charasis', 1304),
	('kunark', 'chardok', 1305),
	('kunark', 'sebilis', 1306),
	('kunark', 'chardokb', 1307),
	('luclin', 'griegsend', 1308),
	('planes', 'fearplane', 1309),
	('planes', 'hateplane', 1310),
	('planes', 'airplane', 1311),
	('planes', 'growthplane', 1312),
	('planes', 'mischiefplane', 1313),
	('planes', 'pojustice', 1314),
	('planes', 'postorms', 1315),
	('planes', 'povalor', 1316),
	('velious', 'templeveeshan', 1317),
	('velious', 'westwastes', 1318);
/*!40000 ALTER TABLE `launcher_zones` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
Reply With Quote