-- MariaDB dump 10.19-11.4.0-MariaDB, for Win64 (AMD64) -- -- Host: localhost Database: -- ------------------------------------------------------ -- Server version 11.4.0-MariaDB /*!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 utf8mb4 */; /*!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 */; -- -- Current Database: `4images_4mam` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `4images_4mam` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */; USE `4images_4mam`; -- -- Table structure for table `4mam_categories` -- DROP TABLE IF EXISTS `4mam_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_categories` ( `cat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cat_name` varchar(255) NOT NULL DEFAULT '', `cat_description` text NOT NULL, `cat_parent_id` int(10) unsigned NOT NULL DEFAULT 0, `cat_hits` int(10) unsigned NOT NULL DEFAULT 0, `cat_order` int(10) unsigned NOT NULL DEFAULT 0, `auth_viewcat` tinyint(2) NOT NULL DEFAULT 0, `auth_viewimage` tinyint(2) NOT NULL DEFAULT 0, `auth_download` tinyint(2) NOT NULL DEFAULT 0, `auth_upload` tinyint(2) NOT NULL DEFAULT 0, `auth_directupload` tinyint(2) NOT NULL DEFAULT 0, `auth_vote` tinyint(2) NOT NULL DEFAULT 0, `auth_sendpostcard` tinyint(2) NOT NULL DEFAULT 0, `auth_readcomment` tinyint(2) NOT NULL DEFAULT 0, `auth_postcomment` tinyint(2) NOT NULL DEFAULT 0, PRIMARY KEY (`cat_id`), KEY `cat_parent_id` (`cat_parent_id`), KEY `cat_order` (`cat_order`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_categories` -- LOCK TABLES `4mam_categories` WRITE; /*!40000 ALTER TABLE `4mam_categories` DISABLE KEYS */; INSERT INTO `4mam_categories` VALUES (1,'Feiern','',0,6,10,0,0,2,2,9,0,0,0,2), (2,'Klassentreffen 2006-04-08','',1,11,10,0,0,2,2,9,0,0,0,2); /*!40000 ALTER TABLE `4mam_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_comments` -- DROP TABLE IF EXISTS `4mam_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_comments` ( `comment_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `image_id` int(10) unsigned NOT NULL DEFAULT 0, `user_id` int(11) NOT NULL DEFAULT 0, `user_name` varchar(100) NOT NULL DEFAULT '', `comment_headline` varchar(255) NOT NULL DEFAULT '', `comment_text` text NOT NULL, `comment_ip` varchar(20) NOT NULL DEFAULT '', `comment_date` int(11) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`comment_id`), KEY `image_id` (`image_id`), KEY `user_id` (`user_id`), KEY `comment_date` (`comment_date`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_comments` -- LOCK TABLES `4mam_comments` WRITE; /*!40000 ALTER TABLE `4mam_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_groupaccess` -- DROP TABLE IF EXISTS `4mam_groupaccess`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_groupaccess` ( `group_id` int(10) unsigned NOT NULL DEFAULT 0, `cat_id` int(10) unsigned NOT NULL DEFAULT 0, `auth_viewcat` tinyint(1) NOT NULL DEFAULT 0, `auth_viewimage` tinyint(1) NOT NULL DEFAULT 0, `auth_download` tinyint(1) NOT NULL DEFAULT 0, `auth_upload` tinyint(1) NOT NULL DEFAULT 0, `auth_directupload` tinyint(1) NOT NULL DEFAULT 0, `auth_vote` tinyint(1) NOT NULL DEFAULT 0, `auth_sendpostcard` tinyint(1) NOT NULL DEFAULT 0, `auth_readcomment` tinyint(1) NOT NULL DEFAULT 0, `auth_postcomment` tinyint(1) NOT NULL DEFAULT 0, KEY `group_id` (`group_id`), KEY `cat_id` (`cat_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_groupaccess` -- LOCK TABLES `4mam_groupaccess` WRITE; /*!40000 ALTER TABLE `4mam_groupaccess` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_groupaccess` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_groupmatch` -- DROP TABLE IF EXISTS `4mam_groupmatch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_groupmatch` ( `group_id` int(10) unsigned NOT NULL DEFAULT 0, `user_id` int(11) NOT NULL DEFAULT 0, `groupmatch_startdate` int(11) unsigned NOT NULL DEFAULT 0, `groupmatch_enddate` int(11) unsigned NOT NULL DEFAULT 0, KEY `group_id` (`group_id`), KEY `user_id` (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_groupmatch` -- LOCK TABLES `4mam_groupmatch` WRITE; /*!40000 ALTER TABLE `4mam_groupmatch` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_groupmatch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_groups` -- DROP TABLE IF EXISTS `4mam_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_groups` ( `group_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `group_name` varchar(100) NOT NULL DEFAULT '', `group_type` tinyint(2) NOT NULL DEFAULT 1, PRIMARY KEY (`group_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_groups` -- LOCK TABLES `4mam_groups` WRITE; /*!40000 ALTER TABLE `4mam_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_images` -- DROP TABLE IF EXISTS `4mam_images`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_images` ( `image_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cat_id` int(10) unsigned NOT NULL DEFAULT 0, `user_id` int(11) NOT NULL DEFAULT 0, `image_name` varchar(255) NOT NULL DEFAULT '', `image_description` text NOT NULL, `image_keywords` text NOT NULL, `image_date` int(11) unsigned NOT NULL DEFAULT 0, `image_active` tinyint(1) NOT NULL DEFAULT 1, `image_media_file` varchar(255) NOT NULL DEFAULT '', `image_thumb_file` varchar(255) NOT NULL DEFAULT '', `image_download_url` varchar(255) NOT NULL DEFAULT '', `image_allow_comments` tinyint(1) NOT NULL DEFAULT 1, `image_comments` int(10) unsigned NOT NULL DEFAULT 0, `image_downloads` int(10) unsigned NOT NULL DEFAULT 0, `image_votes` int(10) unsigned NOT NULL DEFAULT 0, `image_rating` decimal(4,2) NOT NULL DEFAULT 0.00, `image_hits` int(10) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`image_id`), KEY `cat_id` (`cat_id`), KEY `user_id` (`user_id`), KEY `image_date` (`image_date`), KEY `image_active` (`image_active`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_images` -- LOCK TABLES `4mam_images` WRITE; /*!40000 ALTER TABLE `4mam_images` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_images_temp` -- DROP TABLE IF EXISTS `4mam_images_temp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_images_temp` ( `image_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cat_id` int(10) unsigned NOT NULL DEFAULT 0, `user_id` int(11) NOT NULL DEFAULT 0, `image_name` varchar(255) NOT NULL DEFAULT '', `image_description` text NOT NULL, `image_keywords` text NOT NULL, `image_date` int(11) unsigned NOT NULL DEFAULT 0, `image_media_file` varchar(255) NOT NULL DEFAULT '', `image_thumb_file` varchar(255) NOT NULL DEFAULT '', `image_download_url` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`image_id`), KEY `cat_id` (`cat_id`), KEY `user_id` (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_images_temp` -- LOCK TABLES `4mam_images_temp` WRITE; /*!40000 ALTER TABLE `4mam_images_temp` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_images_temp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_lightboxes` -- DROP TABLE IF EXISTS `4mam_lightboxes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_lightboxes` ( `lightbox_id` varchar(32) NOT NULL DEFAULT '', `user_id` int(11) NOT NULL DEFAULT 0, `lightbox_lastaction` int(11) unsigned NOT NULL DEFAULT 0, `lightbox_image_ids` text DEFAULT NULL, KEY `lightbox_id` (`lightbox_id`), KEY `user_id` (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_lightboxes` -- LOCK TABLES `4mam_lightboxes` WRITE; /*!40000 ALTER TABLE `4mam_lightboxes` DISABLE KEYS */; INSERT INTO `4mam_lightboxes` VALUES ('42068f200be33a8086ad23def2cac6f1',1,1149531781,''); /*!40000 ALTER TABLE `4mam_lightboxes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_postcards` -- DROP TABLE IF EXISTS `4mam_postcards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_postcards` ( `postcard_id` varchar(32) NOT NULL DEFAULT '', `image_id` int(10) unsigned NOT NULL DEFAULT 0, `postcard_date` int(11) unsigned NOT NULL DEFAULT 0, `postcard_bg_color` varchar(100) NOT NULL DEFAULT '', `postcard_border_color` varchar(100) NOT NULL DEFAULT '', `postcard_font_color` varchar(100) NOT NULL DEFAULT '', `postcard_font_face` varchar(100) NOT NULL DEFAULT '', `postcard_sender_name` varchar(255) NOT NULL DEFAULT '', `postcard_sender_email` varchar(255) NOT NULL DEFAULT '', `postcard_recipient_name` varchar(255) NOT NULL DEFAULT '', `postcard_recipient_email` varchar(255) NOT NULL DEFAULT '', `postcard_headline` varchar(255) NOT NULL DEFAULT '', `postcard_message` text NOT NULL, PRIMARY KEY (`postcard_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_postcards` -- LOCK TABLES `4mam_postcards` WRITE; /*!40000 ALTER TABLE `4mam_postcards` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_postcards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_sessions` -- DROP TABLE IF EXISTS `4mam_sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_sessions` ( `session_id` varchar(32) NOT NULL DEFAULT '', `session_user_id` int(11) NOT NULL DEFAULT 0, `session_lastaction` int(11) unsigned NOT NULL DEFAULT 0, `session_location` varchar(255) NOT NULL DEFAULT '', `session_ip` varchar(15) NOT NULL DEFAULT '', PRIMARY KEY (`session_id`), KEY `session_user_id` (`session_user_id`), KEY `session_id_ip_user_id` (`session_id`,`session_ip`,`session_user_id`) ) ENGINE=MEMORY DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_sessions` -- LOCK TABLES `4mam_sessions` WRITE; /*!40000 ALTER TABLE `4mam_sessions` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_sessionvars` -- DROP TABLE IF EXISTS `4mam_sessionvars`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_sessionvars` ( `session_id` varchar(32) NOT NULL DEFAULT '', `sessionvars_name` varchar(30) NOT NULL DEFAULT '', `sessionvars_value` text DEFAULT NULL, KEY `session_id` (`session_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_sessionvars` -- LOCK TABLES `4mam_sessionvars` WRITE; /*!40000 ALTER TABLE `4mam_sessionvars` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_sessionvars` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_settings` -- DROP TABLE IF EXISTS `4mam_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_settings` ( `setting_name` varchar(255) NOT NULL DEFAULT '', `setting_value` mediumtext NOT NULL, PRIMARY KEY (`setting_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_settings` -- LOCK TABLES `4mam_settings` WRITE; /*!40000 ALTER TABLE `4mam_settings` DISABLE KEYS */; INSERT INTO `4mam_settings` VALUES ('site_name','4images - Image Gallery Management System'), ('site_email','admin@yourdomain.com'), ('use_smtp','0'), ('smtp_host',''), ('smtp_username',''), ('smtp_password',''), ('template_dir','default'), ('language_dir','deutsch'), ('date_format','d.m.Y'), ('time_format','H:i'), ('convert_tool','none'), ('convert_tool_path',''), ('gz_compress','0'), ('gz_compress_level','9'), ('cat_cells','2'), ('cat_table_width','100%'), ('cat_table_cellspacing','1'), ('cat_table_cellpadding','3'), ('num_subcats','3'), ('image_order','image_name'), ('image_sort','ASC'), ('new_cutoff','10'), ('image_border','1'), ('image_cells','3'), ('default_image_rows','3'), ('custom_row_steps','10'), ('image_table_width','100%'), ('image_table_cellspacing','1'), ('image_table_cellpadding','3'), ('upload_mode','2'), ('allowed_mediatypes','jpg,gif,png,aif,au,avi,mid,mov,mp3,mpg,swf,wav,ra,rm,zip,pdf'), ('max_thumb_width','300'), ('max_thumb_height','300'), ('max_thumb_size','100'), ('max_image_width','1024'), ('max_image_height','1024'), ('max_media_size','2000'), ('upload_notify','0'), ('upload_emails',''), ('auto_thumbnail','0'), ('auto_thumbnail_dimension','100'), ('auto_thumbnail_resize_type','1'), ('auto_thumbnail_quality','75'), ('badword_list','fuck {fuck}'), ('badword_replace_char','*'), ('wordwrap_comments','50'), ('html_comments','0'), ('bb_comments','1'), ('bb_img_comments','0'), ('category_separator',' / '), ('paging_range','5'), ('user_edit_image','1'), ('user_delete_image','1'), ('user_edit_comments','1'), ('user_delete_comments','1'), ('account_activation','1'), ('activation_time','14'), ('session_timeout','15'), ('display_whosonline','1'), ('highlight_admin','1'); /*!40000 ALTER TABLE `4mam_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_users` -- DROP TABLE IF EXISTS `4mam_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_users` ( `user_id` int(11) NOT NULL AUTO_INCREMENT, `user_level` int(11) NOT NULL DEFAULT 1, `user_name` varchar(255) NOT NULL DEFAULT '', `user_password` varchar(255) NOT NULL DEFAULT '', `user_email` varchar(255) NOT NULL DEFAULT '', `user_showemail` tinyint(1) NOT NULL DEFAULT 0, `user_allowemails` tinyint(1) NOT NULL DEFAULT 1, `user_invisible` tinyint(1) NOT NULL DEFAULT 0, `user_joindate` int(11) unsigned NOT NULL DEFAULT 0, `user_activationkey` varchar(32) NOT NULL DEFAULT '', `user_lastaction` int(11) unsigned NOT NULL DEFAULT 0, `user_location` varchar(255) NOT NULL DEFAULT '', `user_lastvisit` int(11) unsigned NOT NULL DEFAULT 0, `user_comments` int(10) unsigned NOT NULL DEFAULT 0, `user_homepage` varchar(255) NOT NULL DEFAULT '', `user_icq` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`user_id`), KEY `user_lastaction` (`user_lastaction`), KEY `user_name` (`user_name`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_users` -- LOCK TABLES `4mam_users` WRITE; /*!40000 ALTER TABLE `4mam_users` DISABLE KEYS */; INSERT INTO `4mam_users` VALUES (-1,-1,'Guest','0493984f537120be0b8d96bc9b69cdd2','',0,0,0,0,'',0,'',0,0,'',''), (1,9,'admin','5a9361b28ee51795f1e82d9054919034','admin@yourdomain.com',1,1,0,1016023608,'1e3457c0b2052a9633b886fd75ef91e0',1378994851,'login.php',1310589558,0,'',''); /*!40000 ALTER TABLE `4mam_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_wordlist` -- DROP TABLE IF EXISTS `4mam_wordlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_wordlist` ( `word_text` varchar(50) NOT NULL DEFAULT '', `word_id` int(10) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`word_id`), UNIQUE KEY `word_text` (`word_text`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_wordlist` -- LOCK TABLES `4mam_wordlist` WRITE; /*!40000 ALTER TABLE `4mam_wordlist` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_wordlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_wordmatch` -- DROP TABLE IF EXISTS `4mam_wordmatch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_wordmatch` ( `image_id` int(10) unsigned NOT NULL DEFAULT 0, `word_id` int(10) unsigned NOT NULL DEFAULT 0, `name_match` tinyint(1) NOT NULL DEFAULT 0, `desc_match` tinyint(1) NOT NULL DEFAULT 0, `keys_match` tinyint(1) NOT NULL DEFAULT 0, UNIQUE KEY `image_word_id` (`image_id`,`word_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_wordmatch` -- LOCK TABLES `4mam_wordmatch` WRITE; /*!40000 ALTER TABLE `4mam_wordmatch` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_wordmatch` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `coppermine_mygallery` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `coppermine_mygallery` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */; USE `coppermine_mygallery`; -- -- Table structure for table `cpg14x_albums` -- DROP TABLE IF EXISTS `cpg14x_albums`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_albums` ( `aid` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL DEFAULT '', `description` text NOT NULL, `visibility` int(11) NOT NULL DEFAULT 0, `uploads` enum('YES','NO') NOT NULL DEFAULT 'NO', `comments` enum('YES','NO') NOT NULL DEFAULT 'YES', `votes` enum('YES','NO') NOT NULL DEFAULT 'YES', `pos` int(11) NOT NULL DEFAULT 0, `category` int(11) NOT NULL DEFAULT 0, `thumb` int(11) NOT NULL DEFAULT 0, `keyword` varchar(50) DEFAULT NULL, `alb_password` varchar(32) DEFAULT NULL, `alb_password_hint` text DEFAULT NULL, PRIMARY KEY (`aid`), KEY `alb_category` (`category`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Used to store albums'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_albums` -- LOCK TABLES `cpg14x_albums` WRITE; /*!40000 ALTER TABLE `cpg14x_albums` DISABLE KEYS */; INSERT INTO `cpg14x_albums` VALUES (1,'Rotterdam_Reunion_2008','',10001,'NO','YES','YES',1,0,26,'Rotterdam Erasmus Students \r\n\r\nReunion','tulabis','combination of tulip & cannabis'); /*!40000 ALTER TABLE `cpg14x_albums` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_banned` -- DROP TABLE IF EXISTS `cpg14x_banned`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_banned` ( `ban_id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) DEFAULT NULL, `ip_addr` tinytext DEFAULT NULL, `expiry` datetime DEFAULT NULL, `brute_force` tinyint(5) NOT NULL DEFAULT 0, PRIMARY KEY (`ban_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Data about banned users'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_banned` -- LOCK TABLES `cpg14x_banned` WRITE; /*!40000 ALTER TABLE `cpg14x_banned` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_banned` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_bridge` -- DROP TABLE IF EXISTS `cpg14x_bridge`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_bridge` ( `name` varchar(40) NOT NULL DEFAULT '0', `value` varchar(255) NOT NULL DEFAULT '', UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Stores the bridging data, not used when unbridged'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_bridge` -- LOCK TABLES `cpg14x_bridge` WRITE; /*!40000 ALTER TABLE `cpg14x_bridge` DISABLE KEYS */; INSERT INTO `cpg14x_bridge` VALUES ('short_name',''), ('license_number',''), ('db_database_name',''), ('db_hostname',''), ('db_username',''), ('db_password',''), ('full_forum_url',''), ('relative_path_of_forum_from_webroot',''), ('relative_path_to_config_file',''), ('logout_flag',''), ('use_post_based_groups',''), ('cookie_prefix',''), ('table_prefix',''), ('user_table',''), ('session_table',''), ('group_table',''), ('group_relation_table',''), ('group_mapping_table',''), ('use_standard_groups','1'), ('validating_group',''), ('guest_group',''), ('member_group',''), ('admin_group',''), ('banned_group',''), ('global_moderators_group',''), ('recovery_logon_failures','0'), ('recovery_logon_timestamp',''); /*!40000 ALTER TABLE `cpg14x_bridge` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_categories` -- DROP TABLE IF EXISTS `cpg14x_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_categories` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `owner_id` int(11) NOT NULL DEFAULT 0, `name` varchar(255) NOT NULL DEFAULT '', `description` text NOT NULL, `pos` int(11) NOT NULL DEFAULT 0, `parent` int(11) NOT NULL DEFAULT 0, `thumb` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`cid`), KEY `cat_parent` (`parent`), KEY `cat_pos` (`pos`), KEY `cat_owner_id` (`owner_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Used to store categories'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_categories` -- LOCK TABLES `cpg14x_categories` WRITE; /*!40000 ALTER TABLE `cpg14x_categories` DISABLE KEYS */; INSERT INTO `cpg14x_categories` VALUES (1,0,'User galleries','This category \r\n\r\ncontains albums that belong to Coppermine users.',0,0,0); /*!40000 ALTER TABLE `cpg14x_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_comments` -- DROP TABLE IF EXISTS `cpg14x_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_comments` ( `pid` mediumint(10) NOT NULL DEFAULT 0, `msg_id` mediumint(10) NOT NULL AUTO_INCREMENT, `msg_author` varchar(25) NOT NULL DEFAULT '', `msg_body` text NOT NULL, `msg_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `msg_raw_ip` tinytext DEFAULT NULL, `msg_hdr_ip` tinytext DEFAULT NULL, `author_md5_id` varchar(32) NOT NULL DEFAULT '', `author_id` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`msg_id`), KEY `com_pic_id` (`pid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Used to store comments made on pics'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_comments` -- LOCK TABLES `cpg14x_comments` WRITE; /*!40000 ALTER TABLE `cpg14x_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_config` -- DROP TABLE IF EXISTS `cpg14x_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_config` ( `name` varchar(40) NOT NULL DEFAULT '', `value` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Used to store the configuration options'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_config` -- LOCK TABLES `cpg14x_config` WRITE; /*!40000 ALTER TABLE `cpg14x_config` DISABLE KEYS */; INSERT INTO `cpg14x_config` VALUES ('albums_per_page','12'), ('album_list_cols','4'), ('display_pic_info','1'), ('alb_list_thumb_size','50'), ('allowed_mov_types','ALL'), ('allowed_doc_types','doc/txt/rtf/pdf/xls/pps/ppt/zip/gz/mdb'), ('allowed_snd_types','mp3/midi/mid/wma/wav/ogg'), ('allowed_img_types','ALL'), ('allow_private_albums','1'), ('allow_user_registration','0'), ('allow_unlogged_access','0'), ('allow_duplicate_emails_addr','1'), ('caption_in_thumbview','1'), ('views_in_thumbview','1'), ('charset','utf-8'), ('cookie_name','coppermine'), ('cookie_path','/'), ('debug_mode','0'), ('debug_notice','0'), ('default_dir_mode','0755'), ('default_file_mode','0644'), ('default_sort_order','na'), ('ecards_more_pic_target','http://mygallery.mamweb.at/'), ('home_target','index.php'), ('custom_lnk_name',''), ('custom_lnk_url',''), ('enable_smilies','1'), ('filter_bad_words','0'), ('forbiden_fname_char','$/\\\\:*?"'<>|` &'), ('fullpath','albums/'), ('gallery_admin_email','mam@heimam.at'), ('gallery_description','my online photo album'), ('gallery_name','Coppermine Photo Gallery'), ('im_options','-antialias'), ('impath',''), ('jpeg_qual','80'), ('keep_votes_time','30'), ('lang','english'), ('main_page_layout','breadcrumb/catlist/alblist/random,1/lastup,1'), ('main_table_width','100%'), ('make_intermediate','1'), ('max_com_lines','10'), ('max_com_size','512'), ('max_com_wlength','38'), ('max_img_desc_length','512'), ('max_tabs','25'), ('max_upl_size','1024'), ('max_upl_width_height','2048'), ('auto_resize','0'), ('min_votes_for_rating','1'), ('normal_pfx','normal_'), ('offline','0'), ('picture_table_width','600'), ('picture_width','400'), ('read_exif_data','1'), ('reg_requires_valid_email','1'), ('subcat_level','2'), ('theme','rainy_day'), ('thumbcols','4'), ('thumbrows','3'), ('thumb_method','gd2'), ('thumb_pfx','thumb_'), ('thumb_width','100'), ('userpics','userpics/'), ('vanity_block','1'), ('user_profile1_name','Location'), ('user_profile2_name','Interests'), ('user_profile3_name','Website'), ('user_profile4_name','Occupation'), ('user_profile5_name','Nickname'), ('user_profile6_name','Biography'), ('user_field1_name',''), ('user_field2_name',''), ('user_field3_name',''), ('user_field4_name',''), ('display_comment_count','1'), ('show_private','1'), ('first_level','1'), ('display_film_strip','1'), ('display_film_strip_filename','1'), ('max_film_strip_items','5'), ('thumb_use','any'), ('read_iptc_data','1'), ('reg_notify_admin_email','1'), ('disable_comment_flood_protect','0'), ('upl_notify_admin_email','0'), ('display_uploader','0'), ('display_filename','1'), ('language_list','0'), ('language_flags','0'), ('theme_list','0'), ('language_reset','0'), ('theme_reset','0'), ('allow_memberlist','1'), ('display_faq','1'), ('show_bbcode_help','1'), ('log_ecards','1'), ('email_comment_notification','1'), ('enable_zipdownload','1'), ('slideshow_interval','5000'), ('log_mode','2'), ('media_autostart','1'), ('enable_encrypted_passwords','1'), ('time_offset','1'), ('ban_private_ip','0'), ('smtp_host',''), ('smtp_username',''), ('smtp_password',''), ('enable_plugins','1'), ('enable_help','1'), ('categories_alpha_sort','1'), ('login_threshold','3'), ('login_expiry','10'), ('allow_email_change','1'), ('clickable_keyword_search','1'), ('users_can_edit_pics','0'), ('show_which_exif','|0|0|0|0|0|0|0|0|1|0|1|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|1|1|0|0|0|0|1|0|0|0|1|0|0|1|1|0|0|0|0|0|1|0|1|1'), ('link_pic_count','1'), ('bridge_enable','0'), ('language_fallback','1'), ('vote_details','1'), ('hit_details','1'), ('browse_batch_add','0'), ('custom_header_path',''), ('custom_footer_path',''), ('comments_sort_descending','0'), ('report_post','1'), ('comments_anon_pfx','Guest_'), ('admin_activation','1'); /*!40000 ALTER TABLE `cpg14x_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_dict` -- DROP TABLE IF EXISTS `cpg14x_dict`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_dict` ( `keyId` bigint(20) NOT NULL AUTO_INCREMENT, `keyword` varchar(60) NOT NULL DEFAULT '', PRIMARY KEY (`keyId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Holds the keyword dictionary'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_dict` -- LOCK TABLES `cpg14x_dict` WRITE; /*!40000 ALTER TABLE `cpg14x_dict` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_dict` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_ecards` -- DROP TABLE IF EXISTS `cpg14x_ecards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_ecards` ( `eid` int(11) NOT NULL AUTO_INCREMENT, `sender_name` varchar(50) NOT NULL DEFAULT '', `sender_email` text NOT NULL, `recipient_name` varchar(50) NOT NULL DEFAULT '', `recipient_email` text NOT NULL, `link` text NOT NULL, `date` tinytext NOT NULL, `sender_ip` tinytext NOT NULL, PRIMARY KEY (`eid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Used to log ecards'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_ecards` -- LOCK TABLES `cpg14x_ecards` WRITE; /*!40000 ALTER TABLE `cpg14x_ecards` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_ecards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_exif` -- DROP TABLE IF EXISTS `cpg14x_exif`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_exif` ( `filename` varchar(255) NOT NULL DEFAULT '', `exifData` text NOT NULL, UNIQUE KEY `filename` (`filename`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Stores EXIF data from individual pics'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_exif` -- LOCK TABLES `cpg14x_exif` WRITE; /*!40000 ALTER TABLE `cpg14x_exif` DISABLE KEYS */; INSERT INTO `cpg14x_exif` VALUES ('albums/Rotterdam_Reunion_2008/DSCN0064.JPG','a:19:\r\n\r\n{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"Vali\r\n\r\ndAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:39493;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:11;s:4:\"IFD0\";a:11:\r\n\r\n{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX \r\n\r\nP5100\0\";s:11:\"Orientation\";s:14:\"Normal (O deg)\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:19 \r\n\r\n14:06:15\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum Point\";s:10:\"ExifOffset\";i:266;}\r\n\r\ns:10:\"IFD1Offset\";i:914;s:13:\"SubIFDNumTags\";i:35;s:6:\"SubIFD\";a:36:{s:12:\"ExposureTime\";s:9:\"1/404 sec\";s:7:\"FNumber\";s:5:\"f \r\n\r\n5.8\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:64;s:11:\"ExifVersion\";s:11:\"version 2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:19 \r\n\r\n14:06:15\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:19 \r\n\r\n14:06:15\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 \r\n\r\nEV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:13:\"Multi-Segment\";s:11:\"LightSource\";s:15:\"Unknown or Auto\";s:5:\"Flash\";s:8:\"No \r\n\r\nFlash\";s:11:\"FocalLength\";s:7:\"26.3 mm\";s:9:\"MakerNote\";a:36:{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\r\n\r\n\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \r\n\r\n\0\";s:12:\"FlashSetting\";s:8:\"NORMAL \0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \r\n\r\n\0\";s:8:\"DataDump\";s:2540:\"\0\0\0\0\0\0\0\0\0\0\01.1\0\0\0\0\0\0\0a1\0\0V\0\0)¯\0\0ž\0\0 ´\0\0 ¯\0\0 \0\0 ®\0k\0Ó\0@: \r\n\r\n\0\0\0\0\0\0\0\0\0\08,\0\0\0\0\0 \0\0\0\0\0 \0\0\0\0\0\08D@µþ\n\0\0\0\0\0\0\0\06\0 \0\0dG…=´\"\"\"\"ÿôÿµÿæÿÁŸØ\0à~û,\0\Znô0S\0R\0\0P\r\n\r\n\0\0T\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0Ÿ\0\0 \0\0Ø\0 \0 \0\0™\0\0\0Pñ™\0½\0p\0€æ®è\r\n\r\n\0\0\0\0\0\0\0\0 PÒP\0\0\0\0\0\0\0\0›¾åί\0\0\0\0\0\0˜ \0 G 2ñ\0\0\0\0\0\0wwww\0¼E\0»GŠ\0\nÑ\0\0\0d\0\0\0\ng`l\r\n\r\n\Zn\0\0\0\0\0\0\0å\0\0\0\0\0\0Ã;\0È\0ëm\0\0\0\0\0ÅF\0Å=\0Å=ô\0\0qk\0\0\0\0\0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿæ®è\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0›¾åί\r\n\r\n\0\0\0\0\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\0 \0O\0d\0\0\0\0.ö\0\0\"W\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0ÄI\0ÂIi\0ó_rÏ_/ÅW\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0îîîî\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0\0p\0p\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ\0Ä\0Ä\0Â\0Ä\0Ã\0À\0Á\0À\0Â\0¿\0Ã\0Â\0¿\0¿\0Â\0À\0Ä\0Ä\0Â\0Ä\0Ã\r\n\r\n\0À\0Á\0À\0Â\0¿\0Ã\0Â\0¿\0¿\0Â\0À\0Ã\0Â\0À\0Á\0À\0À\0Á\0¾\0Ã\0Ã\0À\0Ã\0Á\0Â\0¿\0À\0À\0Ä\0¾\0¾\0Æ\0Å\0»\0©\0Á\0¿\0¾\0À\0º\0¾\0¼\0½\0Á\0Á\0Â\0¿\0¼\0¸\r\n\r\n\0Å\0¹\0¿\0À\0Á\0Â\0¼\0¾\0½\0º\0À\0¾\0¿\0Æ\0¶\0³\0¯\0²\0Â\0Ä\0¿\0Á\0¾\0¿\0¼\0¾\0È\0Ã\0À\0É\0º\0¹\0§\0©\0Á\0Ñ\0¾\0¿\0¿\0¾\0·\0¼\0É\0È\0Ã\0Ç\0º\0¶\0Å\r\n\r\n\0·\0¿\0Ã\0¿\0Á\0À\0¿\0¸\0½\0Ì\0Ê\0Æ\0Ç\0¸\0À\0±\0­\0½\0Ç\0»\0¿\0º\0º\0¹\0¸\0Í\0Í\0Æ\0Ç\0¼\0»\0À\0¶\0¾\0Ð\0¸\0¿\0´\0¶\0´\0±\0Ë\0Ì\0»\0Â\0µ\0µ\0\0¯\r\n\r\n\0À\0É\0À\0¾\0À\0½\0À\0¿\0Ì\0Ð\0Ã\0Ç\0»\0À\0°\0¶\0À\0Ç\0¿\0¿\0Ã\0Ã\0Â\0Ã\0Ï\0Í\0»\0Æ\0¸\0´\0¤\0¹\0À\0Ü\0¿\0Á\0Ä\0Â\0Á\0Â\0Ï\0Ê\0½\0¿\0¾\0¶\0¦\0¯\0Ã\r\n\r\n\0ß\0Â\0¿\0Ä\0Â\0Î\0¿\0Ñ\0×\0ã\0Ù\0¾\0Á\0¾\0Á\0Â\0Ò\0Â\0Ã\0Ò\0Ã\0×\0ç\0é\0ú\0Ï\0ò\0É\0Ð\0Ö\0ñ\0Ã\0Å\0ß\0Ç\0ó\r\n\r\n\0ÇKIIKHGFGIFIGHHIFKIIKHGFGIFIGHHIFFJGHLGHGGHGFIGDDJGHIPMH=HHGHGGGE\r\n\r\nGEJGRELPGFGGCFCCLDILGEDFIJIGEHDGNIGNNCEGFDGGEFBGKKKQOLFJFEHGDFBDK\r\n\r\nKIPLH?LGDBFCDDCPLNMNJFHDDDECDACRNTOIG=GFCDGGGEFNLOTQJIHFIHGHHGGONO\r\n\r\nNMLGDGGHGEFFFMKOSKJHCGDGFIFJHTZhXJLJIKQFGTHiN^\r\n\r\n…|axdhVxHIQH_P\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \0 \r\n\r\n\0\";s:12:\"unknown:0021\";s:106:\"\0@ð\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \r\n\r\n\0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 \r\n\r\nm\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \r\n\r\n \r\n\r\n\0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \r\n\r\n \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \r\n\r\n\0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}\r\n\r\ns:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \r\n\r\n \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:11:\"1280 \r\n\r\npixels\";s:15:\"ExifImageHeight\";s:10:\"960 pixels\";s:26:\"ExifInteroperabilityOffset\";i:1008;s:10:\"FileSource\";s:20:\"Digital Still \r\n\r\nCamera\";s:9:\"SceneType\";s:21:\"Directly \r\n\r\nPhotographed\";s:14:\"CustomerRender\";i:0;s:12:\"ExposureMode\";i:0;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s:12:\"unknown:a405\";i:123;s:16:\"\r\n\r\nSceneCaptureMode\";i:0;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:0;s:10:\"Saturation\";i:0;s:9:\"Sharpness\";i:0;s:12:\"unknown:a40c\";i:0;}\r\n\r\ns:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:8692;s:15:\"JpegIFByteCount\";i:3746;}\r\n\r\ns:26:\"InteroperabilityIFDNumTags\";i:2;s:19:\"InteroperabilityIFD\";a:2:\r\n\r\n{s:21:\"InteroperabilityIndex\";s:4:\"R98\0\";s:23:\"InteroperabilityVersion\";s:9:\"version 1\";}}'), ('albums/Rotterdam_Reunion_2008/DSCN0066.JPG','a:17:\r\n\r\n{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"Vali\r\n\r\ndAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:9480;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:21;s:4:\"IFD0\";a:21:\r\n\r\n{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX \r\n\r\nP5100\0\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";i:12648450;s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:19 \r\n\r\n14:46:36\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum \r\n\r\nPoint\";s:10:\"ExifOffset\";i:394;s:14:\"CustomerRender\";i:10682368;s:12:\"ExposureMode\";i:17301504;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s\r\n\r\n:12:\"unknown:a405\";i:10682403;s:16:\"SceneCaptureMode\";i:17301504;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:12648448;s:10:\"Saturation\";i:10682368;s:9:\"\r\n\r\nSharpness\";i:17301504;s:12:\"unknown:a40c\";i:0;}s:10:\"IFD1Offset\";i:4438;s:13:\"SubIFDNumTags\";i:23;s:6:\"SubIFD\";a:24:{s:12:\"ExposureTime\";s:9:\"1/248 \r\n\r\nsec\";s:7:\"FNumber\";s:5:\"f 5.4\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:12648512;s:11:\"ExifVersion\";s:11:\"version \r\n\r\n2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:19 14:46:36\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:19 \r\n\r\n14:46:36\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 \r\n\r\nEV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:17:\"Unknown: 12648453\";s:11:\"LightSource\";s:17:\"Unknown: \r\n\r\n10682368\";s:5:\"Flash\";s:17:\"Unknown: 17301528\";s:11:\"FocalLength\";s:6:\"7.5 mm\";s:9:\"MakerNote\";a:36:\r\n\r\n{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \r\n\r\n\0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \0\";s:12:\"FlashSetting\";s:8:\"NORMAL \r\n\r\n\0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \0\";s:8:\"DataDump\";s:2540:\"\r\n\r\n\0\0\0\0\0\0\0\0ÿ\0\01.1\0\0\0\0\0\0\0a1\0\0Ë\0\0+$\0\0\0—\0\0Š\0\0(\0\0 \0\0º\0k\0Ó\0@68\0\0\0\0\0\0\0\0\0\0$\'\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0 \0\0\0\0\0\0$?1ãœ\0\0\0\0\0\0\0\0\0Bp G\0d\\,\"9I\"\"\"\"ÿôÿµÿæÿÁèå\0\0à~û,\0ô0S\0R\0\0P\0\0T\0\0J\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0è\r\n\r\n\0\0\0 \0\0å\0 \0 \0\0\"\0\0\0øÔ\"\0èØ\0à \'\0\0â\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¦ a \r\n\r\nà w\0\0\0\0\0\0\0\0(Q \0\0\0\0\0\0\0\0wwww\0ÇL\0¸K‚\07\0\0\0d\0%\0\0\ng„o‚\0\0\0\0\0\0R\0\0\0\0\0\0Ã;\0È\0ëm4\0I\0\n\r\n\r\n\0ËR\0Ë>\0Ë>8ôd\020G\0\0\0\r* \0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¦ a à w\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\08\0O\0d\0\0\0\08Ó\0\01x\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 ‹ÊëÇ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0/0#\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Dƒ‘r\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0i‡Ÿ˜\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ËÌŵ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0mŒ‹\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0PUTM\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¸\r ã\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0ÕK\0ÔO\0Àl\0¸q>ïÙ2%\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0îîîî\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0\0p\0p\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ\0Ò\0Õ\0ä\0Ö\0è\0ã\0í\0í\0Ù\0û\0ø\0ú\0ð\0ç\0Ô\0á\0Ò\0Õ\0ä\0Ö\0è\r\n\r\n\0ã\0í\0í\0Ù\0û\0ø\0ú\0ð\0ç\0Ô\0á\0Ø\0×\0Ó\0Ñ\0Æ\0É\0Þ\0Ê\0Ö\0Þ\0å\0í\0ä\0ï\0ñ\0ê\0~\0~\0\0~\0\0€\0²\0„\0¹\0¶\0Æ\0ï\0î\0ù\0ò\0}\0\0}\0|\0€\0€\0Â\r\n\r\n\0š\0Ë\0´\0Î\0Û\0è\0ù\0÷\0~\0\0~\0}\0\0€\0Ï\0°\0ã\0¹\0ç\0Û\0ë\0÷\0ö\0ú\0€\0\0\0\0°\0\0Î\0Í\0Í\0Ý\0ñ\0Ý\0á\0¯\0ð\0ø\0\0‚\0ž\0•\0•\0—\0Ë\0À\0Á\r\n\r\n\0³\0œ\0»\0Ï\0ß\0ç\0ç\0‚\0ƒ\0¢\0‰\0›\0š\0Ç\0Ë\0Â\0Æ\0¾\0Á\0Û\0Ä\0ä\0À\0ƒ\0‡\0©\0\0™\0˜\0Ï\0¾\0Â\0Ñ\0Ó\0Ô\0Ö\0Ë\0Ë\0ß\0„\0Ï\0\0\0–\0”\0Ï\0§\0Î\0Ê\0¸\r\n\r\n\0Ô\0¹\0½\0·\0Ã\0\0É\0‡\0‰\0…\0†\0Ã\0…\0Ë\0Ó\0Í\0Ì\0½\0Ø\0½\0´\0Ë\0Ê\0†\0•\0ž\0‡\0¸\0\0À\0»\0Â\0Ë\0Ó\0Ú\0Í\0À\0Å\0Ã\0™\0Â\0®\0¤\0’\0Ž\0º\0±\0¹\0Ë\0\r\n\r\n´\0Ý\0À\0¾\0Ô\0Ç\0˜\0³\0”\0±\0£\0œ\0«\0¯\0»\0À\0Ì\0·\0À\0¶\0¨\0¯\0°\0£\0™\0¹\0¨\0Ÿ\0±\0ª\0Ç\0¶\0Ò\0Å\0¸\r\n\r\n\0ÄMKLMLMJMKLOORLOBMKLMLMJMKLOORLOBMKKMCDWDRYf`^rTR.*,./-V5RD“nnYP\r\n\r\n,(--/.Y8GG€RXSW-*/,0.:W^JmXaŒSO,-10G/]JBjjQ\r\n\r\ngTV,,A6?DR:KULOS†RM-0B3G@I3NEUN`”SO.2:-E@MDQS…PWtJI.L61B>LFKNVVL\r\n\r\n€XD0M2121Q2NQaPY}U?9T56?2I6QRYLH|VCTI4=F@;7WHSOM=_PUFJE;F@>9FWRRfl\r\n\r\n>IEF<9C@5:B[MOXqN\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \0 \r\n\r\n\0\";s:12:\"unknown:0021\";s:106:\"\0@ð\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \r\n\r\n\0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 \r\n\r\nm\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \r\n\r\n\0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \r\n\r\n\0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \r\n\r\n\0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \r\n\r\n \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \r\n\r\n\0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}\r\n\r\ns:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \r\n\r\n \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:10:\"960 \r\n\r\npixels\";s:15:\"ExifImageHeight\";s:11:\"1280 pixels\";s:10:\"FileSource\";s:26:\"Digital Still Camera010801\";s:9:\"SceneType\";s:23:\"Directly \r\n\r\nPhotographeda4\";}s:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:4532;s:15:\"JpegIFByteCount\";i:4940;}}'), ('albums/Rotterdam_Reunion_2008/DSCN0067.JPG','a:17:\r\n\r\n{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"Vali\r\n\r\ndAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:8771;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:21;s:4:\"IFD0\";a:21:\r\n\r\n{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX \r\n\r\nP5100\0\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";i:12648450;s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:19 \r\n\r\n15:02:56\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum \r\n\r\nPoint\";s:10:\"ExifOffset\";i:394;s:14:\"CustomerRender\";i:10682368;s:12:\"ExposureMode\";i:17301504;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s\r\n\r\n:12:\"unknown:a405\";i:10682403;s:16:\"SceneCaptureMode\";i:17301504;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:12648448;s:10:\"Saturation\";i:10682368;s:9:\"\r\n\r\nSharpness\";i:17301504;s:12:\"unknown:a40c\";i:0;}s:10:\"IFD1Offset\";i:4438;s:13:\"SubIFDNumTags\";i:23;s:6:\"SubIFD\";a:24:{s:12:\"ExposureTime\";s:9:\"1/284 \r\n\r\nsec\";s:7:\"FNumber\";s:5:\"f 5.4\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:12648512;s:11:\"ExifVersion\";s:11:\"version \r\n\r\n2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:19 15:02:56\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:19 \r\n\r\n15:02:56\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 \r\n\r\nEV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:17:\"Unknown: 12648453\";s:11:\"LightSource\";s:17:\"Unknown: \r\n\r\n10682368\";s:5:\"Flash\";s:17:\"Unknown: 17301528\";s:11:\"FocalLength\";s:6:\"7.5 mm\";s:9:\"MakerNote\";a:36:\r\n\r\n{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \r\n\r\n\0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \0\";s:12:\"FlashSetting\";s:8:\"NORMAL \r\n\r\n\0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \0\";s:8:\"DataDump\";s:2540:\"\r\n\r\n\0\0\0\0\0\0\0\0\0\0\01.1\0\0\0\0\0\0\0a1\0\0Ü\0\0K\0\0\0„\0\0\0\0 `\0\0 \0\0\rÂ\0k\0Ó\0@68\0\0\0\0\0\0\0\0\0\0)W\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0)o\'b é\0\0\0\0\0\0\0\0\0?@th\0d(W\"Ò\"\"\"\"ÿôÿµÿæÿÁææ\0\0à~û,\0\"}ô0S\0R\0\0P\0\0T\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0ÄuÆk\0\0eô\n\0\0©\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0æ\0\0\0 \0\0æ\0 \0 \r\n\r\n\0\0$\0\0\0$Ô$\0æÔ\0Ò\0{\0\0ÜÔæ\0JXfa]N?/ O\n F :\ng \r\n\r\n\rk»\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0wwww\0|-\0˜7„\0\rM\0\0\0d\0\0\0\ngæI\"}²\n\0\0\0\0\n\r\n\r\n\0\08\0\0\0\0\0\0Ã;\0È\0ëmI\n \0\0\0\0z,\0z6\0z67ö\0\0&b\0\0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJXfa]N?/\'\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÿ\r\n\r\n\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\08\0O\0d\0\0\0\0§\0\0\Z]\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0x+\0ÃI\0ä^d$EÈ\\K\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0îîîî\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0\0p\0p\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ\0x\0x\0z\0w\0y\0z\0x\0y\0œ\0\0¼\0¬\0Ê\0Ã\0Ã\0À\0x\0x\0z\0w\0y\r\n\r\n\0z\0x\0y\0œ\0\0¼\0¬\0Ê\0Ã\0Ã\0À\0w\0z\0y\0x\0}\0}\0«\0\0¯\0²\0Á\0»\0Ò\0Á\0Ñ\0Í\0}\0v\0‹\0Œ\0”\0Œ\0š\0“\0“\0—\0±\0¯\0Å\0³\0Ì\0Ç\0|\0x\0Š\0Š\0‰\0ˆ\r\n\r\n\0Ž\0\0‘\0\0®\0›\0Ê\0³\0Ò\0Ï\0x\0y\0—\0”\0\0”\0•\0š\0’\0‘\0«\0›\0Ù\0¼\0Ô\0Ø\0v\0x\0u\0v\0ƒ\0u\0{\0{\0‚\0}\0Ë\0Œ\0Õ\0Ï\0Ñ\0Ú\0w\0z\0u\0t\0v\0u\0z\0x\r\n\r\n\0|\0z\0Õ\0®\0Ù\0ê\0Õ\0x\0w\0u\0v\0v\0w\0w\0x\0~\0{\0ê\0³‘\0ï3\0v\0u\0x\0x\0‹\0†\0\0ƒ\0‡\0}R\0Ü\0Ø\0Ça\0s\0t\0Í\0”\0\0Ž\0‹\0Š\0Ž\0Šˆ\r\n\r\n\0Ú\0Ø\0Ù\0v\0x\0Œ\0†\0‰\0ˆ\0ˆ\0ˆ\0\0…\0ä\0ª\0×\0à\0üO\0v\0t\0ƒ\0y\0ˆ\0†\0ˆ\0‡\0Œ\0…\0ª\0™\0á\0Þ\0ûj\0w\0v\0s\0v\0z\0v\0…\0†\0Š\0Œ\0Ž\0Œ\0á\r\n\r\n\0å\0õ+\0t\0u\0s\0s\0u\0r\0†\0|\0‹\0‰\0—\0\0þ\0ë\0ä\0v\0t\0¡\0…\0t\0r\0…\0z\0‡\0‰\0“\0ŠI\0Ô(+,**+-*?2EMMLIS(\r\n\r\n+,**+-*?2EMMLIS)),(1,C6CCFGHNeO.)79=;<;7DFANNBN\'\'<798;>?>MCRJ\r\n\r\n[T)\'GAHHGJ@IHD^Of`+&(&3.2//F5XNOV(&&)**,)/,SAVLbQ%&\'(,()*.\r\n\r\n+KCHsB&)*\'40023/ ;VV„o*(-,4078:2 FVVkf\'%:1837268HFSUdq(+/\r\n\r\n(828775?>_\\c\'&*%,(5298<5^‚`i(&(\'\'&5-;4B<]x^e%%2)+\r\n\r\n(4.<6@;rPdg\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \0 \r\n\r\n\0\";s:12:\"unknown:0021\";s:106:\"\0@ð\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \r\n\r\n\0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 \r\n\r\nm\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \r\n\r\n\0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \r\n\r\n\0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \r\n\r\n\0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \r\n\r\n \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \r\n\r\n\0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}\r\n\r\ns:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \r\n\r\n \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:10:\"960 \r\n\r\npixels\";s:15:\"ExifImageHeight\";s:11:\"1280 pixels\";s:10:\"FileSource\";s:26:\"Digital Still Camera010801\";s:9:\"SceneType\";s:23:\"Directly \r\n\r\nPhotographeda4\";}s:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:4532;s:15:\"JpegIFByteCount\";i:4231;}}'), ('albums/Rotterdam_Reunion_2008/DSCN0071.JPG','a:17:\r\n\r\n{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"Vali\r\n\r\ndAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:8594;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:21;s:4:\"IFD0\";a:21:\r\n\r\n{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX \r\n\r\nP5100\0\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";i:12648450;s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:19 \r\n\r\n18:44:49\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum \r\n\r\nPoint\";s:10:\"ExifOffset\";i:394;s:14:\"CustomerRender\";i:10682368;s:12:\"ExposureMode\";i:17301504;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s\r\n\r\n:12:\"unknown:a405\";i:10682455;s:16:\"SceneCaptureMode\";i:17301504;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:12648448;s:10:\"Saturation\";i:10682368;s:9:\"\r\n\r\nSharpness\";i:17301504;s:12:\"unknown:a40c\";i:0;}s:10:\"IFD1Offset\";i:4438;s:13:\"SubIFDNumTags\";i:23;s:6:\"SubIFD\";a:24:{s:12:\"ExposureTime\";s:9:\"1/251 \r\n\r\nsec\";s:7:\"FNumber\";s:5:\"f 5.3\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:12648512;s:11:\"ExifVersion\";s:11:\"version \r\n\r\n2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:19 18:44:49\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:19 \r\n\r\n18:44:49\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 \r\n\r\nEV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:17:\"Unknown: 12648453\";s:11:\"LightSource\";s:17:\"Unknown: \r\n\r\n10682368\";s:5:\"Flash\";s:17:\"Unknown: 17301528\";s:11:\"FocalLength\";s:7:\"18.6 mm\";s:9:\"MakerNote\";a:36:\r\n\r\n{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \r\n\r\n\0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \0\";s:12:\"FlashSetting\";s:8:\"NORMAL \r\n\r\n\0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \0\";s:8:\"DataDump\";s:2540:\"\r\n\r\n\0\0\0\0\0\0\0\0ÿ\0\01.1\0\0\0\0\0\0\0a1\0\0‰\0\0,ò\0\0¸\0\0\nP\0\0\0\0Ü\0\0Š\0k\0Ó\0@5#\0\0\0\0\0\0\0\0\0\0.P\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0.h?”¯\0\0\0\0\0\0\0\0/a\n\0\0d¯>ˆ.\"\"\"\"ÿôÿµÿæÿÁ¹`\0à~û,\0|ô0S\0R\0\0P\0\0T\0\0J\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0¹\r\n\r\n\0\0 \0\0`\0 \0 \0\0²\0\0@\n¶²¶¶\0\0\0B\0\0u0¶¶\0€ï¬t3\0\0\0\0\0\0\0\0K€¾\0\0\0\0\0\0\0\0¹è& Ï\0\0\0\0\0\0…°cè\r\n\r\n\0\0\0\0\0\0wwww\0½O\0ÄP…\0z\0\0\0d\0\0\0\ngx{|W\0\0\0\0\0\0l\0\0\0\0\0\0Ã;\0È\0ëm*\0\r\0\n\0°L\0°;\0°;<\0\0L1J\0 \n\0° ½\r\n\r\n\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\r\n\r\n\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿï¬t3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n0\0\0\0\0\0\0\0\0\0¹è& Ï\0\0\0\0\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\0#\0O\0d\r\n\r\n\0\0\0\08¢\0\09Ø\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0: Z\0ÐM\0¸K.Ê/a\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0îîîî\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0\0p\0p\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ\0\0\0“\0\0ž\0—\0¨\0¡\0¹\0³\0Ï\0Ã\0õ\0ß \0\0\0“\0\0ž\0—\r\n\r\n\0¨\0¡\0¹\0³\0Ï\0Ã\0õ\0ß \0Ž\0Œ\0”\0’\0ž\0–\0©\0 \0Û\0±\0ö\0ù \0ð\0\0Ž\0”\0\0¦\0˜\0§\0£+N\n \0ð\0í\0\0\0“\0‘\0\0˜\0¯\0¤\0þ\0ì\r\n\r\n\0ö\0þ\r\0ë\0¯\0Ü\0‹\0‹\0“\0‘\0\0—\0³\0£\0»\0½\0Ö\0Ë \0¹\0Ç\0\0‹\0•\0‘\0\0˜\0«\0¢\0º\0µ\0Ó\0È\0ê\0Ö\0§\0\0Œ\0”\0’\0 \0™\0°\0£\0¿\0´\0Ó\0Å\0ü\r\n\r\n\0î \0«\0\0Œ\0™\0‘\0¦\0\0®\0«\0Ñ\0¼\0è\0â\0Õ\0ò5\0Î\0\0\0¼\0§\0Å\0·\0Ü\0Ï\0Û\0ê\0é\0×\0Ä\0ò \"\0â\0Ü\0ø\0û\0í\0ö\0­\0Á\0Á\0Ñ\0Ò\0Ç\0È\r\n\r\n\0Ç\'C\0Ž\0Ž\0•\0\0Ë\0±\0ñ\0ã\0Ò\0ð\0ê\0Ò\0î\0ç86\0‘\0Œ\0”\0’\0\0š\0«\0¢\0î\0Ï\0í\0ù\0ê(6\0‘\0\0”\0“\0Ÿ\0˜\0¬\0¥\0¾\0³\0÷\0Æ\0÷\r\n\r\n\0‘\0\0•\0“\0¡\0˜\0«\0¦\0¾\0´\0Î\0÷S\0Ð\0û\0\0Ž\0š\0’\0 \0œ\0¬\0¦\0Á\0´y\0Ò\0åQ\0¸\0è<:A>EBLJQNRTRYZ\r\n\r\n<:A>EBLJQNRTRYZ\\<>A>EBKHUNYZZ^\\\r\n\r\n=9DAOA@DRLPe^YV]=9@>FCPHaaQbW`CU>7A@HCNJXFRUbTHM9<?>F?NHMLPX^TRC=\r\n\r\n;E>GDLKOSQOWQcG><BADBNMRPYWU\r\n\r\ngL=;KERKUWSYWTKUnjXUY]]_KSPVPPKFhq>:?BPH]TQ\\UUJVm`@<CAFCNH\\SZ^\r\n\r\nVhe=<A>ECLFRO[O\\\r\n\r\n[`a=:@?FBLHPN3POAMV<;>@FEJGOL5NS<KJ\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \r\n\r\n \0 \0\";s:12:\"unknown:0021\";s:106:\"\0@ð\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \r\n\r\n\0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 \r\n\r\nm\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \r\n\r\n \r\n\r\n\0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \r\n\r\n \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \r\n\r\n\0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}\r\n\r\ns:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \r\n\r\n \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:10:\"960 \r\n\r\npixels\";s:15:\"ExifImageHeight\";s:11:\"1280 pixels\";s:10:\"FileSource\";s:26:\"Digital Still Camera010801\";s:9:\"SceneType\";s:23:\"Directly \r\n\r\nPhotographeda4\";}s:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:4532;s:15:\"JpegIFByteCount\";i:4054;}}'), ('albums/Rotterdam_Reunion_2008/DSCN0073.JPG','a:19:\r\n\r\n{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"Vali\r\n\r\ndAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:39493;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:11;s:4:\"IFD0\";a:11:\r\n\r\n{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX \r\n\r\nP5100\0\";s:11:\"Orientation\";s:14:\"Normal (O deg)\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:19 \r\n\r\n18:45:54\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum Point\";s:10:\"ExifOffset\";i:266;}\r\n\r\ns:10:\"IFD1Offset\";i:914;s:13:\"SubIFDNumTags\";i:35;s:6:\"SubIFD\";a:36:{s:12:\"ExposureTime\";s:9:\"1/220 sec\";s:7:\"FNumber\";s:5:\"f \r\n\r\n4.8\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:64;s:11:\"ExifVersion\";s:11:\"version 2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:19 \r\n\r\n18:45:54\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:19 \r\n\r\n18:45:54\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 \r\n\r\nEV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:13:\"Multi-Segment\";s:11:\"LightSource\";s:15:\"Unknown or Auto\";s:5:\"Flash\";s:8:\"No \r\n\r\nFlash\";s:11:\"FocalLength\";s:7:\"15.7 mm\";s:9:\"MakerNote\";a:36:{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\r\n\r\n\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \r\n\r\n\0\";s:12:\"FlashSetting\";s:8:\"NORMAL \0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \r\n\r\n\0\";s:8:\"DataDump\";s:2540:\"\0\0\0\0\0\0\0\0ÿ\0\01.1\0\0\0\0\0\0\0a1\0\0y\0\0\'\0\0O\0\0\rÚ\0\0¤\0\0˜\0\0Ê\0k\0Ó\0@0#\r\n\r\n\0\0\0\0\0\0\0\0\0\011\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0\0\01I8„\n´\0\0\0\0\0\0\0\0; m\'\0d›9ß!q\"\"\"\"ÿôÿµÿæÿÁÄá\0à~û,\0Ilô0S\0R\r\n\r\n\0\0P\0\0T\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0Ä\0\0 \0\0á\0 \0 \0\0©\0\0@©ÂÂ\0Ü\0á\0\0œ@ÂÂ\r\n\r\n\0€~>[\0\0\0\0\0\0\0\0\n?ö¹à\0\0\0\0\0\0\0\0•9(×\0\0\0\0\0\0 é - À Š\nÁ\0\0\0\0\0\0wwww\0ÃJ\0ÎMy\0ˆ\0\0Z<\0)\0\01ZsvIl\n\0\0\0\r\n\r\n\n\0\0Ý\0\0\0\0\0Ã;\0¾\0ëm\0\0\0\n\0·I\0·<\0·<h\Z\0\\\"K\0\0(\0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ~>\r\n\r\n[\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0•9(×\r\n\r\n\0\0\0\0\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\0#\0O\0d\0\0\0\02ø\0\00V\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0ºP\0¹T\0­L\0¬HP\\Q\Zv\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0îîîî\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0\0p\0p\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ\0¸\0º\0¸\0¸\0¸\0¹\0¹\0¸\0¹\0µ\0º\0¹\0¸\0·\0¹\0·\0¸\0º\0¸\0¸\0¸\r\n\r\n\0¹\0¹\0¸\0¹\0µ\0º\0¹\0¸\0·\0¹\0·\0Ã\0Â\0Ã\0Á\0Ã\0Á\0Â\0Â\0Ã\0Á\0À\0Ã\0Â\0Â\0Ã\0Á\0Ì\0Ê\0Ë\0Ê\0Ë\0Ë\0Ë\0Ê\0Ë\0Ë\0Ê\0Ê\0Ë\0Ë\0Ë\0É\0Í\0Î\0Ï\0Ð\0Ð\0Î\r\n\r\n\0Ñ\0Ï\0Î\0Ñ\0Ò\0Ñ\0Ð\0Ò\0Ó\0Ï\0Ð\0ê\0ì\0â\0Î\0Í\0Ï\0Ò\0Ñ\0Ï\0â\0Ò\0Ó\0Ó\0Ó\0Ó\0á\Z\0 \0Ú\0é\0à\0Ù\0Ú\0ø \0¨\0ª\0Ê\0¿\0®\0£\0·\0à\0Ù\r\n\r\n\0¿-0.\0£\0\0£\0¤\0¡\0£\0¢\0¤\0\0¦\0Ò\0¥\0¦\0Ø\0ª\0¦\0¡\0£\0œ\0\0¤\0 \0¥\0¥\0¡\0 :=\0¢\'\0¥\0¥\0¢\0¦\0£\0£\0§\0¥\0¨\0¨\0Ï\0¬U^\0âX\r\n\r\n\0¬\0¨\0­\0©\0§\0¬\0¨\0«\0ª\0¤\0®\0¨\0ø\0ã\0Þ\0ª\0ª\0­\0­\0©\0¨\0­\0«\0«\0¨\0¯\0­\0»\0°\0ª\0Å\0©\0¬\0­\0°\0®\0¬\0§\0®\0§\0«\0®\0¬\0³\0¶\0­\0°\0­\r\n\r\n\0®\0¯\0¶\0®\0°\0°\0«\0©\0°\0³\0®\0®\0·\0¯\0¹\0­\0®\0®\0²\0®\0­\0¯\0¯\0®\0«\0¯\0¯\0³\0«\0±\0»\0¬\r\n\r\n\0©QPSTQQPQPQRQPRTQQPSTQQPQPQRQPRTQUSSSTQOURUTRTUSTRRPSTRRTQTSVTVVU\r\n\r\nQMPMORROTQTRTSUSPQELQQSPOQLSSTSSS^NHTH`gXTMQRRY`JFJICBI@A=TLQXYbE\r\n\r\nBEGLJDEADNBHNHGFGABCMFMKFdSFYINCCIEEDKDJHfa_eIKMCLHMNEJGKSUU\r\n\r\nIJMGILJMGIILIPKKKIKJIHIFLGHIKKJFKGJDGGGJJKIHGMGHLGIHLRGGGLHNGKMKH\r\n\r\nL\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \0 \0\";s:12:\"unknown:0021\";s:106:\"\0@ð\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \r\n\r\n\0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 \r\n\r\nm\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \r\n\r\n \r\n\r\n\0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \r\n\r\n \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \r\n\r\n\0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}\r\n\r\ns:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \r\n\r\n \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:11:\"1280 \r\n\r\npixels\";s:15:\"ExifImageHeight\";s:10:\"960 pixels\";s:26:\"ExifInteroperabilityOffset\";i:1008;s:10:\"FileSource\";s:20:\"Digital Still \r\n\r\nCamera\";s:9:\"SceneType\";s:21:\"Directly \r\n\r\nPhotographed\";s:14:\"CustomerRender\";i:0;s:12:\"ExposureMode\";i:0;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s:12:\"unknown:a405\";i:74;s:16:\"S\r\n\r\nceneCaptureMode\";i:0;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:0;s:10:\"Saturation\";i:0;s:9:\"Sharpness\";i:0;s:12:\"unknown:a40c\";i:0;}\r\n\r\ns:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:8692;s:15:\"JpegIFByteCount\";i:3306;}\r\n\r\ns:26:\"InteroperabilityIFDNumTags\";i:2;s:19:\"InteroperabilityIFD\";a:2:\r\n\r\n{s:21:\"InteroperabilityIndex\";s:4:\"R98\0\";s:23:\"InteroperabilityVersion\";s:9:\"version 1\";}}'), ('albums/Rotterdam_Reunion_2008/DSCN0075.JPG','a:17:\r\n\r\n{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"Vali\r\n\r\ndAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:8057;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:21;s:4:\"IFD0\";a:21:\r\n\r\n{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX \r\n\r\nP5100\0\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";i:12648450;s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:19 \r\n\r\n18:48:54\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum \r\n\r\nPoint\";s:10:\"ExifOffset\";i:394;s:14:\"CustomerRender\";i:10682368;s:12:\"ExposureMode\";i:17301504;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s\r\n\r\n:12:\"unknown:a405\";i:10682442;s:16:\"SceneCaptureMode\";i:17301504;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:12648448;s:10:\"Saturation\";i:10682368;s:9:\"\r\n\r\nSharpness\";i:17301504;s:12:\"unknown:a40c\";i:0;}s:10:\"IFD1Offset\";i:4438;s:13:\"SubIFDNumTags\";i:23;s:6:\"SubIFD\";a:24:{s:12:\"ExposureTime\";s:9:\"1/212 \r\n\r\nsec\";s:7:\"FNumber\";s:5:\"f 5.4\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:12648512;s:11:\"ExifVersion\";s:11:\"version \r\n\r\n2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:19 18:48:54\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:19 \r\n\r\n18:48:54\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 \r\n\r\nEV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:17:\"Unknown: 12648453\";s:11:\"LightSource\";s:17:\"Unknown: \r\n\r\n10682368\";s:5:\"Flash\";s:17:\"Unknown: 17301528\";s:11:\"FocalLength\";s:7:\"15.7 mm\";s:9:\"MakerNote\";a:36:\r\n\r\n{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \r\n\r\n\0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \0\";s:12:\"FlashSetting\";s:8:\"NORMAL \r\n\r\n\0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \0\";s:8:\"DataDump\";s:2540:\"\r\n\r\n\0\0\0\0\0\0\0\0\0\0\01.1\0\0\0\0\0\0\0a1\0\0\rÞ\0\0\"„\0\0Å\0\0\nž\0\0ª\0\0˜\0\0l\0k\0Ó\0@6(\0\0\0\0\0\0\0\0\0\0/`\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0/xE¼\n\0\0\0\0\0\0\0\0*X\0\0dœ@…\Z\"\"\"\"ÿôÿµÿæÿÁËá\0à~û,\0{ô0S\0R\0\0P\0\0T\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0ÄuÆk\0\0eô\n\0\0©\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0Ë\0\0 \0\0á\0 \0 \0\0©\r\n\r\n\0\0@©ÇÂ\0À\0†\0\0²ÂÇ\0€)úþÓ\0\0\0\0\0\0\0\0žü/\0\0\0\0\0\0\0\0Þ%>H\r\0\0\0\0\0\0n÷\"£\0\0\0\0\0\0wwww\0œ>\0ªBƒ\0ß\0\0\0d\r\n\r\n\0\n\0\0\ngí@{¹ \0\0\0\0 \0\0,\0\0\0\0\0\0Ã;\0È\0ëmL \r\0\0\0\0\0Š;\0Š7\0Š7-\0\0>l\0\0\0 \0\0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ)úþÓ\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Þ%>H\r\r\n\r\n\0\0\0\0\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\0(\0O\0d\0\0\0\01—\0\08Ý\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0‡1\0˜D\0™B\0š>r5A769596<<?<B@15<646:5<7<9<<D@:54568;577;8??CB53;397;7<9>;?@A?8\r\n\r\n6979869:=><AAWL21@7LEOQNQVT\\VZZ30N2_Z_]]]\r\n\r\n[_FTCB511254MG`V]_QWBL0234528578K:^VV_123383538897@;\r\n\r\nQ1342726776<;<:B@1/1584848698=>>A\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \r\n\r\n \0 \0\";s:12:\"unknown:0021\";s:106:\"\0@ð\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \r\n\r\n\0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 \r\n\r\nm\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \r\n\r\n \r\n\r\n\0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \r\n\r\n \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \r\n\r\n\0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}\r\n\r\ns:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \r\n\r\n \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:10:\"960 \r\n\r\npixels\";s:15:\"ExifImageHeight\";s:11:\"1280 pixels\";s:10:\"FileSource\";s:26:\"Digital Still Camera010801\";s:9:\"SceneType\";s:23:\"Directly \r\n\r\nPhotographeda4\";}s:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:4532;s:15:\"JpegIFByteCount\";i:3517;}}'), ('albums/Rotterdam_Reunion_2008/DSCN0080.JPG','a:19:\r\n\r\n{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"Vali\r\n\r\ndAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:39493;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:11;s:4:\"IFD0\";a:11:\r\n\r\n{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX \r\n\r\nP5100\0\";s:11:\"Orientation\";s:14:\"Normal (O deg)\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:20 \r\n\r\n12:26:53\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum Point\";s:10:\"ExifOffset\";i:266;}\r\n\r\ns:10:\"IFD1Offset\";i:914;s:13:\"SubIFDNumTags\";i:35;s:6:\"SubIFD\";a:36:{s:12:\"ExposureTime\";s:9:\"1/275 sec\";s:7:\"FNumber\";s:5:\"f \r\n\r\n6.1\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:64;s:11:\"ExifVersion\";s:11:\"version 2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:20 \r\n\r\n12:26:53\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:20 \r\n\r\n12:26:53\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 \r\n\r\nEV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:13:\"Multi-Segment\";s:11:\"LightSource\";s:15:\"Unknown or Auto\";s:5:\"Flash\";s:8:\"No \r\n\r\nFlash\";s:11:\"FocalLength\";s:6:\"7.5 mm\";s:9:\"MakerNote\";a:36:{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\r\n\r\n\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \r\n\r\n\0\";s:12:\"FlashSetting\";s:8:\"NORMAL \0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \r\n\r\n\0\";s:8:\"DataDump\";s:2540:\"\0\0\0\0\0\0\0\0\0\0\01.1\0\0\0\0\0\0\0a1\0\0\0\03þ\0\0\0m\0\0Ž\0\0 ï\0\0 \0\04\0k\0Ó\0@=?\0\0\0\0\0\0\0\0\0\0\r\n\r\n(6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(N*Ìš\0\0\0\0\0\0\0\0\0@ `j\0d\'+$/â\"\"\"\"ÿôÿµÿæÿÁÝå\0\0à~û,\0„ô0S\0R\0\0P\0\0T\0\0J\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0Ý\r\n\r\n\0\0\0 \0\0å\0 \0 \0\0%\0\0\0Ô%\0 ÝÔ\0¸ì\0\0N ÔÝ\0€¥µ¢zP-ïž( #\r\r± ê ª\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0wwwwF C‡\0\nü\0\0\0d\0\'\0\0\ngÔš„’!\0\0\0 \0\0+\0\0\0\0\0\0Ã;\0È\r\n\r\n\0ëm= \r\01\0\0\0Þ@\0Þ@\0Þ@ød\0\r?\00 \r(\0\0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¥µ¢zP-ïž\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\0?\0O\0d\0\0\0\04¶\0\0-¼\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0ÞMO\0ÄP\0ÚS_Á®\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0îîîî\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0p\0p\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ\0å\0Þ\0ç\0â \0Ü\0¹\0ì\0Ñ\0ÕD\0å\0Þ\0ç\0â \r\n\r\n\0Ü\0¹\0ì\0Ñ\0ÕD\0ýA#\0Õ\0è\0·\0Ç\0¶\0¥\0ÿ\0ýP/\0F5\0ñ\0Â;\0¥\0Ä\0—\0¥ A<3!<1\0ÀÌ\0æ\0â\0¦\0Ú\0Ð\r\n\r\n\0²5\0é04)2#5\0þà\0ã\0Û\0Â\0ß\0Ç\0Ó7\0æ7681<;\0ðF\0ã\0ä\0Ö\0Þ\0Â\0Ç0\0Ö17/ 7.\0Þ\0á2=\0Ý\0Ò7\0ß6F\0÷\r\n\r\n\r7\0à0\0Ü78\0ä41\0Ý6<\0Ú\0û.)K1\0æO\0à6$\0ï\0á\0ì\r\'PM\0ñP\0ã\0Þ5E\0Ö\0ã\0ç 12X C\0Ù\r\n\r\n\0Û)\0Ç \0õ\0Å\0ÿ\0ú\0êS6B\0×\0ç\0½\0Ë\0È\0í\0Ì\0ì\0í\0ð\0æ\0â\0èC\0Ô\0Ý\0Ñ\0¼\0ß\0ç\0±\0ë\0ì\0ð\0è\0Ã\0Ñ\0Ý\0Þ\0ß\0Ø\0Ä\0Ò\0Ú\r\n\r\n\0ê\0ã\0ð\0î\0é\0ë\0¡\0½\0Ð\0Ø\0ó\0î\0Ú\r\n\r\n\0ÁFMRH1=M2UJ>E<VO\'FMRH1=M2UJ>E<VO\'IE@D\'DX<C;:4UE1@B9?B J\r\n\r\n(EI<=DY>>@@B>I\0äURAJ@LAOA>C6<?O\r\n\r\n\0âPTBTHC;JE=9<8:J1WQARF>CMA=CED:G3@WA=\"88V<6JLH:ILFO=DMB5P=5FODKOK\r\n\r\nL;7GS;AQ?C8?A4IDQK4:M<OOD3EJR;MMDIA3UFLPKA@PIWFTVI6IUBJCP;ILJ?VUW\r\n\r\nXEIVK*LIGEMRhWUVTHE@GHOPLJLVLXWTUC;HDNYSH\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \r\n\r\n \0 \0\";s:12:\"unknown:0021\";s:106:\"\0@ð\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \r\n\r\n\0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 \r\n\r\nm\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \r\n\r\n\0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \r\n\r\n\0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \r\n\r\n\0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \r\n\r\n \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \r\n\r\n\0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}\r\n\r\ns:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \r\n\r\n \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:11:\"1280 \r\n\r\npixels\";s:15:\"ExifImageHeight\";s:10:\"960 pixels\";s:26:\"ExifInteroperabilityOffset\";i:1008;s:10:\"FileSource\";s:20:\"Digital Still \r\n\r\nCamera\";s:9:\"SceneType\";s:21:\"Directly \r\n\r\nPhotographed\";s:14:\"CustomerRender\";i:0;s:12:\"ExposureMode\";i:0;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s:12:\"unknown:a405\";i:35;s:16:\"S\r\n\r\nceneCaptureMode\";i:0;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:0;s:10:\"Saturation\";i:0;s:9:\"Sharpness\";i:0;s:12:\"unknown:a40c\";i:0;}\r\n\r\ns:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:8692;s:15:\"JpegIFByteCount\";i:6203;}\r\n\r\ns:26:\"InteroperabilityIFDNumTags\";i:2;s:19:\"InteroperabilityIFD\";a:2:\r\n\r\n{s:21:\"InteroperabilityIndex\";s:4:\"R98\0\";s:23:\"InteroperabilityVersion\";s:9:\"version 1\";}}'), ('albums/Rotterdam_Reunion_2008/DSCN0081.JPG','a:19:\r\n\r\n{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"Vali\r\n\r\ndAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:39493;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:11;s:4:\"IFD0\";a:11:\r\n\r\n{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX \r\n\r\nP5100\0\";s:11:\"Orientation\";s:14:\"Normal (O deg)\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:20 \r\n\r\n12:34:35\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum Point\";s:10:\"ExifOffset\";i:266;}\r\n\r\ns:10:\"IFD1Offset\";i:914;s:13:\"SubIFDNumTags\";i:35;s:6:\"SubIFD\";a:36:{s:12:\"ExposureTime\";s:9:\"1/142 sec\";s:7:\"FNumber\";s:5:\"f \r\n\r\n3.8\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:64;s:11:\"ExifVersion\";s:11:\"version 2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:20 \r\n\r\n12:34:35\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:20 \r\n\r\n12:34:35\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 \r\n\r\nEV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:13:\"Multi-Segment\";s:11:\"LightSource\";s:15:\"Unknown or Auto\";s:5:\"Flash\";s:8:\"No \r\n\r\nFlash\";s:11:\"FocalLength\";s:6:\"7.5 mm\";s:9:\"MakerNote\";a:36:{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\r\n\r\n\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \r\n\r\n\0\";s:12:\"FlashSetting\";s:8:\"NORMAL \0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \r\n\r\n\0\";s:8:\"DataDump\";s:2540:\"\0\0\0\0\0\0\0\0\0\0\01.1\0\0\0\0\0\0\0a1\0\0E\0\0^\0\0§\0\0ê\0\0 z\0\0\0\0Š\0k\0Ó\0@&\r\n\r\n(\0\0\0\0\0\0\0\0\0\0,’\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 ,ª&Ê`\0\0\0\0\0\0\0\0\0J\0\0 \0di)_3¼\"\"\"\"ÿôÿµÿæÿÁäæ\0\0à~û,\0O\\ô0S\r\n\r\n\0R\0\0P\0\0T\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0ä\0\0\0 \0\0æ\0 \0 \0\0$\0\0\0Ô$\0äÔ\0·\r\n\r\n\0\0*Ôä\0€þnÇüÄné‡ìÀ8C놏\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0wwww\0óE\0äAj\0Dn\0\0d\0\0\0\06YýO\r\n\r\n•\0\0\0\0/\0\0+\0\0\0\0\0Ã;\0¯\0ëmL/0\06\0$R$G$G\"³\0\0@\0\01\0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþnÇüÄnégé\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÿ\r\n\r\n\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\0(\0O\0d\0\0\0\04\0\0Î\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌWW\0Ù;\0ÂAO<î½ á\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0îîîî\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0\0p\0p\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ \' /8#7&  \' \r\n\r\n/8#7& \0÷ \0ü\0\0ÿ\Z!> \0þ$ (\0õ\0ô!\0ÿ\r \0ý\n\0ÿU?\0\0î\0ü\0ò\r\n\r\n\0ö3%3E(=1 \0ö\0õ\0ñ\0­\0«2-OJ8.Vb\0(\0É\0ä\0˜8$\0œC[\0í0\0²\0Ì\0\" &\0Ë\0ó\0“\0ï\0é\0›$\0’\0ì\0­\r\n\r\n\0¼\0é\0µ5-\0á%\0–\0¸\0Å\0¥\0È\0Ê\0Ÿ\0«\0°\0¸\0Ö\0ªI:\0ò\0½\0¹\0¹\0ž\0»\0Ç\0™\0\0¥\0©\0²\0¯G:\0ö\0¦\0Á\0Ÿ\0’\0“\0Ÿ\0š\0¤\0ß\0á\0É\r\n\r\n\0³>@,\0š\0Ó\0Î\0œ\0Û \0\0°\0û\0ý\0¿\0¶:<\0ò/\0à\0î\0Ê\0“\0ã\0ß\0‚\0®\0ø\0ó\0Î\0¶5#\0ó#\0s\0ñ\0n\0–\0Ê\0{\0‰\0®\0ß\0÷\0Ù\0´ /\0ü \r\n\r\n\0k\0ð\0¥\0\0Å\0Æ\0š\0¥\0•\0ÂTWUM^ELYU`b_[UW;TWUM^ELYU`b_[UW;OWRS`OHYMZ\r\n\r\n[V^C^M=cONLEL[HSLLUJQFTRIWURKRYFUX?Mc$\0ùAA&VQZW?ML@SL\r\n\r\n\0ýO@4Z:bf9ST<RVLJLF6&R4YU1WA?C>C;J?4F<2?5.F:CJ<>FHB8C<0>=/::B=7C.\r\n\r\nJK*I4)>7=;6>8?K;CG8@S%LQ3BroF@M?JJ=L|*^Œ,>šœ??M0LjJo*I66—™@B#\r\n\r\n(M!QMa%If-=s‘;?:\nM0fKI,PG4?88A9\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \0 \r\n\r\n \0\";s:12:\"unknown:0021\";s:106:\"\0@ð\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\n\r\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \r\n\r\n\0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 \r\n\r\nm\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \r\n\r\n\0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \r\n\r\n\0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \r\n\r\n\0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \r\n\r\n \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \r\n\r\n\0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}\r\n\r\ns:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \r\n\r\n \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:11:\"1280 \r\n\r\npixels\";s:15:\"ExifImageHeight\";s:10:\"960 pixels\";s:26:\"ExifInteroperabilityOffset\";i:1008;s:10:\"FileSource\";s:20:\"Digital Still \r\n\r\nCamera\";s:9:\"SceneType\";s:21:\"Directly \r\n\r\nPhotographed\";s:14:\"CustomerRender\";i:0;s:12:\"ExposureMode\";i:0;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s:12:\"unknown:a405\";i:35;s:16:\"S\r\n\r\nceneCaptureMode\";i:0;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:0;s:10:\"Saturation\";i:0;s:9:\"Sharpness\";i:0;s:12:\"unknown:a40c\";i:0;}\r\n\r\ns:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per \r\n\r\nResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:8692;s:15:\"JpegIFByteCount\";i:6266;}\r\n\r\ns:26:\"InteroperabilityIFDNumTags\";i:2;s:19:\"InteroperabilityIFD\";a:2:\r\n\r\n{s:21:\"InteroperabilityIndex\";s:4:\"R98\0\";s:23:\"InteroperabilityVersion\";s:9:\"version 1\";}}'); /*!40000 ALTER TABLE `cpg14x_exif` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_favpics` -- DROP TABLE IF EXISTS `cpg14x_favpics`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_favpics` ( `user_id` int(11) NOT NULL DEFAULT 0, `user_favpics` text NOT NULL, PRIMARY KEY (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Stores the server side favourites'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_favpics` -- LOCK TABLES `cpg14x_favpics` WRITE; /*!40000 ALTER TABLE `cpg14x_favpics` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_favpics` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_filetypes` -- DROP TABLE IF EXISTS `cpg14x_filetypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_filetypes` ( `extension` varchar(7) NOT NULL DEFAULT '', `mime` varchar(30) DEFAULT NULL, `content` varchar(15) DEFAULT NULL, `player` varchar(5) DEFAULT NULL, PRIMARY KEY (`extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Used to store the file extensions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_filetypes` -- LOCK TABLES `cpg14x_filetypes` WRITE; /*!40000 ALTER TABLE `cpg14x_filetypes` DISABLE KEYS */; INSERT INTO `cpg14x_filetypes` VALUES ('jpg','image/jpg','image',''), ('jpeg','image/jpeg','image',''), ('jpe','image/jpe','image',''), ('gif','image/gif','image',''), ('png','image/png','image',''), ('bmp','image/bmp','image',''), ('jpc','image/jpc','image',''), ('jp2','image/jp2','image',''), ('jpx','image/jpx','image',''), ('jb2','image/jb2','image',''), ('swc','image/swc','image',''), ('iff','image/iff','image',''), ('asf','video/x-ms-asf','movie','WMP'), ('asx','video/x-ms-asx','movie','WMP'), ('mpg','video/mpeg','movie','WMP'), ('mpeg','video/mpeg','movie','WMP'), ('wmv','video/x-ms-wmv','movie','WMP'), ('swf','application/x-shockwave-flash','movie','SWF'), ('avi','video/avi','movie','WMP'), ('mov','video/quicktime','movie','QT'), ('mp3','audio/mpeg3','audio','WMP'), ('midi','audio/midi','audio','WMP'), ('mid','audio/midi','audio','WMP'), ('wma','audio/x-ms-wma','audio','WMP'), ('wav','audio/wav','audio','WMP'), ('ogg','audio/ogg','audio',''), ('psd','image/psd','image',''), ('ram','audio/x-pn-realaudio','document','RMP'), ('ra','audio/x-realaudio','document','RMP'), ('rm','audio/x-realmedia','document','RMP'), ('tiff','image/tiff','document',''), ('tif','image/tif','document',''), ('doc','application/msword','document',''), ('txt','text/plain','document',''), ('rtf','text/richtext','document',''), ('pdf','application/pdf','document',''), ('xls','application/excel','document',''), ('pps','application/powerpoint','document',''), ('ppt','application/powerpoint','document',''), ('zip','application/zip','document',''), ('rar','application/rar','document',''), ('gz','application/gz','document',''), ('mdb','application/msaccess','document',''); /*!40000 ALTER TABLE `cpg14x_filetypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_hit_stats` -- DROP TABLE IF EXISTS `cpg14x_hit_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_hit_stats` ( `sid` int(11) NOT NULL AUTO_INCREMENT, `pid` varchar(100) NOT NULL DEFAULT '', `ip` varchar(20) NOT NULL DEFAULT '', `search_phrase` varchar(255) NOT NULL DEFAULT '', `sdate` bigint(20) NOT NULL DEFAULT 0, `referer` text NOT NULL, `browser` varchar(255) NOT NULL DEFAULT '', `os` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`sid`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Detailed stats about hits, only used when enabled'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_hit_stats` -- LOCK TABLES `cpg14x_hit_stats` WRITE; /*!40000 ALTER TABLE `cpg14x_hit_stats` DISABLE KEYS */; INSERT INTO `cpg14x_hit_stats` VALUES (1,'41','193.80.57.6','',1254849148,'http%3A%2F%2Fmygallery.mamweb.at%2Fthumbnails.php%3Falbum%3D1%26page%3D3','Unknown','Windows XP'), (2,'34','193.80.57.6','',1254849160,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D26','Unknown','Windows XP'), (3,'36','193.80.57.6','',1254849162,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D27','Unknown','Windows XP'), (4,'40','193.80.57.6','',1254849165,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D28','Unknown','Windows XP'), (5,'6','193.80.57.6','',1254849167,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D29','Unknown','Windows XP'), (6,'33','193.80.57.6','',1254849169,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D30','Unknown','Windows XP'), (7,'38','193.80.57.6','',1254849171,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D31','Unknown','Windows XP'), (8,'32','193.80.57.6','',1254849176,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D32','Unknown','Windows XP'); /*!40000 ALTER TABLE `cpg14x_hit_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_pictures` -- DROP TABLE IF EXISTS `cpg14x_pictures`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_pictures` ( `pid` int(11) NOT NULL AUTO_INCREMENT, `aid` int(11) NOT NULL DEFAULT 0, `filepath` varchar(255) NOT NULL DEFAULT '', `filename` varchar(255) NOT NULL DEFAULT '', `filesize` int(11) NOT NULL DEFAULT 0, `total_filesize` int(11) NOT NULL DEFAULT 0, `pwidth` smallint(6) NOT NULL DEFAULT 0, `pheight` smallint(6) NOT NULL DEFAULT 0, `hits` int(10) NOT NULL DEFAULT 0, `mtime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ctime` int(11) NOT NULL DEFAULT 0, `owner_id` int(11) NOT NULL DEFAULT 0, `owner_name` varchar(40) NOT NULL DEFAULT '', `pic_rating` int(11) NOT NULL DEFAULT 0, `votes` int(11) NOT NULL DEFAULT 0, `title` varchar(255) NOT NULL DEFAULT '', `caption` text NOT NULL, `keywords` varchar(255) NOT NULL DEFAULT '', `approved` enum('YES','NO') NOT NULL DEFAULT 'NO', `galleryicon` int(11) NOT NULL DEFAULT 0, `user1` varchar(255) NOT NULL DEFAULT '', `user2` varchar(255) NOT NULL DEFAULT '', `user3` varchar(255) NOT NULL DEFAULT '', `user4` varchar(255) NOT NULL DEFAULT '', `url_prefix` tinyint(4) NOT NULL DEFAULT 0, `pic_raw_ip` tinytext DEFAULT NULL, `pic_hdr_ip` tinytext DEFAULT NULL, `lasthit_ip` tinytext DEFAULT NULL, `position` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`pid`), KEY `owner_id` (`owner_id`), KEY `pic_hits` (`hits`), KEY `pic_rate` (`pic_rating`), KEY `aid_approved` (`aid`,`approved`), KEY `pic_aid` (`aid`), FULLTEXT KEY `search` (`title`,`caption`,`keywords`,`filename`) ) ENGINE=MyISAM AUTO_INCREMENT=78 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Used to store data about individual pics'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_pictures` -- LOCK TABLES `cpg14x_pictures` WRITE; /*!40000 ALTER TABLE `cpg14x_pictures` DISABLE KEYS */; INSERT INTO `cpg14x_pictures` VALUES (1,1,'Rotterdam_Reunion_2008/','DSCN0016.JPG',192780,211269,960,1280,0,'0000-00-00 00:00:00',1230411032,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (2,1,'Rotterdam_Reunion_2008/','DSCN0048.JPG',243004,271003,960,1280,0,'0000-00-00 00:00:00',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (3,1,'Rotterdam_Reunion_2008/','DSCN0037.JPG',279478,305508,1280,960,0,'0000-00-00 00:00:00',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (4,1,'Rotterdam_Reunion_2008/','DSCN0044.JPG',278219,307747,1280,960,0,'0000-00-00 00:00:00',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (5,1,'Rotterdam_Reunion_2008/','DSCN0041.JPG',275908,301078,1280,960,0,'0000-00-00 00:00:00',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (6,1,'Rotterdam_Reunion_2008/','DSCN0073.JPG',267653,287651,1280,960,1,'2009-10-06 19:12:47',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0), (7,1,'Rotterdam_Reunion_2008/','DSCN0046.JPG',277067,308017,1280,960,0,'0000-00-00 00:00:00',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (8,1,'Rotterdam_Reunion_2008/','DSCN0129.JPG',272491,291056,1280,960,0,'0000-00-00 00:00:00',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (9,1,'Rotterdam_Reunion_2008/','DSCN0142.JPG',289935,311930,1280,960,0,'0000-00-00 00:00:00',1230411217,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (10,1,'Rotterdam_Reunion_2008/','DSCN0012.JPG',231271,255856,1280,960,0,'0000-00-00 00:00:00',1230411220,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (11,1,'Rotterdam_Reunion_2008/','DSCN0020.JPG',220101,246252,960,1280,0,'0000-00-00 00:00:00',1230411221,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (12,1,'Rotterdam_Reunion_2008/','DSCN0021.JPG',280810,303750,1280,960,0,'0000-00-00 00:00:00',1230411221,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (13,1,'Rotterdam_Reunion_2008/','DSCN0026.JPG',272523,305079,1280,960,0,'0000-00-00 00:00:00',1230411222,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (14,1,'Rotterdam_Reunion_2008/','DSCN0017.JPG',280196,302976,1280,960,0,'0000-00-00 00:00:00',1230411222,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (15,1,'Rotterdam_Reunion_2008/','DSCN0022.JPG',240802,264903,960,1280,0,'0000-00-00 00:00:00',1230411223,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (16,1,'Rotterdam_Reunion_2008/','DSCN0027.JPG',288940,317741,1280,960,0,'0000-00-00 00:00:00',1230411223,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (17,1,'Rotterdam_Reunion_2008/','DSCN0030.JPG',263251,283499,1280,960,0,'0000-00-00 00:00:00',1230411224,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (18,1,'Rotterdam_Reunion_2008/','DSCN0025.JPG',263841,290137,1280,960,0,'0000-00-00 00:00:00',1230411224,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (19,1,'Rotterdam_Reunion_2008/','DSCN0028.JPG',259415,285210,1280,960,0,'0000-00-00 00:00:00',1230411224,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (20,1,'Rotterdam_Reunion_2008/','DSCN0033.JPG',239479,269042,960,1280,0,'0000-00-00 00:00:00',1230411225,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (21,1,'Rotterdam_Reunion_2008/','DSCN0031.JPG',250327,278997,960,1280,0,'0000-00-00 00:00:00',1230411226,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (22,1,'Rotterdam_Reunion_2008/','DSCN0034.JPG',245192,277319,960,1280,0,'0000-00-00 00:00:00',1230411226,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (23,1,'Rotterdam_Reunion_2008/','DSCN0036.JPG',274718,303542,1280,960,0,'0000-00-00 00:00:00',1230411227,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (24,1,'Rotterdam_Reunion_2008/','DSCN0055.JPG',262255,286461,1280,960,0,'0000-00-00 00:00:00',1230411227,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (25,1,'Rotterdam_Reunion_2008/','DSCN0050.JPG',276218,303226,1280,960,0,'0000-00-00 00:00:00',1230411227,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (26,1,'Rotterdam_Reunion_2008/','DSCN0107.JPG',249532,265706,1280,960,0,'0000-00-00 00:00:00',1230413928,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (27,1,'Rotterdam_Reunion_2008/','DSCN0136.JPG',296996,321423,1280,960,0,'0000-00-00 00:00:00',1230413945,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (28,1,'Rotterdam_Reunion_2008/','DSCN0085.JPG',303437,337461,1280,960,0,'0000-00-00 00:00:00',1230413945,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (29,1,'Rotterdam_Reunion_2008/','DSCN0122.JPG',234549,254428,960,1280,0,'0000-00-00 00:00:00',1230413945,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (30,1,'Rotterdam_Reunion_2008/','DSCN0056.JPG',268043,270907,1280,960,0,'0000-00-00 00:00:00',1230413999,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (31,1,'Rotterdam_Reunion_2008/','DSCN0057.JPG',270226,300579,1280,960,0,'0000-00-00 00:00:00',1230414001,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (32,1,'Rotterdam_Reunion_2008/','DSCN0081.JPG',274663,278540,1280,960,1,'2009-10-06 19:12:56',1230414002,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0), (33,1,'Rotterdam_Reunion_2008/','DSCN0075.JPG',189364,206735,960,1280,1,'2009-10-06 19:12:49',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0), (34,1,'Rotterdam_Reunion_2008/','DSCN0066.JPG',250553,279548,960,1280,1,'2009-10-06 19:12:40',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0), (35,1,'Rotterdam_Reunion_2008/','DSCN0060.JPG',273125,309994,1280,960,0,'0000-00-00 00:00:00',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (36,1,'Rotterdam_Reunion_2008/','DSCN0067.JPG',229928,251776,960,1280,1,'2009-10-06 19:12:42',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0), (37,1,'Rotterdam_Reunion_2008/','DSCN0061.JPG',254545,277639,1280,960,0,'0000-00-00 00:00:00',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (38,1,'Rotterdam_Reunion_2008/','DSCN0080.JPG',279774,315923,1280,960,1,'2009-10-06 19:12:51',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0), (39,1,'Rotterdam_Reunion_2008/','DSCN0082.JPG',277475,281191,1280,960,0,'0000-00-00 00:00:00',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (40,1,'Rotterdam_Reunion_2008/','DSCN0071.JPG',222709,244606,960,1280,1,'2009-10-06 19:12:45',1230414004,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0), (41,1,'Rotterdam_Reunion_2008/','DSCN0064.JPG',222975,241938,1280,960,1,'2009-10-06 19:12:28',1230414004,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0), (42,1,'Rotterdam_Reunion_2008/','DSCN0091.JPG',231106,233815,1280,960,0,'0000-00-00 00:00:00',1230414005,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (43,1,'Rotterdam_Reunion_2008/','DSCN0083.JPG',287782,290780,1280,960,0,'0000-00-00 00:00:00',1230414005,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (44,1,'Rotterdam_Reunion_2008/','DSCN0089.JPG',277897,281665,1280,960,0,'0000-00-00 00:00:00',1230414005,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (45,1,'Rotterdam_Reunion_2008/','DSCN0087.JPG',232370,256878,960,1280,0,'0000-00-00 00:00:00',1230414005,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (46,1,'Rotterdam_Reunion_2008/','DSCN0088.JPG',246581,271247,960,1280,0,'0000-00-00 00:00:00',1230414005,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (47,1,'Rotterdam_Reunion_2008/','DSCN0086.JPG',290255,320933,1280,960,0,'0000-00-00 00:00:00',1230414005,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (48,1,'Rotterdam_Reunion_2008/','DSCN0094.JPG',275181,298054,1280,960,0,'0000-00-00 00:00:00',1230414006,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (49,1,'Rotterdam_Reunion_2008/','DSCN0093.JPG',282508,323172,1280,960,0,'0000-00-00 00:00:00',1230414006,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (50,1,'Rotterdam_Reunion_2008/','DSCN0090.JPG',286350,322036,1280,960,0,'0000-00-00 00:00:00',1230414007,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (51,1,'Rotterdam_Reunion_2008/','DSCN0095.JPG',259612,283490,1280,960,0,'0000-00-00 00:00:00',1230414008,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (52,1,'Rotterdam_Reunion_2008/','DSCN0108.JPG',292705,326989,1280,960,0,'0000-00-00 00:00:00',1230414009,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (53,1,'Rotterdam_Reunion_2008/','DSCN0099.JPG',285591,316700,1280,960,0,'0000-00-00 00:00:00',1230414009,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (54,1,'Rotterdam_Reunion_2008/','DSCN0098.JPG',194013,208434,960,1280,0,'0000-00-00 00:00:00',1230414010,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (55,1,'Rotterdam_Reunion_2008/','DSCN0109.JPG',242718,266975,1280,960,0,'0000-00-00 00:00:00',1230414011,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (56,1,'Rotterdam_Reunion_2008/','DSCN0105.JPG',263273,282018,1280,960,0,'0000-00-00 00:00:00',1230414011,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (57,1,'Rotterdam_Reunion_2008/','DSCN0097.JPG',291110,315042,1280,960,0,'0000-00-00 00:00:00',1230414011,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (58,1,'Rotterdam_Reunion_2008/','DSCN0096.JPG',253305,279885,960,1280,0,'0000-00-00 00:00:00',1230414011,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (59,1,'Rotterdam_Reunion_2008/','DSCN0110.JPG',253272,277391,1280,960,0,'0000-00-00 00:00:00',1230414011,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (60,1,'Rotterdam_Reunion_2008/','DSCN0111.JPG',275173,299110,1280,960,0,'0000-00-00 00:00:00',1230414013,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (61,1,'Rotterdam_Reunion_2008/','DSCN0113.JPG',312650,341662,1280,960,0,'0000-00-00 00:00:00',1230414013,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (62,1,'Rotterdam_Reunion_2008/','DSCN0112.JPG',286461,312187,1280,960,0,'0000-00-00 00:00:00',1230414013,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (63,1,'Rotterdam_Reunion_2008/','DSCN0116.JPG',251229,278902,960,1280,0,'0000-00-00 00:00:00',1230414013,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (64,1,'Rotterdam_Reunion_2008/','DSCN0115.JPG',299865,327115,1280,960,0,'0000-00-00 00:00:00',1230414015,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (65,1,'Rotterdam_Reunion_2008/','DSCN0118.JPG',282407,313082,1280,960,0,'0000-00-00 00:00:00',1230414015,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (66,1,'Rotterdam_Reunion_2008/','DSCN0117.JPG',230885,252163,1280,960,0,'0000-00-00 00:00:00',1230414015,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (67,1,'Rotterdam_Reunion_2008/','DSCN0125.JPG',239248,265209,960,1280,0,'0000-00-00 00:00:00',1230414015,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (68,1,'Rotterdam_Reunion_2008/','DSCN0124.JPG',217857,234190,960,1280,0,'0000-00-00 00:00:00',1230414015,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (69,1,'Rotterdam_Reunion_2008/','DSCN0131.JPG',298188,300567,1280,960,0,'0000-00-00 00:00:00',1230414016,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (70,1,'Rotterdam_Reunion_2008/','DSCN0126.JPG',260516,292208,960,1280,0,'0000-00-00 00:00:00',1230414016,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (71,1,'Rotterdam_Reunion_2008/','DSCN0119.JPG',293978,326735,1280,960,0,'0000-00-00 00:00:00',1230414016,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (72,1,'Rotterdam_Reunion_2008/','DSCN0130.JPG',266303,286248,1280,960,0,'0000-00-00 00:00:00',1230414016,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (73,1,'Rotterdam_Reunion_2008/','DSCN0127.JPG',227880,239868,1280,960,0,'0000-00-00 00:00:00',1230414016,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (74,1,'Rotterdam_Reunion_2008/','DSCN0128.JPG',277131,298560,1280,960,0,'0000-00-00 00:00:00',1230414016,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (75,1,'Rotterdam_Reunion_2008/','DSCN0132.JPG',294438,319511,1280,960,0,'0000-00-00 00:00:00',1230414017,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (76,1,'Rotterdam_Reunion_2008/','DSCN0138.JPG',297253,318239,1280,960,0,'0000-00-00 00:00:00',1230414017,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0), (77,1,'Rotterdam_Reunion_2008/','DSCN0133.JPG',307196,326536,1280,960,0,'0000-00-00 00:00:00',1230414018,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0); /*!40000 ALTER TABLE `cpg14x_pictures` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_plugins` -- DROP TABLE IF EXISTS `cpg14x_plugins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_plugins` ( `plugin_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL DEFAULT '', `path` varchar(128) NOT NULL DEFAULT '', `priority` int(10) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`plugin_id`), UNIQUE KEY `name` (`name`), UNIQUE KEY `path` (`path`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Stores the plugins'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_plugins` -- LOCK TABLES `cpg14x_plugins` WRITE; /*!40000 ALTER TABLE `cpg14x_plugins` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_plugins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_sessions` -- DROP TABLE IF EXISTS `cpg14x_sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_sessions` ( `session_id` varchar(40) NOT NULL DEFAULT '', `user_id` int(11) DEFAULT 0, `time` int(11) DEFAULT NULL, `remember` int(1) DEFAULT 0, PRIMARY KEY (`session_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Used to store sessions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_sessions` -- LOCK TABLES `cpg14x_sessions` WRITE; /*!40000 ALTER TABLE `cpg14x_sessions` DISABLE KEYS */; INSERT INTO `cpg14x_sessions` VALUES ('6a8caca1ae5141c87ed6d18859d17096',0,1254850064,0); /*!40000 ALTER TABLE `cpg14x_sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_temp_data` -- DROP TABLE IF EXISTS `cpg14x_temp_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_temp_data` ( `unique_ID` varchar(8) NOT NULL DEFAULT '', `encoded_string` blob NOT NULL, `timestamp` int(11) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`unique_ID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Holds temporary file data for multiple file uploads'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_temp_data` -- LOCK TABLES `cpg14x_temp_data` WRITE; /*!40000 ALTER TABLE `cpg14x_temp_data` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_temp_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_usergroups` -- DROP TABLE IF EXISTS `cpg14x_usergroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_usergroups` ( `group_id` int(11) NOT NULL AUTO_INCREMENT, `group_name` varchar(255) NOT NULL DEFAULT '', `group_quota` int(11) NOT NULL DEFAULT 0, `has_admin_access` tinyint(4) NOT NULL DEFAULT 0, `can_rate_pictures` tinyint(4) NOT NULL DEFAULT 0, `can_send_ecards` tinyint(4) NOT NULL DEFAULT 0, `can_post_comments` tinyint(4) NOT NULL DEFAULT 0, `can_upload_pictures` tinyint(4) NOT NULL DEFAULT 0, `can_create_albums` tinyint(4) NOT NULL DEFAULT 0, `pub_upl_need_approval` tinyint(4) NOT NULL DEFAULT 1, `priv_upl_need_approval` tinyint(4) NOT NULL DEFAULT 1, `upload_form_config` tinyint(4) NOT NULL DEFAULT 3, `custom_user_upload` tinyint(4) NOT NULL DEFAULT 0, `num_file_upload` tinyint(4) NOT NULL DEFAULT 5, `num_URI_upload` tinyint(4) NOT NULL DEFAULT 3, PRIMARY KEY (`group_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Used to store user groups'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_usergroups` -- LOCK TABLES `cpg14x_usergroups` WRITE; /*!40000 ALTER TABLE `cpg14x_usergroups` DISABLE KEYS */; INSERT INTO `cpg14x_usergroups` VALUES (1,'Administrators',0,1,1,1,1,1,1,0,0,3,0,5,3), (2,'Registered',1024,0,1,1,1,1,1,1,0,3,0,5,3), (3,'Guests',0,0,1,0,0,0,0,1,1,0,0,5,3), (4,'Banned',0,0,0,0,0,0,0,1,1,0,0,5,3); /*!40000 ALTER TABLE `cpg14x_usergroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_users` -- DROP TABLE IF EXISTS `cpg14x_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_users` ( `user_id` int(11) NOT NULL AUTO_INCREMENT, `user_group` int(11) NOT NULL DEFAULT 2, `user_active` enum('YES','NO') NOT NULL DEFAULT 'NO', `user_name` varchar(25) NOT NULL DEFAULT '', `user_password` varchar(40) NOT NULL DEFAULT '', `user_lastvisit` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_regdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_group_list` varchar(255) NOT NULL DEFAULT '', `user_email` varchar(255) NOT NULL DEFAULT '', `user_profile1` varchar(255) NOT NULL DEFAULT '', `user_profile2` varchar(255) NOT NULL DEFAULT '', `user_profile3` varchar(255) NOT NULL DEFAULT '', `user_profile4` varchar(255) NOT NULL DEFAULT '', `user_profile5` varchar(255) NOT NULL DEFAULT '', `user_profile6` text NOT NULL, `user_actkey` varchar(32) NOT NULL DEFAULT '', PRIMARY KEY (`user_id`), UNIQUE KEY `user_name` (`user_name`) ) ENGINE=MyISAM AUTO_INCREMENT=68 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Used to store users, not used when bridged'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_users` -- LOCK TABLES `cpg14x_users` WRITE; /*!40000 ALTER TABLE `cpg14x_users` DISABLE KEYS */; INSERT INTO `cpg14x_users` VALUES (1,1,'YES','admin','5a9361b28ee51795f1e82d9054919034','2008-12-28 09:05:24','2008-12-27 21:40:38','','mam@heimam.at','Vienna','','www.mamweb.at','Systems Engineer','','',''), (2,2,'YES','mam','5a9361b28ee51795f1e82d9054919034','2009-10-06 19:12:02','2008-12-27 22:04:32','','mam@heimam.at','Vienna','','www.mamweb.at','','','',''), (3,2,'YES','karin','d4946f9c99d961c10dd8db4c0b91aa33','0000-00-00 00:00:00','2008-12-27 22:05:04','','','','','','','','',''), (4,2,'YES','catarina','a904adf1911e772becd62cf072a37b94','0000-00-00 00:00:00','2008-12-27 22:05:36','','','','','','','','',''), (5,2,'YES','gerold','aacd8fc0b356d81797c994075694f398','0000-00-00 00:00:00','2008-12-27 22:05:47','','','','','','','','',''), (6,2,'YES','konstantin','7053e538d5e8e038e5a91235f6a335f3','0000-00-00 00:00:00','2008-12-27 22:05:56','','','','','','','','',''), (7,2,'YES','igor','426fcc01c635e7642b0df22e5b5e1880','0000-00-00 00:00:00','2008-12-27 22:06:12','','','','','','','','',''), (8,2,'YES','erica','abaecf8ca3f98dc13eeecbac263cd3ed','0000-00-00 00:00:00','2008-12-27 22:07:55','','','','','','','','',''), (9,2,'YES','roman','3ce806e27698b430c1d5a4a07790b2da','0000-00-00 00:00:00','2008-12-27 22:08:06','','','','','','','','',''), (10,2,'YES','smita','2a6571da26602a67be14ea8c5ab82349','0000-00-00 00:00:00','2008-12-27 22:08:15','','','','','','','','',''), (11,2,'YES','gael','3cb8d12d60cbcfa37fbc606ed8c88b00','0000-00-00 00:00:00','2008-12-27 22:08:25','','','','','','','','',''), (12,2,'YES','alexandra','ea34e980776660c55815059cb8015f59','0000-00-00 00:00:00','2008-12-27 22:08:53','','','','','','','','',''), (13,2,'YES','annelaure','78d6810e1299959f3a8db157045aa926','0000-00-00 00:00:00','2008-12-27 22:09:12','','','','','','','','',''), (14,2,'YES','beatriz','4c6aa22ff0ca8ef5faf7abe3e9716bdf','0000-00-00 00:00:00','2008-12-27 22:09:30','','','','','','','','',''), (15,2,'YES','elisa','5dc1ce281a339e6ebe5156199993b452','0000-00-00 00:00:00','2008-12-27 22:10:01','','','','','','','','',''), (16,2,'YES','frida','37ae07b72ac788774102660b5dd1fc93','0000-00-00 00:00:00','2008-12-27 22:10:23','','','','','','','','',''), (17,2,'YES','gloria','e438d4969c839b982c4fcd32e7e97d45','0000-00-00 00:00:00','2008-12-27 22:10:39','','','','','','','','',''), (18,2,'YES','gunnar','9ec7be155e47ef11a200ee078c29ee00','0000-00-00 00:00:00','2008-12-27 22:10:51','','','','','','','','',''), (19,2,'YES','jennica','3ee36693d570e7ea575f9dd2e5fb447d','0000-00-00 00:00:00','2008-12-27 22:11:17','','','','','','','','',''), (20,2,'YES','joaquin','0b4a7db11aaab6d963f000655d26bf3f','0000-00-00 00:00:00','2008-12-27 22:11:49','','','','','','','','',''), (21,2,'YES','tuire','026cc06e42ab066abcdc498a1700639b','0000-00-00 00:00:00','2008-12-27 22:12:56','','','','','','','','',''), (22,2,'YES','viviane','abd3f2d29a532038e8db84f5c44dc414','0000-00-00 00:00:00','2008-12-27 22:13:41','','','','','','','','',''), (23,2,'YES','virena','cc3493321322a56361602755a75346bb','0000-00-00 00:00:00','2008-12-27 22:13:57','','','','','','','','',''), (24,2,'YES','vera','daa4cddf5f67fb3c3ce7bad115438b59','0000-00-00 00:00:00','2008-12-27 22:14:20','','','','','','','','',''), (25,2,'YES','sebastian','e1401e10c85fb88bbf0bef8911c414cf','0000-00-00 00:00:00','2008-12-27 22:14:38','','','','','','','','',''), (26,2,'YES','sann','5d9e5f27b6ea8fb6f6cea630802793e1','0000-00-00 00:00:00','2008-12-27 22:14:51','','','','','','','','',''), (27,2,'YES','rupa','37b9f8362a97361b252890c49c479966','0000-00-00 00:00:00','2008-12-27 22:15:08','','','','','','','','',''), (28,2,'YES','robertw','307770c2e1d461fd4befbb8a3ef0d43d','0000-00-00 00:00:00','2008-12-27 22:15:27','','','','','','','','',''), (29,2,'YES','robertb','40b786ed28d33859ff7b7198d1fc362a','0000-00-00 00:00:00','2008-12-27 22:15:47','','','','','','','','',''), (30,2,'YES','regine','c5fb70fd266a2bf3b452b93b9a2fd956','0000-00-00 00:00:00','2008-12-27 22:16:20','','','','','','','','',''), (31,2,'YES','quentin','c76b1aec604e87039ca3050a374a0fd0','0000-00-00 00:00:00','2008-12-27 22:16:40','','','','','','','','',''), (32,2,'YES','piia','123b6b946288027f23a08144742bf5a3','0000-00-00 00:00:00','2008-12-27 22:16:56','','','','','','','','',''), (33,2,'YES','pehr','c24dcdcfb596bb65b3838902caec19d9','0000-00-00 00:00:00','2008-12-27 22:17:08','','','','','','','','',''), (34,2,'YES','pau','c73a0790189a86fc02742513fda312e2','0000-00-00 00:00:00','2008-12-27 22:17:22','','','','','','','','',''), (35,2,'YES','nathalie','908563cabd95885ff63516e8a3155625','0000-00-00 00:00:00','2008-12-27 22:17:35','','','','','','','','',''), (36,2,'YES','mika','236e0e89a521b843522bcedd8a52ed1a','0000-00-00 00:00:00','2008-12-27 22:17:49','','','','','','','','',''), (37,2,'YES','miguel','4b998d19fbd8b56dc128fcde446ae2f3','0000-00-00 00:00:00','2008-12-27 22:18:27','','','','','','','','',''), (38,2,'YES','michael','7d3a7ccd2ff276c8d047696d64297b2b','0000-00-00 00:00:00','2008-12-27 22:18:45','','','','','','','','',''), (39,2,'YES','marylene','51c2183525406e4fba5411fa5bd91ba8','0000-00-00 00:00:00','2008-12-27 22:18:58','','','','','','','','',''), (40,2,'YES','martinf','0a8e3638e3c0deb4e5e49c72286a5b83','0000-00-00 00:00:00','2008-12-27 22:19:17','','','','','','','','',''), (41,2,'YES','martinb','1608857b7041dda436214dbb0f2966b7','0000-00-00 00:00:00','2008-12-27 22:19:31','','','','','','','','',''), (42,2,'YES','markusw','f9ca3873fac8d32b652041c53c2d02a1','0000-00-00 00:00:00','2008-12-27 22:19:43','','','','','','','','',''), (43,2,'YES','markuss','f2333d74c32c0b2fb70165c93706cd9d','0000-00-00 00:00:00','2008-12-27 22:19:56','','','','','','','','',''), (44,2,'YES','marion','05290bfa958f1ea1f56871a2697712b1','0000-00-00 00:00:00','2008-12-27 22:20:14','','','','','','','','',''), (45,2,'YES','mariajose','10c8d7f5b408913a41f7969ea9e997e1','0000-00-00 00:00:00','2008-12-27 22:20:47','','','','','','','','',''), (46,2,'YES','margherita','2aff60ee2c4494a846e320090e70fbd5','0000-00-00 00:00:00','2008-12-27 22:21:01','','','','','','','','',''), (47,2,'YES','marco','55b7e8b895d047537e672250dd781555','0000-00-00 00:00:00','2008-12-27 22:21:22','','','','','','','','',''), (48,2,'YES','marc','7c8d66b98e508bcd782288188103d108','0000-00-00 00:00:00','2008-12-27 22:21:32','','','','','','','','',''), (49,2,'YES','lucia','d7180fd20069768f3de9cbec6300c7eb','0000-00-00 00:00:00','2008-12-27 22:21:49','','','','','','','','',''), (50,2,'YES','katja','ca5048cea74e8bc0f329c08c2164cab5','0000-00-00 00:00:00','2008-12-27 22:22:01','','','','','','','','',''), (51,2,'YES','kajsa','6040035e7cc8ce1413ae7f2f80d9fec4','0000-00-00 00:00:00','2008-12-27 22:22:14','','','','','','','','',''), (52,2,'YES','jim','2c94281ca7bd540c256040e51923278d','0000-00-00 00:00:00','2008-12-27 22:22:50','','','','','','','','',''), (53,2,'YES','ian','829a56cc8ffa56209e3a10b80d0bbdf8','0000-00-00 00:00:00','2008-12-27 22:24:35','','','','','','','','',''), (54,2,'YES','hannes','23ba6002aa3583a61db26e957b1fbe43','0000-00-00 00:00:00','2008-12-27 22:24:47','','','','','','','','',''), (55,2,'YES','guy','c571f11c190f4c056c3488245fc85b71','0000-00-00 00:00:00','2008-12-27 22:24:57','','','','','','','','',''), (56,2,'YES','erlend','c492d854ee830951a9c60db4b8ae3ee0','0000-00-00 00:00:00','2008-12-27 22:25:16','','','','','','','','',''), (57,2,'YES','giuliano','446d167844c9a718d3a7ac03e8f66b98','0000-00-00 00:00:00','2008-12-27 22:26:58','','','','','','','','',''), (58,2,'YES','dagmar','07f1bb6707346b37c32cfddd969e1bcd','0000-00-00 00:00:00','2008-12-27 22:27:11','','','','','','','','',''), (59,2,'YES','cristina','e7513c8ca3026a54fbc0dd65a9445dc0','0000-00-00 00:00:00','2008-12-27 22:27:36','','','','','','','','',''), (60,2,'YES','caroline','fc11351a8293ab0751cb7fa4f7e70d84','0000-00-00 00:00:00','2008-12-27 22:27:50','','','','','','','','',''), (61,2,'YES','dan','1e9c32b7ba6fefa76773d5c79bcdaad0','0000-00-00 00:00:00','2008-12-27 22:28:15','','','','','','','','',''), (62,2,'YES','christine','279c0c0926955e8edad9fe888c816745','0000-00-00 00:00:00','2008-12-27 22:28:50','','','','','','','','',''), (63,2,'YES','anne','0e77708dcceac08503460f4db8b2a645','0000-00-00 00:00:00','2008-12-27 22:29:12','','','','','','','','',''), (64,2,'YES','ulf','bff00032b1c67ad82f523d76638a94b1','0000-00-00 00:00:00','2008-12-27 22:29:28','','','','','','','','',''), (65,2,'YES','bettina','532619426cbaad17a4ca84c5de51c0a7','0000-00-00 00:00:00','2008-12-27 22:29:39','','','','','','','','',''), (66,2,'YES','emma','f97bfbdb32325f0e3e867bea04af98ba','0000-00-00 00:00:00','2008-12-27 22:31:58','','','','','','','','',''), (67,2,'YES','filipa','a9873b581b9153e77de0dc7486a5cd35','0000-00-00 00:00:00','2008-12-27 22:32:06','','','','','','','','',''); /*!40000 ALTER TABLE `cpg14x_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_vote_stats` -- DROP TABLE IF EXISTS `cpg14x_vote_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_vote_stats` ( `sid` int(11) NOT NULL AUTO_INCREMENT, `pid` varchar(100) NOT NULL DEFAULT '', `rating` smallint(6) NOT NULL DEFAULT 0, `ip` varchar(20) NOT NULL DEFAULT '', `sdate` bigint(20) NOT NULL DEFAULT 0, `referer` text NOT NULL, `browser` varchar(255) NOT NULL DEFAULT '', `os` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`sid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Detailed stats about votes, only used when enabled'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_vote_stats` -- LOCK TABLES `cpg14x_vote_stats` WRITE; /*!40000 ALTER TABLE `cpg14x_vote_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_vote_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_votes` -- DROP TABLE IF EXISTS `cpg14x_votes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_votes` ( `pic_id` mediumint(9) NOT NULL DEFAULT 0, `user_md5_id` varchar(32) NOT NULL DEFAULT '', `vote_time` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`pic_id`,`user_md5_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Stores votes for individual pics'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_votes` -- LOCK TABLES `cpg14x_votes` WRITE; /*!40000 ALTER TABLE `cpg14x_votes` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_votes` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `dvddb_moviedb` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `dvddb_moviedb` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */; USE `dvddb_moviedb`; -- -- Table structure for table `config` -- DROP TABLE IF EXISTS `config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `config` ( `item` varchar(255) DEFAULT NULL, `value` varchar(255) DEFAULT NULL, `comments` varchar(255) DEFAULT NULL, `visible` tinyint(1) DEFAULT 1 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `config` -- LOCK TABLES `config` WRITE; /*!40000 ALTER TABLE `config` DISABLE KEYS */; INSERT INTO `config` VALUES ('sitename','mam\'s movieDB','',1), ('webmaster','mam@heimam.at','',1), ('home','http://moviedb.mamweb.at/index.html','No trailing slash on the URL',1), ('approvalemail','mam@heimam.at','Address to which new user requests are sent',1), ('siteemail','mam@heimam.at','Address from which site emails are sent',1), ('lowdate','1900','Lowest date for date dropdowns',1), ('defregion','2','Default region for new DVDs',1), ('showall','1','Enable show all link on movie list page',1), ('numperpage','10','Number of results per page',1), ('version','0.6','Database version - Do not change this',0), ('graphwidth','600','Width of stats graphs, in pixels',1), ('dateformat','%W %D %M, %Y','Format used to display date fields. See the mysql docs for more options.',1), ('defmedia','1','Default media type. See table edit for values',1), ('yearwindow','100','Number of years back to display on stats page. Will be rounded down to the nearest decade',1), ('theme','indusiv','Layout theme. See themes to change this setting',0), ('commentchars','365','Number of characters of comment to display on list DVD page',1), ('movcolumns','2047','Columns to display on list movies page.',0), ('mysqlversion','4.0','Mysql version',0), ('allowadminedit','1','Allow admin to edit all movies in the system, regardless of owner.',1), ('movienav','3','Show movie navigation at top/bottom or both. Bitmask value. 1=top, 2=bottom, 3=both',1); /*!40000 ALTER TABLE `config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `country` -- DROP TABLE IF EXISTS `country`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `country` ( `code` char(2) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', KEY `code` (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `country` -- LOCK TABLES `country` WRITE; /*!40000 ALTER TABLE `country` DISABLE KEYS */; INSERT INTO `country` VALUES ('AT','Austria'), ('EU','other (Europe)'); /*!40000 ALTER TABLE `country` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `genre` -- DROP TABLE IF EXISTS `genre`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `genre` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `genre` -- LOCK TABLES `genre` WRITE; /*!40000 ALTER TABLE `genre` DISABLE KEYS */; INSERT INTO `genre` VALUES (1,'Science Fiction'), (2,'Drama'), (3,'Horror'), (4,'Action'), (5,'Comedy'), (6,'Non Fiction'), (7,'Western'), (8,'Film Noir'), (9,'Musical'), (22,'Thriller'), (11,'Adventure'), (12,'Animation'), (13,'Anime'), (14,'Fantasy'), (15,'Mystery'), (16,'Romance'), (17,'War'), (21,'Music Videos'); /*!40000 ALTER TABLE `genre` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `loan` -- DROP TABLE IF EXISTS `loan`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `loan` ( `id` int(11) NOT NULL AUTO_INCREMENT, `movieid` int(11) NOT NULL DEFAULT 0, `userid` int(11) NOT NULL DEFAULT 0, `loanee` varchar(255) DEFAULT NULL, `loaneeemail` varchar(255) DEFAULT NULL, `loandate` date NOT NULL DEFAULT '0000-00-00', PRIMARY KEY (`id`), KEY `dvdid` (`movieid`), KEY `userid` (`userid`), KEY `movieid` (`movieid`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `loan` -- LOCK TABLES `loan` WRITE; /*!40000 ALTER TABLE `loan` DISABLE KEYS */; /*!40000 ALTER TABLE `loan` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media` -- DROP TABLE IF EXISTS `media`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `media` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(32) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media` -- LOCK TABLES `media` WRITE; /*!40000 ALTER TABLE `media` DISABLE KEYS */; INSERT INTO `media` VALUES (1,'DVD'), (2,'VHS'); /*!40000 ALTER TABLE `media` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `movie` -- DROP TABLE IF EXISTS `movie`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `movie` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userid` int(11) NOT NULL DEFAULT 0, `title` varchar(255) NOT NULL DEFAULT '', `reldate` year(4) NOT NULL DEFAULT 0000, `comments` text DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT 0, `genreid` varchar(255) NOT NULL DEFAULT '', `region` int(11) DEFAULT NULL, `insertdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `runtime` int(11) DEFAULT NULL, `mediaid` int(11) NOT NULL DEFAULT 0, `director` varchar(255) DEFAULT NULL, `author` varchar(255) DEFAULT NULL, `sound` varchar(255) DEFAULT NULL, `video` varchar(255) DEFAULT NULL, `extra` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `userid` (`userid`), KEY `genreid` (`genreid`), KEY `region` (`region`), KEY `insertdate` (`insertdate`), FULLTEXT KEY `title` (`title`), FULLTEXT KEY `director` (`director`), FULLTEXT KEY `sound` (`sound`), FULLTEXT KEY `comments` (`comments`), FULLTEXT KEY `extra` (`extra`), FULLTEXT KEY `author` (`author`) ) ENGINE=MyISAM AUTO_INCREMENT=275 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `movie` -- LOCK TABLES `movie` WRITE; /*!40000 ALTER TABLE `movie` DISABLE KEYS */; INSERT INTO `movie` VALUES (1,1,'About a Boy - oder: Der Tag der toten Ente [OT: About a Boy]',2002,'1. Writing credits (WGA):\r\n\r\n\r\nNick Hornby (novel)\r\nPeter Hedges, Chris Weitz, Paul Weitz (screenplay)\r\n\r\n2. Cast (in credits order) complete, awaiting verification:\r\n\r\n\r\nHugh Grant .... Will \r\nToni Collette .... Fiona \r\nNicholas Hoult .... Marcus \r\nRachel Weisz .... Rachel \r\nSharon Small .... \r\n\r\nChristine \r\nMadison Cook .... Imogen \r\nJordan Cook .... Imogen \r\nNicholas Hutchison .... John \r\nRyan Speechley .... Barney \r\nJoseph \r\n\r\nSpeechley .... Barney \r\nNat Gastiain Tena .... Ellie \r\nLaura Kennington .... Ellie\'s Friend \r\nTanika Swaby .... Ellie\'s Friend \r\nPeter \r\n\r\nMcNicholl .... Ellie\'s Friend \r\nChristopher Webster .... Ellie\'s Friend \r\nBen Ridgeway .... Lee, The Bully \r\nJack Warren .... Lee\'s \r\n\r\nSidekick \r\nRussell Barr .... Maitre D\' \r\nIsabel Brook .... Angie \r\nOrlando Thor Newman .... Angie\'s Kid \r\nPaulette Williams .... \r\n\r\nBitter Ex-Girlfriend \r\nFritha Goodey .... Bitter Ex-Girlfriend \r\nSusannah Doyle .... Bitter Ex-Girlfriend \r\nDelma Walsh .... Bitter Ex-\r\n\r\nGirlfriend \r\nJonathan Franklin .... Mark \r\nJohn Kamal .... Nicky \r\nTessa Vale .... Class Teacher \r\nLorna Dallison .... Woman in \r\n\r\nSupermarket \r\nBethany Muir .... Child in Supermarket \r\nBruce Alexander .... Husband in Supermarket \r\nJoyce Henderson .... Moira/SPAT \r\r\n\r\n\nJenny Galloway .... Frances/SPAT \r\nJanine Duvitski .... Caroline/SPAT \r\nSue Hyams .... Additional SPAT Woman \r\nMaggie Kahal .... \r\n\r\nAdditional SPAT Woman \r\nLynn Askew .... Additional SPAT Woman \r\nBeverly Milward .... Additional SPAT Woman \r\nDanielle Harvey .... \r\n\r\nAdditional SPAT Woman \r\nAnna Maria Credenzone Philip .... Additional SPAT Woman \r\nSarah King .... Additional SPAT Woman \r\nSusan Ghamsary \r\n\r\n.... Additional SPAT Woman \r\nEdna Johnson .... Additional SPAT Woman \r\nVictoria Smurfit .... Suzie \r\nFrog Stone .... Mothercare Shop \r\n\r\nAssistant \r\nBuddy Hunter .... Family Member in Mothercare Car Park \r\nKristine Perrin .... Family Member in Mothercare Car Park \r\nNathan \r\n\r\nPerrin-Hunter .... Family Member in Mothercare Car Park \r\nRachael Perrin-Hunter .... Family Member in Mothercare Car Park \r\nAmy Craven .... \r\n\r\nSuzie\'s Baby Morgan \r\nRebecca Craven .... Suzie\'s Baby Megan \r\nSydney Livingstone .... Park Keeper (as Sidney Livingstone) \r\nCathy Murphy \r\n\r\n.... Nurse \r\nJoanne Petitt .... Hairdresser \r\nJason Salkey .... Tom/Amnesty International Worker \r\nAnnabelle Apsion .... Amnesty \r\n\r\nInternational Worker \r\nMatt Wilkinson .... Amnesty International Worker \r\nPeter Roy .... Will\'s Dad \r\nMatthew Thomas .... Candy Thrower \r\n\r\n\r\nAaron Keeling .... Candy Thrower \r\nScott Charles .... Candy Thrower \r\nClaire Harman .... Skechers Shopgirl \r\nSian Martin .... Cute \r\n\r\nWaitress \r\nMark Drewry .... Clive \r\nDenise Stephenson .... Lindsey \r\nRosalind Knight .... Lindsey\'s Mum \r\nMurray Lachlan Young .... New \r\n\r\nYear\'s Eve Party Guest \r\nAugustus Prew .... Ali \r\nAlex Kew .... Simon Cosgrove \r\nMark Heap .... Maths Teacher \r\nSunanda Biswas .... Def \r\n\r\nPenalty Kru \r\nJames Marshall-Gunn .... Def Penalty Kru \r\nJamie Mayer .... Def Penalty Kru \r\nKorede Obashju .... Def Penalty Kru \r\nRoger \r\n\r\nBrierley .... Mr. Chalmers, The MC \r\nSteffan Pejic .... Apple Thrower \r\nrest of cast listed alphabetically \r\nChris Tarrant .... Himself \r\n\r\n(uncredited) \r\nCarol Vorderman .... Herself (uncredited) \r\nRichard Whiteley .... Himself (uncredited) \r\n\r\n3. Original Music by:\r\nDamon \r\n\r\nGough (Badly Drawn Boy) (songs) (cited as Gough) \r\n \r\n4. Non-Original Music by:\r\nBono (song \"Zoo Station\") (as Hewson) \r\nAdam Clayton \r\n\r\n(song \"Zoo Station\") (as Clayton) \r\nJosé Feliciano (song \"Feliz Navidad\") (as Feliciano) \r\nCharles Fox (song \"Killing Me Softly with His \r\n\r\nSong\") (as Fox) \r\nChad Hugo (song \"Shake Ya Ass\") (as Hugo) \r\nLarry Mullen Jr. (song \"Zoo Station\") (as Mullen) \r\nMystikal (song \"Shake \r\n\r\nYa Ass\") (as Tyler) \r\nThe Edge (song \"Zoo Station\") (as Evans) \r\nPaul Williams (song \"Rainy Days And Mondays\") \r\nPharrell Williams \r\n\r\n(song \"Shake Ya Ass\") (as Williams)',0,'5',2,'2004-09-18 20:01:34',97,1,'Chris & Paul Weitz','Nick Hornby (novel) / Peter Hedges, Chris \r\n\r\nWeitz, Paul Weitz (screenplay)','Damon Gough (Badly Drawn Boy)','PAL - Anamorph Widescreen (2,35:1)','Audio: German (5.1), English (5.1) - \r\n\r\nSubtitles: German, English, Hebrew'), (2,1,'Alles über meine Mutter [OT: Todo sobra mi madre]',1999,'1. Writing credits:\r\nPedro Almodóvar \r\n\r\n2. Cast (in credits order) \r\n\r\nverified as complete:\r\nCecilia Roth .... Manuela Coleman Echevarría \r\nMarisa Paredes .... Huma Rojo \r\nCandela Peña .... Nina Cruz \r\r\n\r\n\nAntonia San Juan .... Agrado \r\nPenélope Cruz .... Sister María Rosa Sanz \r\nRosa María Sardà .... Rosa\'s Mother (as Rosa María Sardá) \r\r\n\r\n\nFernando Fernán Gómez .... Rosa\'s Father \r\nFernando Guillén .... Doctor in \'Streetcar Named Desire\' \r\nToni Cantó .... Lola \r\nEloy \r\n\r\nAzorín .... Esteban Coleman Echevarría \r\nCarlos Lozano .... Mario \r\nManuel Morón .... Doctor 1 \r\nJosé Luis Torrijo .... Doctor 2 \r\nJuan \r\n\r\nJosé Otegui .... Ginecólogo \r\nCarmen Balagué \r\nMalena Gutiérrez .... Malena \r\nYael Barnatán .... Yael (as Yael Bernatán) \r\nCarmen \r\n\r\nFortuny .... Carmen \r\nPatxi Freytez .... Farmacéutico/Boticarian \r\nJuan Márquez \r\nMichel Ruben \r\nDaniel Lanchas \r\nRosa Manaut \r\n\r\n\r\nCarlos García Cambero (as Carlos G. Cambero) \r\nAgustín Almodóvar \r\nPaz Sufrategui \r\nLola García \r\nEsther García \r\nInmaculada \r\n\r\nSubira \r\nrest of cast listed alphabetically \r\nPedro Almodóvar .... Voice saying \'Eva al desnudo\' (voice) (uncredited) \r\nCayetana Guillén \r\n\r\nCuervo .... Mamen (uncredited) \r\nFito Páez .... Espectador (uncredited) \r\nLluís Pascual .... (uncredited) \r\n\r\n3. Original Music by :\r\r\n\r\n\nAlberto Iglesias',0,'2',2,'2004-09-18 20:30:47',97,1,'Pedro Almodóvar','Pedro Almodóvar','Alberto Iglesias','PAL - Anamorph Widescreen \r\n\r\n(2,35:1) [16:9]','Audio: German (5.1), Spanish (5.1) - Subtitles: German'), (3,1,'American Beauty [OT: American Beauty]',1999,'1. Writing credits (WGA):\r\nAlan Ball (written by)\r\n \r\n2. Cast (in credits order) \r\n\r\nverified as completed:\r\nKevin Spacey .... Lester Burnham \r\nAnnette Bening .... Carolyn Burnham \r\nThora Birch .... Jane Burnham \r\nWes \r\n\r\nBentley .... Ricky Fitts \r\nMena Suvari .... Angela Hayes \r\nChris Cooper .... Col. Frank Fitts, USMC \r\nPeter Gallagher .... Buddy Kane \r\r\n\r\n\nAllison Janney .... Barbara Fitts \r\nScott Bakula .... Jim Olmeyer \r\nSam Robards .... Jim Berkley \r\nBarry Del Sherman .... Brad Dupree \r\n\r\n\r\nAra Celi .... Sale House Woman #1 \r\nJohn Cho .... Sale House Man #1 \r\nFort Atkinson .... Sale House Man #2 \r\nSue Casey .... Sale House \r\n\r\nWoman #2 \r\nKent Faulcon .... Sale House Man #3 \r\nBrenda Wehle .... Sale House Woman #4 \r\nLisa Cloud .... Sale House Woman #5 \r\nAlison \r\n\r\nFaulk .... Spartanette #1 \r\nKrista Goodsitt .... Spartanette #2 \r\nLily Houtkin .... Spartanette #3 \r\nCarolina Lancaster .... Spartanette \r\n\r\n#4 \r\nRomana Leah .... Spartanette #5 \r\nChekeshka Van Putten .... Spartanette #6 (as Chekesa Van Putten) \r\nEmily Zachary .... Spartanette #7 \r\n\r\n\r\nNancy Anderson .... Spartanette #8 \r\nReshma Gajjar .... Spartanette #9 \r\nStephanie Rizzo .... Spartanette #10 \r\nHeather Joy Sher .... \r\n\r\nPlayground Girl #1 \r\nChelsea Hertford .... Playground Girl #2 \r\nAmber Smith .... Christy Kane \r\nJoel McCrary .... Catering Boss \r\nMarissa \r\n\r\nJaret Winokur .... Mr. Smiley\'s Counter Girl \r\nDennis Anderson .... Mr. Smiley\'s Manager \r\nMatthew Kimbrough .... Firing Range Attendant \r\n\r\n\r\nErin Cathryn Strubbe .... Young Jane Burnham \r\nrest of cast listed alphabetically \r\nElaine Corral Kendall .... Newscaster (uncredited) \r\r\n\r\n\n\r\n3. Original Music by:\r\nThomas Newman \r\n\r\n4. Non-Original Music by: \r\nRick Arbuckle (song \"Tenderfoot\") \r\nRandy Bachman (song \r\n\r\n\"American Woman\") \r\nIan Ball (song \"We Haven\'t Turned Around\") \r\nPaul Blackburn (song \"We Haven\'t Turned Around\") \r\nBetty Carter \r\n\r\n(song \"Open The Door\") \r\nBurton Cummings (song \"American Woman\") \r\nBobby Darin (song \"As Long As I\'m Singing\") \r\nBob Dylan (song \r\n\r\n\"All Along The Watchtower\") \r\nMark Everett (song \"Cancer For The Cure\") (as E) \r\nAndy Fraser (song \"All Right Now\") \r\nThomas Gray \r\n\r\n(song \"We Haven\'t Turned Around\") \r\nJim Kole (song \"American Woman\") (as Jim Kale) \r\nJohn Lennon (song \"Because\") \r\nBarry Mann (song \r\n\r\n\"On Broadway\") \r\nPaul McCartney (song \"Because\") \r\nBenjamin Ottewell (song \"We Haven\'t Turned Around\") \r\nOliver Peacock (song \"We \r\n\r\nHaven\'t Turned Around\") \r\nGary Peterson (song \"American Woman\") \r\nMickey Petralia (song \"Cancer For The Cure\") \r\nPaul Rodgers (song \r\n\r\n\"All Right Now\") \r\nRichard Rodgers (song \"Bali Ha\'i\") \r\nHilton Ruiz (song \"Something Grand\") \r\nMike Stoller (song \"On Broadway\") \r\n\r\n\r\nJule Styne (song \"Don\'t Rain On My Parade\") \r\nPete Townshend (song \"The Seeker\") \r\nJimmy Van Heusen (song \"Call Me Irresponsible\" \r\n\r\nfrom film \"Papa\'s Delicate Condition (1963)\") \r\nJimmy Van Heusen (song \"Where Love Has Gone\" from same title\'s film) \r\nBill Withers \r\n\r\n(song \"Use Me\") \r\nNeil Young (song \"Don\'t Let It Bring You Down\")',0,'2',2,'2004-09-18 20:37:54',117,1,'Sam Mendes','Alan Ball','Thomas Newman','PAL - Anamorph Widescreen (2,35:1)','Audio: German (5.1), English (5.1) - Subtitles: German, English (aurally handicapped)'), (4,1,'American History X [OT: American History X]',1998,'1. Writing credits (WGA):\r\nDavid McKenna (written by)\r\n\r\n2. Cast (in credits \r\n\r\norder) verified as complete:\r\nEdward Norton .... Derek Vinyard \r\nEdward Furlong .... Danny Vinyard \r\nBeverly D\'Angelo .... Doris Vinyard \r\n\r\n\r\nAvery Brooks .... Dr. Bob Sweeney \r\nJennifer Lien .... Davina Vinyard \r\nEthan Suplee .... Seth Ryan \r\nStacy Keach .... Cameron \r\n\r\nAlexander \r\nFairuza Balk .... Stacey \r\nElliott Gould .... Murray \r\nGuy Torry .... Lamont \r\nWilliam Russ .... Dennis Vinyard \r\nJoseph \r\n\r\nCortese .... Rasmussen (as Joe Cortese) \r\nJason Bose Smith .... Little Henry (as Jason Bose-Smith) \r\nAntonio David Lyons .... Lawrence \r\r\n\r\n\nAlex Sol .... Mitch McCormick \r\nKeram Malicki-Sánchez .... Chris (as Keram Malicki-Sanchez) \r\nGiuseppe Andrews .... Jason \r\nMichelle \r\n\r\nChristine White .... Lizzy \r\nJonathan Fowler Jr. .... Jerome \r\nChristopher Masterson .... Daryl Dawson (as Chris Masterson) \r\nNicholas R. \r\n\r\nOleson .... Huge Aryan \r\nJordan Marder .... Curtis \r\nPaul Le Mat .... McMahon \r\nThomas L. Bellissimo .... Cop #2 (as Tommy L. Bellissimo) \r\n\r\n\r\nCherish Lee .... Kammi \r\nSam Vlahos .... Dr. Aguilar \r\nTara Blanchard .... Ally Vinyard \r\nAnne Lambton .... Cassandra \r\nSteve \r\n\r\nWolford .... Reporter \r\nRichard Noyce .... Desk Sergeant \r\nDanso Gordon .... Buddy #1 \r\nJim Norton .... Randy \r\nDavid Basulto .... \r\n\r\nGuard \r\nAlexis Rose Coen .... Young Ally Vinyard \r\nKiante Elam .... Lawrence\'s Partner (as Kiant Elam) \r\nPaul Hopkins .... Student \r\r\n\r\n\nKeith Odett .... Random Skinhead \r\nPaul E. Short .... Stocky Buddy (as Paul Short) \r\nNigel Miguel .... Basketball Player \r\nrest of cast \r\n\r\nlisted alphabetically \r\nJennifer Campbell .... Blond Woman in Restaurant (scenes deleted) (uncredited) \r\nSydney \'Big Dawg\' Colston .... \r\n\r\nPrison Gang Leader (uncredited) \r\nRandy J. Goodwin .... Guy in Restaurant (scenes deleted) (uncredited) \r\nMaximillian Kesmodel .... Young \r\n\r\nDanny Vinyard (uncredited) \r\nAllie Moss .... Skinhead Girlfriend (uncredited) \r\nDenney Pierce .... Arresting Officer (uncredited) \r\nSam \r\n\r\nSarpong .... Jail Inmate (uncredited) \r\nMark Swanson .... Skinhead in Store (uncredited) \r\nSelwyn Ward .... High School Student Leaving \r\n\r\nBathroom (uncredited) \r\n\r\n3. Original Music by:\r\nAnne Dudley \r\n\r\n4. Non-Original Music by:\r\nWilliam Steffe (song \"Battle Hymn of \r\n\r\nthe Republic\") (uncredited)',0,'2',2,'2004-09-19 08:20:59',114,1,'Tony Kaye','David McKenna','Anne Dudley','PAL - Anamorph Widescreen \r\n\r\n(1,83:1) [16:9]','Audio: German (5.1), English (5.1) - Subtitles: German, English'), (5,1,'American Psycho [OT: American Psycho]',2000,'1. Writing credits (WGA):\r\nBret Easton Ellis (novel)\r\nMary Harron (screenplay) & \r\r\n\r\n\nGuinevere Turner (screenplay)\r\n \r\n2: Cast (in credits order) verified as complete:\r\nChristian Bale .... Patrick Bateman \r\nJustin \r\n\r\nTheroux .... Timothy Bryce \r\nJosh Lucas .... Craig McDermott \r\nBill Sage .... David Van Patten \r\nChloë Sevigny .... Jean \r\nReese \r\n\r\nWitherspoon .... Evelyn Williams \r\nSamantha Mathis .... Courtney Rawlinson \r\nMatt Ross .... Luis Carruthers \r\nJared Leto .... Paul Allen \r\n\r\n\r\nWillem Dafoe .... Donald Kimball \r\nCara Seymour .... Christie \r\nGuinevere Turner .... Elizabeth \r\nStephen Bogaert .... Harold Carnes \r\n\r\n\r\nMonika Meier .... Daisy \r\nReg E. Cathey .... Homeless Man \r\nBlair Williams .... Waiter #1 \r\nMarie Dame .... Victoria \r\nKelley Harron \r\n\r\n.... Bargirl \r\nPatricia Gage .... Mrs. Wolfe \r\nKrista Sutton .... Sabrina \r\nLandy Cannon .... Man at Pierce & Pierce \r\nPark Bench .... \r\n\r\nStash \r\nCatherine Black .... Vanden \r\nMargaret Ma .... Dry Cleaner Woman \r\nTufford Kennedy .... Hamilton \r\nMark Pawson .... Humphrey \r\n\r\nRhineback \r\nJessica Lau .... Facialist \r\nLilette Wiens .... Maitre Dí \r\nGlen Marc Silot .... Waiter \r\nCharlotte Hunter .... Libby \r\r\n\r\n\nKiki Buttignol .... Caron \r\nJoyce R. Korbin .... Woman at ATM (as Joyce Korbin) \r\nReuben Thompson .... Waiter #2 \r\nBryan Renfro .... \r\n\r\nNight Watchman \r\nRoss Gibby .... Man Outside Store \r\nChristina McKay .... Young Woman \r\nAlan McCullough .... Man in Stall (as Allan \r\n\r\nMcCullough) \r\nAnthony Lemke .... Marcus Halberstram \r\nConnie Chen .... Gwendolyn Ichiban \r\nrest of cast listed alphabetically \r\nRonald \r\n\r\nReagan .... Himself (speech on Iran-Contra scandal) (archive footage) (uncredited) \r\nSomaya Reece .... Bar Girl (uncredited) \r\n\r\n3. Original \r\n\r\nMusic by:\r\nJohn Cale',0,'22',2,'2004-09-19 08:21:17',97,1,'Mary Harron','Bret Easton Ellis (novel) / Mary Harron & Guinevere Turner \r\n\r\n(screenplay)','Original Music by: John Cale','PAL - Anamorph Widescreen (2,35:1) [16:9 - 4:3]','Audio: German (DTS, 5.1, 2.0), English (5.1, 2.0) \r\n\r\n- Subtitles: German'), (6,1,'Being John Malkovich [OT: Being John Malkovich]',1999,'1. Writing credits (WGA):\r\nCharlie Kaufman (written by)\r\n \r\n2. Cast (in \r\n\r\ncredits order) verified as complete:\r\nJohn Cusack .... Craig Schwartz \r\nCameron Diaz .... Lotte Schwartz \r\nNed Bellamy .... Derek Mantini \r\n\r\n\r\nEric Weinstein .... Father at Puppet Show \r\nMadison Lanc .... Daughter at Puppet Show \r\nOctavia Spencer .... Woman in Elevator (as \r\n\r\nOctavia L. Spencer) \r\nMary Kay Place .... Floris \r\nOrson Bean .... Dr. Lester \r\nCatherine Keener .... Maxine Lund \r\nK.K. Dodds .... \r\n\r\nWendy \r\nReginald C. Hayes .... Don (as Reggie Hayes) \r\nByrne Piven .... Captain Mertin \r\nJudith Wetzell .... Tiny Woman \r\nJohn Malkovich \r\n\r\n.... John Horatio Malkovich \r\nKevin Carroll .... Cab Driver \r\nWillie Garson .... Guy in Restaurant \r\nW. Earl Brown .... First J.M. Inc. \r\n\r\nCustomer \r\nCharlie Sheen .... Charlie \r\nGerald Emerick .... Sad Man in Line \r\nBill M. Ryusaki .... Mr. Hiroshi \r\nCarlos Jacott .... \r\n\r\nLarry the Agent \r\nJames Murray .... Student Puppeteer \r\nRichard Fancy .... Johnson Heyward \r\nPatti Tippo .... Malkovich\'s Mother \r\r\n\r\n\nDaniel Hansen .... Boy Malkovich \r\nGregory Sporleder .... Drunk at Bar \r\nMariah O\'Brien .... Girl Creeped Out by Malkovich \r\nKelly \r\n\r\nTeacher .... Emily \r\nJacqueline Benoît .... Lester\'s Friend (as Jacqueline Benoit) \r\nWilliam Buck .... Lester\'s Friend (as William N. Buck) \r\n\r\n\r\nChristine D. Coleman .... Lester\'s Friend \r\nJeanne Diehl .... Lester\'s Friend \r\nAudrey Gelfund .... Lester\'s Friend (as Audrey \r\n\r\nGelfand) \r\nYetta Ginsburg .... Lester\'s Friend \r\nSylvester Jenkins .... Lester\'s Friend \r\nRoy C. Johnson .... Lester\'s Friend \r\nEddie \r\n\r\nJ. Low .... Lester\'s Friend \r\nRalph W. Spaulding .... Lester\'s Friend \r\nDavid Wyler .... Lester\'s Friend \r\nFlori Wyler .... Lester\'s \r\n\r\nFriend \r\nKevin Lee .... Ballet Dancer \r\nMarlowe Bassett .... Ballet Dancer \r\nJennifer Canzoneri .... Ballet Dancer \r\nKristie Cordle .... \r\n\r\nBallet Dancer \r\nDenise Dabrowski .... Ballet Dancer \r\nKristin D\'Andrea .... Ballet Dancer \r\nCharlene Grimsley .... Ballet Dancer \r\r\n\r\n\nChristine Krejer .... Ballet Dancer \r\nErica Long .... Ballet Dancer \r\nYvonne Montelius .... Ballet Dancer \r\nJessica Neuberger .... \r\n\r\nBallet Dancer \r\nSara Rifkin .... Ballet Dancer \r\nElizabeth Rivera .... Ballet Dancer \r\nChelsa Sjostrom .... Ballet Dancer \r\nPamela Hayden \r\n\r\n.... Featured Character Voice (voice) \r\nJayne Hess .... Featured Character Voice (voice) \r\nMichelle Madden .... Featured Character Voice \r\n\r\n(voice) \r\nGreg O\'Neill .... Featured Character Voice (voice) \r\nNeil Ross .... Featured Character Voice (voice) \r\nBill Wittman .... \r\n\r\nFeatured Character Voice (voice) \r\nrest of cast listed alphabetically \r\nLance Bangs .... Locker Room Bully (uncredited) \r\nKacee DeMasi .... \r\n\r\nCab Driver (uncredited) \r\nAndy Dick .... Himself (archive footage) (uncredited) \r\nDavid Fincher .... Christopher Bing (uncredited) \r\nJester \r\n\r\nHairston .... Lester\'s Friend (uncredited) \r\nIsaac Hanson .... Himself at Awards Ceremony (archive footage) (uncredited) \r\nTaylor Hanson .... \r\n\r\n Himself (archive footage) (uncredited) \r\nZac Hanson .... Himself (archive footage) (uncredited) \r\nDustin Hoffman .... Willy Loman (archive \r\n\r\nfootage) (uncredited) \r\nVictor Isaac .... Student (uncredited) \r\nSpike Jonze .... Derek Mantini\'s Assistant for Emily Dickinson Puppet \r\n\r\n(uncredited) \r\nSean Penn .... Himself (uncredited) \r\nBrad Pitt .... Himself (uncredited) \r\nWinona Ryder .... Herself (archive footage) \r\n\r\n(uncredited) \r\nGary Sinise .... Stage Role (archive footage) (uncredited) \r\n\r\n3. Original Music by:\r\nBjörk (closing theme) \r\nCarter \r\n\r\nBurwell \r\n\r\n4. Non-Original Music by:\r\nBéla Bartók (from \"Music for Strings, Percussion & Celesta: Allegro\") \r\nElmer Bernstein (from \r\n\r\n\'To Kill a Mockingbird (1962)\') (uncredited)',0,'5',2,'2004-09-19 08:21:39',108,1,'Spike Jonze','Charlie Kaufman','Carter Burwell','PAL \r\n\r\n- Anamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1), English (5.1), French (5.1) - Subtitles: German, English, French, Dutch'), (7,1,'Bend It Like Beckham',2002,'1. Writing credits:\r\nGurinder Chadha \r\nPaul Mayeda Berges \r\nGuljit Bindra \r\n \r\n2. Cast (in \r\n\r\ncredits order) complete, awaiting verification:\r\nParminder Nagra .... Jesminder \'Jess\' Bhamra \r\nKeira Knightley .... Juliette \'Jules\' \r\n\r\nPaxton \r\nJonathan Rhys-Meyers .... Joe \r\nAnupam Kher .... Mr. Bhamra \r\nArchie Panjabi .... Pinky Bhamra \r\nShaznay Lewis .... Mel \r\r\n\r\n\nFrank Harper .... Alan Paxton \r\nJuliet Stevenson .... Paula Paxton \r\nShaheen Khan .... Mrs. Bhamra \r\nAmeet Chana .... Tony \r\nPooja \r\n\r\nShah .... Meena \r\nPaven Virk .... Bubbly \r\nPreeya Kalidas .... Monica \r\nTrey Farley .... Taz \r\nSaraj Chaudhry .... Sonny \r\nImran Ali \r\n\r\n.... Gary \r\nKulvinder Ghir .... Teetu \r\nHarvey Virdi .... Teetu\'s Mum \r\nAsh Varrez .... Teetu\'s Dad \r\nAdlyn Ross .... Elderly Aunt \r\n\r\n\r\nShobu Kapoor .... Polly \r\nZohra Sehgal .... Biji \r\nAhsen Bhatti .... Nairobi Grandson \r\nTanveer Ghani .... Video Man \r\nNina Wadia \r\n\r\n.... Wedding Guest \r\nOlivia Schofield .... Hounslow Harrier \r\nNatasha Lee .... Hounslow Harrier \r\nLouise Walker .... Hounslow Harrier \r\r\n\r\n\nJenni Birch .... Hounslow Harrier \r\nDanielle Richards .... Hounslow Harrier \r\nSuzanna Keeka .... Hounslow Harrier \r\nTanya Beverly .... \r\n\r\nHounslow Harrier \r\nSally Kirkbride .... Hounslow Harrier \r\nMaki Okumurakami .... Hounslow Harrier \r\nNav Bopari .... Hounslow Harrier \r\r\n\r\n\nGary Lineker .... Himself \r\nAlan Hansen .... Himself \r\nJohn Barnes .... Himself \r\nJohn Motson .... Himself (voice) \r\nrest of cast \r\n\r\nlisted alphabetically \r\nBrandi Chastain .... Herself (archive footage) \r\nMia Hamm .... Herself (archive footage) \r\nTiffeny Milbrett .... \r\n\r\nHerself (archive footage) \r\nDavid Beckham .... Himself (archive footage) (uncredited) \r\nGurinder Chadha .... Woman in park, wedding guest \r\n\r\n(uncredited) \r\nRyan Giggs .... Himself (archive footage) (uncredited) \r\nKatie Goldberg .... Player of Oposing Team (uncredited) \r\nAndy \r\n\r\nHarmer .... David Beckham (uncredited) \r\nBobby Jagdev .... Supporter of Opposing Team (uncredited) \r\nKristine Lily .... Herself (archive \r\n\r\nfootage) (uncredited) \r\nGary Neville .... Himself (archive footage) (uncredited) \r\nGill Penny .... Victoria Beckham (uncredited) \r\nPaul \r\n\r\nScholes .... Himself (archive footage) (uncredited) \r\n\r\n3. Original Music by:\r\nCraig Pruess \r\nBally Sagoo (songs) \r\n \r\n4. Non-\r\n\r\nOriginal Music by:\r\nGregg Alexander (song \"Inner Smile\") \r\nVictoria Beckham (song \"IOU\") \r\nCurtis Mayfield (song \"Move On Up\") \r\r\n\r\n\nJohn McElhone (song \"Inner Smile\") \r\nRick Nowels (song \"Inner Smile\") \r\nGiacomo Puccini (\"Nessun dorma\" from opera \"Turandot\") \r\r\n\r\n\nSharleen Spiteri (song \"Inner Smile\")',0,'5',2,'2004-09-19 08:22:01',112,1,'Gurinder Chadha','Gurinder Chadha, Paul Mayeda Berges & \r\n\r\nGuljit Bindra','Craig Pruess','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: English (5.1) - Subtitles: English, English (aurally \r\n\r\nhandicapped)'), (8,1,'Kick It Like Beckham [OT: Bend It Like Beckham]',2002,'1. Writing credits:\r\nGurinder Chadha \r\nPaul Mayeda Berges \r\nGuljit Bindra \r\n\r\n \r\n \r\n2. Cast (in credits order) complete, awaiting verification:\r\nParminder Nagra .... Jesminder \'Jess\' Bhamra \r\nKeira Knightley .... \r\n\r\nJuliette \'Jules\' Paxton \r\nJonathan Rhys-Meyers .... Joe \r\nAnupam Kher .... Mr. Bhamra \r\nArchie Panjabi .... Pinky Bhamra \r\nShaznay \r\n\r\nLewis .... Mel \r\nFrank Harper .... Alan Paxton \r\nJuliet Stevenson .... Paula Paxton \r\nShaheen Khan .... Mrs. Bhamra \r\nAmeet Chana .... \r\n\r\nTony \r\nPooja Shah .... Meena \r\nPaven Virk .... Bubbly \r\nPreeya Kalidas .... Monica \r\nTrey Farley .... Taz \r\nSaraj Chaudhry .... Sonny \r\n\r\n\r\nImran Ali .... Gary \r\nKulvinder Ghir .... Teetu \r\nHarvey Virdi .... Teetu\'s Mum \r\nAsh Varrez .... Teetu\'s Dad \r\nAdlyn Ross .... \r\n\r\nElderly Aunt \r\nShobu Kapoor .... Polly \r\nZohra Sehgal .... Biji \r\nAhsen Bhatti .... Nairobi Grandson \r\nTanveer Ghani .... Video Man \r\r\n\r\n\nNina Wadia .... Wedding Guest \r\nOlivia Schofield .... Hounslow Harrier \r\nNatasha Lee .... Hounslow Harrier \r\nLouise Walker .... Hounslow \r\n\r\nHarrier \r\nJenni Birch .... Hounslow Harrier \r\nDanielle Richards .... Hounslow Harrier \r\nSuzanna Keeka .... Hounslow Harrier \r\nTanya \r\n\r\nBeverly .... Hounslow Harrier \r\nSally Kirkbride .... Hounslow Harrier \r\nMaki Okumurakami .... Hounslow Harrier \r\nNav Bopari .... Hounslow \r\n\r\nHarrier \r\nGary Lineker .... Himself \r\nAlan Hansen .... Himself \r\nJohn Barnes .... Himself \r\nJohn Motson .... Himself (voice) \r\nrest of \r\n\r\ncast listed alphabetically \r\nBrandi Chastain .... Herself (archive footage) \r\nMia Hamm .... Herself (archive footage) \r\nTiffeny Milbrett \r\n\r\n.... Herself (archive footage) \r\nDavid Beckham .... Himself (archive footage) (uncredited) \r\nGurinder Chadha .... Woman in park, wedding \r\n\r\nguest (uncredited) \r\nRyan Giggs .... Himself (archive footage) (uncredited) \r\nKatie Goldberg .... Player of Oposing Team (uncredited) \r\nAndy \r\n\r\nHarmer .... David Beckham (uncredited) \r\nBobby Jagdev .... Supporter of Opposing Team (uncredited) \r\nKristine Lily .... Herself (archive \r\n\r\nfootage) (uncredited) \r\nGary Neville .... Himself (archive footage) (uncredited) \r\nGill Penny .... Victoria Beckham (uncredited) \r\nPaul \r\n\r\nScholes .... Himself (archive footage) (uncredited) \r\n\r\n3. Original Music by:\r\nCraig Pruess \r\nBally Sagoo (songs) \r\n \r\n4. Non-\r\n\r\nOriginal Music by:\r\nGregg Alexander (song \"Inner Smile\") \r\nVictoria Beckham (song \"IOU\") \r\nCurtis Mayfield (song \"Move On Up\") \r\r\n\r\n\nJohn McElhone (song \"Inner Smile\") \r\nRick Nowels (song \"Inner Smile\") \r\nGiacomo Puccini (\"Nessun dorma\" from opera \"Turandot\") \r\r\n\r\n\nSharleen Spiteri (song \"Inner Smile\")',0,'5',2,'2004-09-19 08:22:17',112,1,'Gurinder Chadha','Gurinder Chadha, Paul Mayeda Berges & \r\n\r\nGuljit Bindra','Craig Pruess','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1), English (5.1) - Subtitles: German'), (9,1,'Blair Witch Project [OT: The Blair Witch Project]',1999,'1. Writing credits:\r\nDaniel Myrick & \r\nEduardo Sánchez (as Eduardo \r\n\r\nSanchez)\r\n\r\n2. Cast (in credits order) complete, awaiting verification:\r\nHeather Donahue .... Heather Donahue \r\nJoshua Leonard .... Joshua \r\n\r\n\'Josh\' Leonard \r\nMichael C. Williams .... Michael \'Mike\' Williams (as Michael Williams) \r\nBob Griffin .... Short Fisherman \r\nJim King \r\n\r\n.... Interviewee \r\nSandra Sánchez .... Waitress (as Sandra Sanchez) \r\nEd Swanson .... Fisherman With Glasses \r\nPatricia DeCou .... Mary \r\n\r\nBrown \r\nMark Mason .... Man in Yellow Hat \r\nJackie Hallex .... Interviewee with Child \r\n\r\n3. Original Music by:\r\nTony Cora',0,'22',2,'2004-09-19 08:22:42',78,1,'Daniel Myrick & Eduardo Sánchez','Daniel Myrick & Eduardo Sánchez','Tony Cora','PAL - 4:3','Audio: German (5.1), \r\n\r\nEnglish (DS)'), (10,1,'Blueprint',2003,'1. Writing credits (in alphabetical order):\r\nClaus Cornelius Fischer (screenplay) \r\nCharlotte Kerner (novel) \r\r\n\r\n\n\r\n2. Cast (in credits order):\r\nFranka Potente .... Iris Sellin/Siri Sellin \r\nUlrich Thomsen .... Dr. Martin Fisher \r\nHilmir Snær \r\n\r\nGuðnason .... Greg (as Hilmir Snaer Gudnason) \r\nKatja Studt .... Daniela Hausmann \r\nJustus von Dohnanyi .... Thomas Weber (as Justus von \r\n\r\nDohnányi) \r\nWanja Mues .... Janeck Hausmann \r\nOle Puppe .... Kristian \r\nRita Leska .... Woman in store \r\nNina Gummich .... Siri (8 years \r\n\r\nold) \r\nKaroline Teska .... Siri (13 years old) \r\nWoody Mues .... Janeck (10 years old) \r\nHendrik Duryn .... Medic \r\n\r\n3. Original Music \r\n\r\nby:\r\nDetlef Petersen (as Detlef Friedrich Petersen)',0,'2',2,'2004-09-19 08:22:56',108,1,'Rolf Schübel','Charlotte Kerner (novel) / \r\n\r\nClaus Cornelius Fischer (screenplay)','Detlef Petersen','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1) - Subtitles: English'), (11,1,'Casablanca [OT: Casblanca]',1942,'1. Writing credits:\r\nMurray Burnett (play Everybody Comes to Rick\'s) and \r\nJoan Alison (play \r\n\r\nEverybody Comes to Rick\'s)\r\nJulius J. Epstein and \r\nPhilip G. Epstein and \r\nHoward Koch \r\nCasey Robinson (uncredited)\r\n \r\n2. \r\n\r\nCast (in credits order) verified as complete:\r\nHumphrey Bogart .... Rick Blaine \r\nIngrid Bergman .... Ilsa Lund Laszlo \r\nPaul Henreid .... \r\n\r\nVictor Laszlo \r\nClaude Rains .... Capt. Louis Renault \r\nConrad Veidt .... Maj. Heinrich Strasser \r\nSydney Greenstreet .... Signor Ferrari \r\n\r\n\r\nPeter Lorre .... Guillermo Ugarte \r\nS.Z. Sakall .... Carl (as S.K. Sakall) \r\nMadeleine LeBeau .... Yvonne \r\nDooley Wilson .... Sam \r\r\n\r\n\nJoy Page .... Annina Brandel \r\nJohn Qualen .... Berger \r\nLeonid Kinskey .... Sascha \r\nCurt Bois .... Pickpocket \r\nrest of cast listed \r\n\r\nalphabetically \r\nLouis V. Arco .... Refugee at Rick\'s (uncredited) \r\nLeon Belasco .... Dealer (uncredited) \r\nTrude Berliner .... Baccarat \r\n\r\nplayer (uncredited) \r\nOliver Blake .... Waiter at the Blue Parrot (uncredited) \r\nMonte Blue .... American (uncredited) \r\nGino Corrado .... \r\n\r\nWaiter (uncredited) \r\nFranco Corsaro .... Conspirator (uncredited) \r\nMarcel Dalio .... Emil (the croupier at Rick\'s) (uncredited) \r\nHelmut \r\n\r\nDantine .... Jan Brandel (uncredited) \r\nGeorge Dee .... Casselle (uncredited) \r\nJean Del Val .... Conspirator (uncredited) \r\nWilliam \r\n\r\nEdmunds .... Second Contact Man at Rick\'s (uncredited) \r\nMartin Garralaga .... Headwaiter at Rick\'s Cafe (uncredited) \r\nGregory Gaye .... \r\n\r\nGerman Banker Refused by Rick (uncredited) \r\nIlka Grüning .... Mrs. Leuchtag (Carl\'s immigrating friend) (uncredited) \r\nCreighton Hale .... \r\n\r\nGambler Inquiring About Casino\'s Honesty (uncredited) \r\nOlaf Hytten .... Prosperous Man (uncredited) \r\nCharles La Torre .... Officer Tonnelli \r\n\r\n(uncredited) \r\nGeorge J. Lewis .... Haggling Arab Monkey Seller (uncredited) \r\nLou Marcelle .... Narrator (voice) (uncredited) \r\nMichael \r\n\r\nMark .... Vendor (uncredited) \r\nGeorge Meeker .... Rick\'s Friend Seen After Ugarte\'s Arrest (uncredited) \r\nLouis Mercier .... Smuggler \r\n\r\n(uncredited) \r\nTorben Meyer .... Dutch Banker at Cafe Table (uncredited) \r\nAlberto Morin .... French Officer Insulting Yvonne (uncredited) \r\r\n\r\n\nLeo Mostovoy .... Fydor (uncredited) \r\nCorinna Mura .... Singer with Guitar (uncredited) \r\nLotte Palfi Andor .... Woman Selling Her \r\n\r\nDiamonds (uncredited) \r\nPaul Porcasi .... Native Introducing Ferrari (uncredited) \r\nFrank Puglia .... Arab Vendor (uncredited) \r\nGeorges \r\n\r\nRenavent .... Conspirator (uncredited) \r\nDewey Robinson .... (uncredited) \r\nHenry Rowland .... German Officer (uncredited) \r\nRichard Ryen \r\n\r\n.... Col. Heinze (uncredited) \r\nDan Seymour .... Abdul (uncredited) \r\nGerald Oliver Smith .... Pickpocketed Englishman (uncredited) \r\r\n\r\n\nGeoffrey Steele .... Customer (uncredited) \r\nLudwig Stössel .... Mr. Leuchtag (Carl\'s immigrating friend) (uncredited) \r\nNorma Varden .... \r\n\r\nWife of Pickpocketed Englishman (uncredited) \r\nHans Heinrich von Twardowski .... German Officer with Yvonne (uncredited) \r\nLeo White .... \r\n\r\nEmile (uncredited) \r\nWolfgang Zilzer .... Man with Expired Papers (uncredited) \r\n\r\n3. Original Music by:\r\nM.K. Jerome (songs) \r\nJack \r\n\r\nScholl (songs) \r\nMax Steiner \r\n\r\n4. Non-Original Music by:\r\nHerman Hupfeld (song \"As Time Goes By\") (uncredited)',0,'2',2,'0000-00-00 00:00:00',98,1,'Michael Curtiz','Murray Burnett & Joan Alison (play Everybody Comes to Rick\'s) / Julius J. Epstein, Philip G. Epstein, \r\n\r\nHoward Koch & Casey Robinson (uncredited)','Max Steiner','PAL - (1,33:1) [4:3]','Audio: German (mono), English (mono), Spanish (mono) - \r\n\r\nSubtitles: German, English, Spanish, French, Italian, Turkish, Dutch, Swedish, Norwegian, Danish, Finnish, Portuguese, Hebrew, Polish, Greek, Czech, \r\n\r\nHungarian, Islandic, Croatian'), (12,1,'Chicken Run - Hennen rennen [OT: Chicken Run]',2000,'1. Writing credits:\r\nPeter Lord (story) & \r\nNick Park (story)\r\nKarey \r\n\r\nKirkpatrick (screenplay)\r\nRandy Cartwright additional story \r\n\r\n2. Cast (in credits order) verified as complete (for OT):\r\nPhil Daniels \r\n\r\n.... Fetcher (voice) \r\nLynn Ferguson .... Mac (voice) \r\nMel Gibson .... Rocky (voice) \r\nTony Haygarth .... Mr. Tweedy (voice) \r\nJane \r\n\r\nHorrocks .... Babs (voice) \r\nMiranda Richardson .... Mrs. Tweedy (voice) \r\nJulia Sawalha .... Ginger (voice) \r\nTimothy Spall .... Nick \r\n\r\n(voice) \r\nImelda Staunton .... Bunty (voice) \r\nBenjamin Whitrow .... Fowler (voice) \r\nJohn Sharian .... Circus Man (voice) \r\nJo Allen \r\n\r\n.... Chicken (voice) \r\nLisa Kay .... Chicken (voice) \r\nLaura Strachan .... Chicken (voice) \r\n\r\n3. Original Music by:\r\nHarry Gregson-\r\n\r\nWilliams \r\nSteve Jablonsky (additional music) \r\nJames McKee Smith (additional music) \r\nJohn Powell \r\nGeoff Zanelli (additional \r\n\r\nmusic)',0,'12',2,'2004-09-19 08:23:39',81,1,'Nick Park & Peter Lord','Peter Lord & Nick Park (story) / Karey Kirkpatrick (screenplay) / \r\n\r\nRandy Cartwright (additional story)','Harry Gregson-Williams & John Powell','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1, DTS \r\n\r\n6.1), English (5.1, DTS 6.1) - Subtitles: German (aurally handicapped), English'), (13,1,'Deeply [OT: Deeply]',2000,'',0,'-1',2,'2004-09-19 08:23:55',0,1,'Sheri Elwood','','','',''), (14,1,'Dogville [OT: Dogville]',2003,'',0,'-1',2,'2004-09-19 08:24:15',0,1,'Lars von Trier','','','',''), (15,1,'Donnie Darko [OT: Donnie Darko]',2001,'',0,'-1',2,'2004-09-19 08:24:27',0,1,'Richard Kelly','','','',''), (16,1,'East Is East [OT: East Is East]',1999,'',0,'-1',2,'2004-09-19 08:24:39',0,1,'Damien O\'Donnell','','','',''), (17,1,'Ein einfacher Plan [OT: A Simple Plan]',1998,'',0,'-1',2,'2004-09-19 08:25:03',0,1,'Sam Raimi','','','',''), (18,1,'Erin Brockovich [OT: Erin Brockovich]',2000,'',0,'2',2,'2004-09-19 08:25:29',0,1,'Steven Soderbergh','','','',''), (19,1,'eXistenZ [OT: eXistenZ]',1999,'',0,'-1',2,'2004-09-19 08:26:20',0,1,'David Cronenberg','','','',''), (20,1,'Experiment, Das',2001,'1. Writing credits (in alphabetical order): \r\nDon Bohlinger (screenplay) \r\nChristoph Darnstädt \r\n\r\n(screenplay) \r\nMario Giordano (screenplay - also novel \"Black Box\") \r\nOliver Hirschbiegel (uncredited) \r\nFriedrich Wildfeuer \r\n\r\n(uncredited) \r\n\r\n2. Cast (in credits order) complete, awaiting verification: \r\nMoritz Bleibtreu .... Tarek Fahd, Häftling Nr. 77 \r\n\r\n(Häftlinge)/(Prisoners) \r\nChristian Berkel .... Steinhoff, Häftling Nr. 38 (Häftlinge)/(Prisoners) \r\nOliver Stokowski .... Schütte, Häftling \r\n\r\nNr. 82 (Häftlinge)/(Prisoners) \r\nWotan Wilke Möhring .... Joe, Häftling Nr. 69 (Häftlinge)/(Prisoners) \r\nStephan Szasz .... Häftling Nr. 53 \r\n\r\n(Häftlinge)/(Prisoners) \r\nPolat Dal .... Häftling Nr. 40 (Häftlinge)/(Prisoners) \r\nDanny Richter .... Häftling Nr. 21 (Häftlinge)/(Prisoners) \r\n\r\n\r\nRalf Müller .... Häftling Nr. 15 (Häftlinge)/(Prisoners) \r\nMarkus Rudolf .... Häftling Nr. 74 (Häftlinge)/(Prisoners) \r\nPeter Fieseler \r\n\r\n.... Häftling Nr. 11 (Häftlinge)/(Prisoners) \r\nThorsten Dersch .... Häftling Nr. 86 (Häftlinge)/(Prisoners) (as Thorsten J.H. Dersch) \r\nSven \r\n\r\nGrefer .... Häftling Nr. 94 (Häftlinge)/(Prisoners) \r\nJustus von Dohnanyi .... Berus (Strafvollzugsbeamte)/(Guards) (as Justus von Dohnànyi) \r\r\n\r\n\nNicki von Tempelhoff .... Kamps (Strafvollzugsbeamte)/(Guards) \r\nTimo Dierkes .... Eckert (Strafvollzugsbeamte)/(Guards) \r\nAntoine Monot Jr. \r\n\r\n.... Bosch (Strafvollzugsbeamte)/(Guards) \r\nLars Gärtner .... Renzel (Strafvollzugsbeamte)/(Guards) \r\nJacek Klimontko .... Gläser \r\n\r\n(Strafvollzugsbeamte)/(Guards) \r\nMarkus Klauk .... Stock (Strafvollzugsbeamte)/(Guards) \r\nRalph Püttmann .... Amandy (Strafvollzugsbeamte)/\r\n\r\n(Guards) \r\nEdgar Selge .... Professor Dr. Klaus Thon (Wissenschaftler)/(Scientists) \r\nAndrea Sawatzki .... Dr. Jutta Grimm (Wissenschaftler)/\r\n\r\n(Scientists) \r\nPhilipp Hochmair .... Lars (Wissenschaftler)/(Scientists) \r\nMaren Eggert .... Dora (Die Anderen)/(The Others) \r\nAndré Jung \r\n\r\n.... Ziegler (Die Anderen)/(The Others) \r\nUwe Rohde .... Hans (Die Anderen)/(The Others) \r\nHeiner Lauterbach .... Dennis (Die Stimmen/The \r\n\r\nVoices) (voice) \r\nFatih Akin .... Taxifahrer/Taxi Driver (Die Stimmen/The Voices) (voice) \r\nChristiane Gerboth .... \r\n\r\nNachrichtensprecher/Newscaster (Die Stimmen/The Voices) (voice) \r\nrest of cast listed alphabetically: \r\nKlaus Spinnler .... Assistenten \r\r\n\r\n\nTristan Vostry .... Assistenten \r\n \r\n3. Original Music by: \r\nAlexander Bubenheim (as Alexander von Bubenheim) \r\nLou Handman (song \r\n\r\n\"Are You Lonesome Tonight?\") \r\nRoy Turk (song \"Are You Lonesome Tonight?\")',0,'2',2,'2004-09-19 08:26:39',120,1,'Oliver Hirschbiegel','Don Bohlinger, Christoph Darnstädt & Mario Giordano (screenplay) / Mario Giordano (novel \"Black Box\") / Oliver Hirschbiegel (uncredited) & \r\n\r\nFriedrich Wildfeuer (uncredited)','Alexander Bubenheim','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1)'), (21,1,'Fabelhafte Welt der Amélié, Die [OT: Le fabuleux destin d\'Amélie Poulain]',2001,'',0,'-1',2,'2004-09-19 08:27:06',0,1,'Jean-\r\n\r\nPierre Jeunet','','','',''), (22,1,'Fargo [OT: Fargo]',1996,'',0,'5',2,'2004-09-19 08:27:23',0,1,'Joel Coen & Ethan Coen (uncredited)','Joel Coen & Ethan Coen','','',''), (241,1,'Syriana - Korruption ist alles [OT: Syriana]',2005,'',0,'22',2,'2006-12-31 13:50:28',122,1,'Stephen Gaghan','Robert Baer (book - \r\n\r\nsuggestion), Stephen Gaghan','Alexandre Desplat','',''), (24,1,'Fast Food, Fast Women [OT: Fast Food Fast Women]',2000,'',0,'2',2,'2004-09-19 08:27:58',0,1,'Amos Kollek','','','',''), (25,1,'Führer EX',2002,'',0,'-1',2,'2004-09-19 08:28:13',0,1,'Winfried Bonengel','','','',''), (26,1,'Galaxy Quest [OT: Galaxy Quest]',1999,'',0,'5',2,'2004-09-19 08:28:26',0,1,'Dean Parisot','','','',''), (27,1,'Ganz oder gar nicht [OT: The Full Monty]',1997,'',0,'-1',2,'2004-09-19 08:29:02',0,1,'Peter Cattaneo','','','',''), (28,1,'Gattaca [OT: Gattaca]',1997,'',0,'1',2,'2004-09-19 08:29:17',0,1,'Andrew Niccol','','','',''), (29,1,'Ghost World [OT: Ghost World]',2001,'',0,'-1',2,'2004-09-19 08:29:28',0,1,'Terry Zwigoff','','','',''), (30,1,'Go! [OT: Go]',1999,'',0,'-1',2,'2004-09-19 08:29:37',0,1,'Doug Liman','','','',''), (31,1,'Grabgeflüster [OT: Plots with a View]',2002,'',0,'-1',2,'2004-09-19 08:29:47',0,1,'Nick Hurran','','','',''), (32,1,'Halbe Treppe',2002,'',0,'-1',2,'2004-09-19 08:29:59',0,1,'Andreas Dresen','','','',''), (33,1,'Herr Lehmann',2003,'',0,'-1',2,'2004-09-19 08:30:11',0,1,'Leander Haußmann','','','',''), (34,1,'Intimacy [OT: Intimacy]',2001,'',0,'-1',2,'2004-09-19 08:30:32',0,1,'Patrice Chéreau','','','',''), (35,1,'Italienisch für Anfänger [OT: Italiensk for begyndere]',2000,'',0,'-1',2,'2004-09-19 08:30:45',0,1,'Lone Scherfig','','','',''), (36,1,'Jalla! Jalla! [OT: Jalla! Jalla!]',2000,'',0,'-1',2,'2004-09-19 08:31:23',0,1,'Josef Fares','','','',''), (37,1,'Kleine Morde unter Freunden [OT: Shallow Grave]',1994,'',0,'-1',2,'2004-09-19 08:31:40',0,1,'Danny Boyle','','','',''), (38,1,'Kops [OT: Kopps]',2003,'',0,'-1',2,'2004-09-19 08:32:33',0,1,'Josef Fares','','','',''), (39,1,'L.A. Confidential [OT: L.A. Confidential]',1997,'',0,'-1',2,'2004-09-19 08:32:50',0,1,'Curtis Hanson','','','',''), (40,1,'Leben des David Gale, Das [OT: The Life of David Gale]',2003,'',0,'-1',2,'2004-09-19 08:33:04',0,1,'Alan Parker','','','',''), (41,1,'Letzte Versuchung Christi, Die [OT: The Last Temptation of Christ]',1988,'',0,'-1',2,'2004-09-19 08:33:26',0,1,'Martin Scorsese','','','',''), (42,1,'Leben ist schön, Das [OT: La vita è bella]',1997,'',0,'-1',2,'2004-09-19 08:34:00',0,1,'Roberto Benigni','','','',''), (43,1,'Lilja 4-Ever [OT: Lilja 4-ever]',2002,'',0,'2',2,'2004-09-19 08:35:18',0,1,'Lukas Moodysson','','','',''), (44,1,'Lone Star [OT: Lone Star]',1996,'',0,'-1',2,'2004-09-19 08:35:39',0,1,'John Sayles','','','',''), (45,1,'Memento [OT: Memento]',2000,'',0,'-1',2,'2004-09-19 08:35:48',0,1,'Christopher Nolan','','','',''), (46,1,'Man Who Wasn\'t There, The [OT: The Man Who Wasn\'t There]',2001,'',0,'-1',2,'2004-09-19 08:36:03',0,1,'Joel Coen & Ethan Coen \r\n\r\n(uncredited)','Joel Coen & Ethan Coen','','',''), (47,1,'Mann, der vom Himmel fiel, Der [OT: The Man Who Fell to Earth]',1976,'',0,'1',2,'2004-09-19 08:36:31',0,1,'Nicolas Roeg','','','',''), (48,1,'Mann ohne Vergangenheit, Der [OT: Mies vailla menneisyyttä]',2002,'',0,'-1',2,'2004-09-19 08:36:50',0,1,'Aki Kaurismäki','','','',''), (49,1,'Mein Leben ohne mich [OT: Mi vida sin mi]',2003,'',0,'-1',2,'2004-09-19 08:37:16',0,1,'Isabel Coixet','','','',''), (50,1,'Midnight Express [OT: Midnight Express]',1978,'',0,'-1',2,'2004-09-19 08:37:29',0,1,'Alan Parker','','','',''), (51,1,'Million Dollar Hotel, The [The Million Dollar Hotel]',2000,'',0,'-1',2,'2004-09-19 08:37:53',0,1,'Wim Wenders','','','',''), (52,1,'Monsoon Wedding [OT: Monsoon Wedding]',2001,'',0,'-1',2,'2004-09-19 08:38:04',0,1,'Mira Nair','','','',''), (53,1,'Monster AG, Die [OT: Monsters, Inc.]',1991,'',0,'12',2,'2004-09-19 08:38:15',0,1,'Peter Docter, David Silverman & Lee Unkrich','','','',''), (54,1,'Mr. Smith geht nach Washington [OT: Mr. Smith Goes to Washington]',1939,'',0,'-1',2,'2004-09-19 08:38:38',0,1,'Frank Capra','','','',''), (55,1,'Nói Albinói [OT: Nói albínói]',2003,'',0,'-1',2,'2004-09-19 08:38:55',0,1,'Dagur Kári','','','',''), (56,1,'Open Hearts [OT: Elsker dig for evigt]',2002,'',0,'2',2,'2004-09-19 08:39:08',0,1,'Susanne Bier','','','',''), (57,1,'Pieces of April [OT: Pieces of April]',2003,'',0,'-1',2,'2004-09-19 08:39:26',0,1,'Peter Hedges','','','',''), (58,1,'Pipe Dream [OT: Pipe Dream]',2002,'',0,'-1',2,'2004-09-19 08:39:38',0,1,'John Walsh','','','',''), (59,1,'Rocky Horror Picture Show, The',1975,'',0,'-1',2,'2004-09-19 08:40:26',0,1,'Jim Sharman','','','',''), (62,1,'Schrei in der Stille [OT: The Reflecting Skin]',1990,'',0,'-1',2,'2004-09-19 08:42:44',0,1,'Philip Ridley','','','',''), (63,1,'Soloalbum',2004,'',0,'-1',2,'2004-09-19 08:42:55',0,1,'Gregor Schnitzler','','','',''), (64,1,'Stigmata [OT: Stigmata]',1999,'',0,'-1',2,'2004-09-19 08:43:20',0,1,'Rupert Wainwright','','','',''), (66,1,'Tuxedo, The [OT: The Tuxedo]',2002,'',0,'-1',2,'2004-09-19 08:44:44',0,1,'Kevin Donovan','','','',''), (207,1,'Madagaskar [OT: Madagascar]',2005,'',0,'12',2,'2005-12-27 11:43:09',82,1,'Eric Darnell & Tom McGrath','','','',''), (68,1,'Virgin Suicides, The [OT: The Virgin Suicides]',1999,'',0,'-1',2,'2004-09-19 08:45:37',0,1,'Sofia Coppola','','','',''), (70,1,'Wonderboys, Die [OT: The Wonderboys]',2000,'',0,'-1',2,'2004-09-19 08:48:04',0,1,'Curtis Hanson','','','',''), (71,1,'You Can Count On Me [OT: You Can Count On Me]',2000,'',0,'-1',2,'2004-09-19 08:48:26',0,1,'Kenneth Lonergan','','','',''), (72,1,'Zug des Lebens [OT: Train de vie]',1998,'',0,'-1',2,'2004-09-19 08:49:05',0,1,'Radu Mihaileanu','','','',''), (73,1,'Zugvögel - ... einmal nach Inari',1998,'',0,'-1',2,'2004-09-19 08:49:16',0,1,'Peter Lichtefeld','','','',''), (74,2,'Coyote Ugly [OT: Coyote Ugly]',2000,'1. Writing credits (WGA):\r\nGina Wendkos (written by)\r\n \r\n2. Cast (in credits order) \r\n\r\ncomplete, awaiting verification:\r\nPiper Perabo .... Violet Sanford \r\nAdam Garcia .... Kevin O\'Donnell \r\nJohn Goodman .... Bill Sanford \r\r\n\r\n\nMaria Bello .... Lil \r\nIzabella Miko .... Cammie \r\nTyra Banks .... Zoe \r\nBridget Moynahan .... Rachel \r\nMelanie Lynskey .... Gloria \r\n\r\n\r\nDel Pentecost .... Lou the Bouncer \r\nMichael Weston .... Danny \r\nLeAnn Rimes .... Herself \r\nJeremy Rowley .... William Morris \r\n\r\nReceptionist \r\nEllen Cleghorne .... Wendy, Music Publishing Receptionist \r\nJohn Fugelsang .... Richie the Booker \r\nBud Cort .... Romero \r\r\n\r\n\nRobert Ahlers .... Finale Club Back-Up Musician \r\nOrlando Sims .... Finale Club Back-Up Musician \r\nBarry Michael Duff .... Finale Club \r\n\r\nBack-Up Musician \r\nWilliam Ritter III .... Finale Club Back-Up Musician \r\nChandra Bailey .... Finale Club Back-Up Musician (as Chanda Bailey) \r\n\r\n\r\nFreez Luv .... Fiji Mermaid Club Bouncer (as Freeze Luv) \r\nAlex Band .... Fiji Mermaid Club Band \r\nMiles Mosley .... Fiji Mermaid Club \r\n\r\nBand \r\nAaron Kamin .... Fiji Mermaid Club Band \r\nVic Vanacore .... Fiji Mermaid Club Band \r\nGreg Pitts .... Fiji Mermaid Waiter \r\nWhitney \r\n\r\nDylan .... Fiji Mermaid Worker \r\nMarvin Krueger .... Surgeon \r\nVictor Argo .... Pete \r\nPeter Appel .... Pizza Customer \r\nJohn Mondin \r\n\r\n.... Pizza Customer \r\nFrank Medrano .... Walt \r\nElizabeth Beckwith .... Management Office Receptionist \r\nDiane Hudock .... Open Mic Woman \r\n\r\n\r\nTara MacLean .... Open Mic Singer \r\nEric Ritter .... Arlene\'s Grocery Audience Member \r\nThomas R. Martin .... Arlene\'s Grocery Audience \r\n\r\nMember \r\nKen Hudson Campbell .... Biker (as Ken Campbell) \r\nJorgen de Mey .... Coyote Ugly Customer \r\nJimmy Shubert .... Coyote Ugly Drunk \r\n\r\n\r\nGreg Ginther .... Coyote Ugly Drunk \r\nJeff Michalski .... Mike the Fire Marshall \r\nKaitlin Olson .... Bidding Customer \r\nJennifer Jean \r\n\r\nSnyder .... Bidding Customer (as Jennifer Jean) \r\nSusan Yeagley .... Bidding Customer \r\nJill Gettelson .... Bidding Customer \r\nJack McGee \r\n\r\n.... Baseball Pitcher \r\nPaul Davis-Miller .... Sam Ash Salesman \r\nJohnny Zander .... Roy \r\nWali Collins .... Critch \r\nScott Russo .... \r\n\r\nElbow Room Band Member \r\nRob Brewer .... Elbow Room Band Member \r\nSteve Morris .... Elbow Room Band Member \r\nWade Youman .... Elbow Room \r\n\r\nBand Member \r\nPatrick Kim .... Elbow Room Band Member \r\nNatasha Reulet .... Girl at the Surprise Party \r\nSarah Morris .... Girl at the \r\n\r\nSurprise Party \r\nJennifer Day .... Girl at the Surprise Party \r\nNava Plotski .... Girl at the Surprise Party (as Nava Plotsky) \r\nAlicia \r\n\r\nLorén .... Girl at the Surprise Party (as Alicia Sorell) \r\nJennifer Manalo .... Girl at the Surprise Party \r\nNicole Ghastin .... Lyndsay \r\n\r\nMorgan \r\nJonathan Klein .... Manager \r\nAlexandra Balahoutis .... Hostess \r\nJohnny Knoxville .... College Guy \r\nChris Wylde .... College \r\n\r\nGuy \r\nMandy Amano .... Dancing Girl in Bar \r\nCarla Alaponte .... Dancing Girl in Bar \r\nStephanie Hodge .... Dancing Girl in Bar \r\nAllison \r\n\r\nFord .... Dancing Girl in Bar \r\nKathy Nowrey .... Dancing Girl in Bar \r\nMichael Bay .... Photographer \r\nChip Chinery .... Cop \r\nNick \r\n\r\nVallelonga .... Cop \r\nJoseph Patrick Kelly .... Coyote Ugly Bar Patron \r\nGreg Collins .... Coyote Ugly Bar Patron \r\nStephen Snedden .... \r\n\r\nFancy Drinks Customer \r\nChris Soldevilla .... Man Ordering Shots \r\nJoe Bucaro III .... Finale Club Drunk (as Joseph Bucaro III) \r\nJames T. \r\n\r\nSale .... Finale Club Drunk \r\nHeather Shannon Ryan .... Sorority Girl \r\nBiljana Filipovic .... Bar Fight Girlfriend \r\nrest of cast listed \r\n\r\nalphabetically \r\nEddie Aniske .... Finale Club Lead-In Band (uncredited) \r\nAlex Borstein .... Bidding Customer (uncredited) \r\nTony Collucci \r\n\r\n.... High Five Guy (uncredited) \r\nClaudia Cummings .... Violet (uncredited) \r\nDaniel L. Holmes .... Two Beer Guy (uncredited) \r\nTimothy \r\n\r\nHuang .... Pedestrian (uncredited) \r\nJason Jacobs .... Finale Club Lead-In Band (uncredited) \r\nJuliet Neil .... Girl on Street (uncredited) \r\n\r\n\r\nDavid M. Nesting .... Sorority Girl\'s Boyfriend (uncredited) \r\nCalvi Pabon .... Sexy Dancer (uncredited) \r\nMelody Perkins .... New \r\n\r\nCoyote (uncredited) \r\nTara Schwartz .... Dancer (uncredited) \r\nGrant Taskerud .... Finale Club Lead-In Band (uncredited) \r\nPatty Tobin .... \r\n\r\nThe Red-Headed Nurse (uncredited) \r\nJaime Vond .... Music Company Receptionist (uncredited) \r\nLisa Marie Waishes .... Shannon (uncredited) \r\r\n\r\n\nBrad Yoder .... College Guy (uncredited) \r\nPatrick Yonally .... Finale Club Lead-In Band (uncredited) \r\n\r\n3. Original Music by:\r\nAlex \r\n\r\nBand (song \"Wherever You Go\") \r\nSteve Bartek (additional music) \r\nTrevor Horn \r\nGarry Hughes (additional music) \r\nTommy Lee \r\n\r\nJames (song \"Didn\'t We Love\") \r\nAaron Kamin (song \"Wherever You Go\") \r\nJennifer Kimball (song \"Didn\'t We Love\") \r\nJamie Muhoberac \r\n\r\n(additional music) \r\nTamara Walker (song \"Didn\'t We Love\") \r\nDiane Warren (songs \"But I Do Love You\", \"Please Remember\", \"The Right Kind \r\n\r\nof Wrong\", \"Can\'t Fight the Moonlight\") \r\n \r\n4. Non-Original Music by:\r\nJames Atkin (song \"Unbelievable\") \r\nDan Baird (song \"Keep \r\n\r\nYour Hands To Yourself\") \r\nRob Base (song \"It Takes Two\") (as Robert Ginyard) \r\nBenito Benitez (song \"The Power\") \r\nMike Bradford \r\n\r\n(song \"Follow Me\") \r\nRob Brewer (song \"Cailin\") \r\nDeran Brownson (song \"Unbelievable\") \r\nToni C. (song \"The Power\") (as Antoinette \r\n\r\n\'Toni C.\' Colandero) \r\nStephen Clark (song \"Pour Some Sugar On Me\") \r\nPhil Collen (song \"Pour Some Sugar On Me\") \r\nLuigi Creatore \r\n\r\n(song \"Can\'t Help Falling In Love\") \r\nCharlie Daniels (song \"Devil Went Down To Georgia\") \r\nMark Decloedt (song \"Unbelievable\") \r\nIan \r\n\r\nDench (song \"Unbelievable\") \r\nTaz Di Gregorio (song \"Devil Went Down To Georgia\") (as Taz Digregorio) \r\nMichael Duff (song \"Like Water\") \r\n\r\n\r\nJoe Elliott (song \"Pour Some Sugar On Me\") (as Joseph Elliott) \r\nAndrew Farriss (song \"Need You Tonight\") \r\nDino Fekaris (song \"I \r\n\r\nWill Survive\") \r\nSteve Fisk (song \"Battle Flag (Lo-Fidelity Allstars Remix)\") \r\nZachary Foley (song \"Unbelievable\") \r\nCharles Stan \r\n\r\nFrazier (song \"Fly (Without Supercat)\") (as Charles Frazier) \r\nJohn Garrett III (song \"The Power\") (as John \'Virgo\' Garrett III) \r\nAntony \r\n\r\nGenn (song \"Tony Adams\") \r\nWilliam Griffith (song \"Love Machine (Part 1)\") \r\nNigel Harrison (song \"One Way Or Another\") (as Nigel \r\n\r\nDouglas Harrison) \r\nDeborah Harry (song \"One Way Or Another\") \r\nCharlie Hayward (song \"Devil Went Down To Georgia\") \r\nReverend Horton \r\n\r\nHeat (song \"Beer 30\") (as James C. Heath) \r\nMichael Hutchence (song \"Need You Tonight\") \r\nBilly Idol (song \"Rebel Yell\") \r\nStephan \r\n\r\nJenkins (song \"Never Let You Go\") \r\nMatthew Murphy Karges (song \"Fly (Without Supercat)\") (as Matthew Karges) \r\nKid Rock (song \"Cowboy\") \r\n\r\n(as Robert J. Ritchie) \r\nDanny Kortchmar (song \"All She Wants To Do Is Dance\") \r\nLenny Kravitz (song \"Fly Away\") \r\nRobert John Lange \r\n\r\n(song \"Pour Some Sugar On Me\") \r\nTara MacLean (song \"That\'s Me\") \r\nMark McGrath (song \"Fly (Without Supercat)\") \r\nMcG (song \"Fly \r\n\r\n(Without Supercat)\") (as Joseph \'McG\' Nichol) \r\nWarren Moore (song \"Love Machine (Part 1)\") \r\nSteve Morris (song \"Cailin\") \r\nChris \r\n\r\nPelcer (song \"Boom Boom Boom\") \r\nHugo Peretti (song \"Can\'t Help Falling In Love\") \r\nFreddie Perren (song \"I Will Survive\") (as \r\n\r\nFrederick J. Perren) \r\nTrace Ritter (song \"Like Water\") \r\nScott Russo (song \"Cailin\") \r\nRichard Savage (song \"Pour Some Sugar On Me\") \r\n\r\n\r\nTony Scalzo (song \"Out Of My Head\") \r\nBrian Setzer (song \"Rock This Town\") \r\nRodney Sheppard (song \"Fly (Without Supercat)\") \r\r\n\r\n\nShawn Smith (song \"Battle Flag (Lo-Fidelity Allstars Remix)\") \r\nSteve Stevens (song \"Rebel Yell\") \r\nJoe Strummer (song \"Tony Adams\") \r\n\r\n\r\nJohn Travis (song \"Cowboy\") \r\nJames Trombly (song \"Cowboy\") \r\nUncle Kracker (songs \"Follow Me\", \"Cowboy\") (as Matt Shafer) \r\nRay \r\n\r\nVega (song \"Boom Boom Boom\") \r\nRobert Vega (song \"Boom Boom Boom\") \r\nGeorge David Weiss (song \"Can\'t Help Falling In Love\") \r\nGary \r\n\r\nWright (song \"Love Is Alive\") \r\nWade Youman (song \"Cailin\")',0,'16',2,'2004-09-19 08:49:59',96,1,'David McNally','','Trevor Horn','PAL - Anamorph Widescreen (2,35:1) [16:9]','Audio: German (5.1), English (5.1) - Subtitles: German, English, French, Spanish, Italian'), (75,2,'Den einen oder keinen [OT: Down to You]',2000,'',0,'16',2,'2004-09-19 08:50:37',0,1,'Kris Isacsson','','','',''), (76,2,'Eiskalte Engel [OT: Cruel Intentions]',1999,'',0,'2',2,'2004-09-19 08:50:52',0,1,'Roger Kumble','','','',''), (77,2,'Kate & Leopold [OT: Kate & Leopold]',2001,'',0,'16',2,'2004-09-19 08:51:11',0,1,'James Mangold','','','',''), (78,2,'Manhattan Love Story [OT: Maid in Manhattan]',2002,'',0,'16',2,'2004-09-19 08:51:24',0,1,'Wayne Wang','','','',''), (79,2,'Leben oder so ähnlich [OT: Life or Something Like It]',2002,'',0,'16',2,'2004-09-19 08:51:38',0,1,'Stephen Herek','','','',''), (80,2,'Was Frauen wollen (OT: What Women Want)',2000,'',0,'5',2,'2004-09-19 08:52:07',0,1,'Nancy Meyers','','','',''), (81,1,'Ali G Indahouse [OT: Ali G Indahouse]',2002,'1. Writing credits (in alphabetical order): \r\nSacha Baron Cohen \r\nDan Mazer \r\n\r\n\r\n\r\n2. Cast (in credits order): \r\nSacha Baron Cohen .... Ali G/Borat \r\nMichael Gambon .... Prime Minister \r\nCharles Dance .... David \r\n\r\nCarlton \r\nKellie Bright .... Me Julie \r\nMartin Freeman .... Ricky C \r\nRhona Mitra .... Kate Hedges \r\nBarbara New .... Nan \r\nEmilio \r\n\r\nRivera .... Rico \r\nGina La Piana .... Hoochie \r\nDana Pauley .... Hoochie \r\nDominic Delesilva .... Young boy \r\nJacqueline Castro .... \r\n\r\nMum (as Jackeline Castro) \r\nJesse Acosta .... Gangster \r\nMário Aguilar .... Gangster \r\nGary Baxley .... Gangster \r\nCarlos Ayala .... \r\n\r\nGangster \r\nJohn Estrada .... Gangster \r\nDavid Follosco .... Gangster \r\nGerald Gonzales .... Gangster \r\nManuel Jiménez .... Gangster \r\r\n\r\n\nRobert Jimenez .... Gangster \r\nGeorge Lopez .... Gangster \r\nManny Perez .... Gangster \r\nMagdaleno Robles Jr. .... Gangster \r\nDanny \r\n\r\nRomo .... Gangster \r\nJacob Salas .... Gangster \r\nCarlos Sánchez .... Gangster \r\nEmilano Torres .... Gangster \r\nRobert Zepeda .... \r\n\r\nGangster \r\nTony Way .... Dave \r\nNabil Elouhabi .... Jezzy F \r\nRichard Syms .... Caretaker \r\nRay Panthaki .... Hassan B \r\nDean \r\n\r\nBatchelor .... East Staines Massiv \r\nAdam Deacon .... East Staines Massiv \r\nRoberto Viana .... East Staines Massiv \r\nImran Akhtar .... Cub \r\n\r\nscout \r\nJamie Boubazari .... Cub scout \r\nCharles Hawkins .... Cub scout \r\nGeorge Keane .... Cub scout \r\nAlex Peters .... Cub scout \r\r\n\r\n\nBilly Stewart .... Cub scout \r\nJack Thompson .... Cub scout \r\nStephen Bent .... John Nike leisure centre manager \r\nAnna Keaveney .... \r\n\r\nSecretary \r\nEileen Essel .... Mrs. Hugh \r\nJanet Mitchell .... Tracey \r\nNaomi Campbell .... Herself \r\nJohn Scott Martin .... Mr. Johnson \r\n\r\n\r\nJonathan Aris .... Reporter \r\nStewart Wright .... Film cameraman \r\nPaul Clayton .... Alan Swain \r\nFrank Dunne .... Blind polisher \r\r\n\r\n\nDiana Van Proosdy .... Headteacher \r\nMichael Cowan .... Man in house \r\nCarolyn Pickles .... Headmistress \r\nAstley Skutcher .... Jonathan \r\n\r\n\r\nDavid Henry .... The Mayor of Staines \r\nMaggie Ellis .... Mayor\'s wife \r\nJoe Geary .... Floor manager \r\nGeoffrey Kirkness .... \r\n\r\nPresenter \r\nJohn Warnaby .... David Griffiths \r\nAndy Bell .... Anchorman \r\nRoger Brierley .... Town Hall Official \r\nIvor Mazer .... \r\n\r\nThomas Alvarez \r\nElaine Mazer .... Mrs. Alvarez \r\nCraig Crosbie .... Leader of the Opposition \r\nJeffrey Wickham .... Speaker \r\nGraham \r\n\r\nMcTavish .... Police Officer, Customs \r\nMaggie McCarthy .... Karen \r\nLloyd McGuire .... John \r\nEdward Highmore .... Cabinet M.P. \r\r\n\r\n\nMartin Ball .... Customs official \r\nSteffan Rhodri .... Welsh teacher \r\nStephen Boswell .... Queen\'s Footman \r\nJeanette Vane .... The \r\n\r\nQueen \r\nJohn Humphrys .... Himself \r\nJon Snow .... Himself \r\nDaphne Cheung .... President Wattana \r\nOlegar Fedoro .... Russian Delegate \r\n\r\n\r\nPeter Law .... Mongolian delegate \r\nColin Stinton .... US delegate \r\nRudolph Walker .... President Mwepu \r\nJohn Adewole .... President \r\n\r\nOompeba \r\nJulian Sua .... Chinese delegate \r\nStefan Kalipha .... Iranian delegate \r\nBruce Jamieson .... Journalist \r\nMark Theodore .... \r\n\r\nJournalist \r\nMarianne Levy .... Journalist \r\nMartin Wimbush .... MP \r\nJasper Jacob .... MP \r\nRichard Madeley .... Himself \r\nJudy \r\n\r\nFinnigan .... Herself \r\nMatthew Green .... Englefield Green Massiv \r\nJames Allen .... Guard \r\nCarl McCrystal .... Guard \r\nJamie Glassman \r\n\r\n.... Dr. J. \r\nMatt Wilkinson .... Police officer \r\nAdrian Hylton .... Foreman \r\nAndrew Dunn .... Police officer \r\nIone Brown .... \r\n\r\nButler \r\nDaniela Lavender .... Maid \r\nJudith Shekoni .... Jacuzzi girl (as Judi Shekoni) \r\nrest of cast listed alphabetically \r\nCapri \r\n\r\nAshby .... Nina (Julie\'s Best Friend) \r\nJuan Luis Cano .... Ricky C (Spanish version) (voice) \r\nGuillermo Fesser .... Ali G/Borat (Spanish \r\n\r\nversion) (voice) \r\nMatt Green .... Englefield Green Massiv \r\nIsabelle Pasco .... Suzy \r\nDenise Worme .... Bongo Drum Girl no. 3 \r\n\r\n(uncredited) \r\n\r\n3. Original Music by: \r\nAdam F. \r\nShaggy (song \"Me Julie\") \r\nKeith Sweat (song \"Freak Me\") ',0,'5',2,'0000-00-00 00:00:00',88,1,'Mark Mylod','Sacha Baron Cohen & Dan Mazer','Adam F.','PAL - Anamorph Widescreen (2,35:1)','Audio: German (5.1), \r\n\r\nEnglish (5.1) - Subtitles: German, Arabic, Bulgarian, Czech, Danish, Dutch, Finnish, Greek, Hungarian, Norwegian, Swedish, Turkey, English'), (82,1,'Arizona Dream [OT: Arizona Dream]',1993,'1. Writing credits: \r\nDavid Atkins\r\nDavid Atkins (story) & \r\nEmir Kusturica \r\n\r\n(story)\r\n \r\n2. Cast (in credits order) verified as complete: \r\nJohnny Depp .... Axel Blackmar \r\nJerry Lewis .... Leo Sweetie \r\nFaye \r\n\r\nDunaway .... Elaine Stalker \r\nLili Taylor .... Grace Stalker \r\nVincent Gallo .... Paul Leger \r\nPaulina Porizkova .... Millie \r\nMichael \r\n\r\nJ. Pollard .... Paul \r\nCandyce Mason .... Blanche \r\nAlexia Rane .... Angie \r\nPolly Noonan .... Betty \r\nAnn Schulman .... Carla \r\r\n\r\n\nPatricia O\'Grady .... MC/Announcer \r\nJames R. Wilson .... Lawyer \r\nEric Polczwartek .... Man with Door \r\nKim Keo .... Mechanical Doll \r\n\r\n\r\nJames P. Marshall .... Boatman \r\nVincent Tocktuo .... Eskimo Man \r\nSantos Romero .... Mariachi Band Member \r\nDavid Rodriquez .... \r\n\r\nMariachi Band Member \r\nJuan Urrea .... Mariachi Band Member \r\nJosé Luis Ávila .... Mariachi Band Member \r\nSergio Hlarmendaris .... Mariachi \r\n\r\nBand Member \r\nFrank Turley .... Mariachi Band Member \r\nManuel Rodríguez .... Mariachi Band Member \r\nCayetano Acosta .... Mariachi Band \r\n\r\nMember \r\nManuel Ruiz .... Mariachi Band Member \r\nNarcisco Domínguez .... Mariachi Band Member \r\nBenjamin S. Gonzales .... Mariachi Band \r\n\r\nMember \r\nSerafino Flores .... Mariachi Band Member \r\nMiguel Moreno .... Mariachi Band Member \r\nRaphael Salcido .... Mariachi Band Member \r\n\r\n\r\nChanaia Rodriguez .... Mariachi Band Member \r\nJackson Douglas .... The Priest \r\nTricia Leigh Fisher .... Lindy \r\nMichael S. John .... \r\n\r\nThe Doctor \r\nrest of cast listed alphabetically \r\nSal Jenco .... Man at the Phone \r\nEmir Kusturica .... Man in the bar (uncredited) \r\n\r\r\n\r\n\n3. Original Music by: \r\nGoran Bregovic',0,'5',2,'2004-10-21 08:57:59',135,1,'Emir Kusturica','David Atkins & Emir Kusturica','Goran \r\n\r\nBregovic','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (Stereo DD), English (Stereo DD), Spanish (Surround DD) - Subtitles: German, \r\n\r\nEnglish, Spanish, Portuguese, Dutch, Danish, Swedish, Norwegian, Finnish'), (83,1,'Blow [OT: Blow]',2001,'1. Writing credits (WGA): \r\nBruce Porter (book)\r\nDavid McKenna (screenplay) and \r\nNick Cassavetes \r\n\r\n(screenplay)\r\n \r\n2. Cast (in credits order) complete, awaiting verification: \r\nJohnny Depp .... George Jung \r\nPenélope Cruz .... Mirtha \r\n\r\nJung \r\nFranka Potente .... Barbara Buckley \r\nRachel Griffiths .... Ermine Jung \r\nPaul Reubens .... Derek Foreal \r\nJordi Mollà .... Diego \r\n\r\nDelgado \r\nCliff Curtis .... Pablo Escobar \r\nMiguel Sandoval .... Augusto Oliveras \r\nEthan Suplee .... Tuna \r\nRay Liotta .... Fred Jung \r\n\r\n\r\nKevin Gage .... Leon Minghella \r\nMax Perlich .... Kevin Dulli \r\nJesse James .... Young George \r\nMiguel Pérez .... Alessandro \r\nDan \r\n\r\nFerro .... Cesar Toban \r\nTony Amendola .... Sanchez \r\nBob Goldthwait .... Mr. T (as Bobcat Goldthwait) \r\nMichael Tucci .... Dr. Bay \r\r\n\r\n\nMonet Mazur .... Maria \r\nLola Glaudini .... Rada \r\nJennifer Gimenez .... Inez \r\nEmma Roberts .... Young Kristina Jung \r\nJaime King \r\n\r\n.... Kristina Jung (as James King) \r\nCharles Noland .... Jack Stevens \r\nPamela Abdy .... Beach Woman #3 \r\nJohn Harrington Bland .... FBI \r\n\r\nWaiter #1 \r\nJimmy Burke .... FBI Waiter #4 \r\nBrantley Bush .... FBI Waiter #3 \r\nKevin Chapman .... DEA Eastham (as Kevin H. Chapman) \r\r\n\r\n\nThe Dawk .... Guard (Visit Area #2) \r\nTed Demme .... Archie Zigmond (as Edward Demme) \r\nCrystal Erickson .... Stewardess #1 \r\nDaniel \r\n\r\nEscobar .... Emilio Ochoa \r\nTracy Falco .... Beach Woman #2 \r\nJean-Carlos Felix .... Prison Guard (Warden\'s Office) \r\nLazaro Galarraga \r\n\r\n.... Band Singer \r\nBrian Goodman .... Guard Gus \r\nVanessa Greyson .... Stewardess #3 \r\nElif Guertin .... Stewardess #2 \r\nJosh Herman \r\n\r\n.... Detective #1 \r\nFaith Hoover .... Stewardess #6 \r\nBrad Hunt .... GG \r\nPatrick Husted .... Bank Manager \r\nKristina Jung .... Clerk \r\n\r\n(scenes deleted) \r\nRalph Kampshoff .... Guard (Visit Area #1) \r\nAjgie Kirkland .... James Trout \r\nSkip O\'Brien .... Customs Agent \r\r\n\r\n\nRichard LaGravenese .... Detective #2 \r\nRoberto Lopez .... Guard (Danbury) \r\nLydell M. Cheshier .... Inmate #3 \r\nDorothy Lyman .... \r\n\r\nJudge (Chicago) \r\nJodie Mann .... Nurse (Cape Cod) \r\nCharles Martiniz .... Bank Employee \r\nGenevieve Maylam .... Beach Woman #1 \r\nGonzalo \r\n\r\nMenendez .... Ramon Ochoa \r\nMauricio Mendoza .... Benny \r\nCarlos Mendoza .... Tony \r\nAlan James Morgan .... Young Tuna \r\nRandy Mulkey \r\n\r\n.... Employee #1 \r\nKathleen Mullan .... Beach Woman #5 \r\nMeriah Nelson .... Stewardess #4 \r\nTony Perez .... Bank President \r\nJack Polick \r\n\r\n.... Ben \r\nMichael Ralph .... Inmate #2 (as Mike Ralph) \r\nRaoul N. Rizik .... Rafael Ojeda \r\nMatthew Robinson .... Inmate #1 \r\nElizabeth \r\n\r\nRodriguez .... Martha Oliveras \r\nBert Rosario .... Bank President (Panama) \r\nLeslie Schirrmacher .... Stewardess #5 \r\nDale Snowberger .... \r\n\r\nFBI Waiter #2 \r\nSophie Tsirnel .... Beach Woman #4 \r\nJulia Vera .... Clara Blanca \r\nSantiago Verdu .... Juan Carlos \r\nPamela Walker .... \r\n\r\nFBI Waiter #5 \r\nrest of cast listed alphabetically \r\nRicardo Azulay .... Restaurant/Bar Patron (uncredited) \r\nAnastasia Blue .... One of \r\n\r\nDerek Foreal\'s party girls (uncredited) \r\nNick Cassavetes .... Man in Derek\'s Salon (uncredited) \r\nDana Emberson .... Beach Cyclist \r\n\r\n(uncredited) \r\nJanine Foster .... Flight attendant (uncredited) \r\nMiguel Ángel Fuentes .... Body Guard for Pablo Escobar (uncredited) \r\r\n\r\n\nJacque Lawson .... Biker (uncredited) \r\nMelissa Renée Martin .... One of Derek Foreal\'s party girls (uncredited) \r\nBill Willens .... Biker \r\n\r\n(uncredited) \r\nRayder Woods .... FBI Undercover Agent (uncredited) \r\n\r\n3. Original Music by: \r\nMoney Mark \r\nGraeme Revell \r\r\n\r\n\nRonnie Van Zant (song \"That Smell\") \r\nNikka Costa (song \"Push & Pull\") (uncredited) \r\nJustin Stanley (song \"Push & Pull\") (uncredited) \r\n\r\n \r\n \r\n4. Non-Original Music by: \r\nSteve Cropper (song \"Be My Lady\") (as Stephen Cropper) \r\nDonald Dunn (song \"Be My Lady\") \r\nBob \r\n\r\nDylan (song \"All The Tired Horses\") \r\nAl Jackson Jr. (song \"Be My Lady\") \r\nMick Jagger (song \"Can\'t You Hear Me Knocking\") \r\nBooker \r\n\r\nT. Jones (song \"Be My Lady\") \r\nLink Wray (song \"Rumble\")',0,'2',2,'2004-10-21 08:58:06',118,1,'Ted Demme','Bruce Porter (book) / \r\n\r\nDavid McKenna & Nick Cassavetes (screenplay)','Money Mark & Graeme Revell','PAL - Anamorph Widescreen (2,35:1)','Audio: German (5.1), English \r\n\r\n(5.1) - Subtitles: German, English'), (84,1,'Bockerer, Der (Teil 1 und Teil 2)',1981,'',0,'-1',2,'2004-10-21 08:59:04',0,1,'Franz Antel & Rainer C. Ecke / Franz Antel','','','',''), (85,1,'Bowling For Columbine [OT: Bowling For Columbine]',2002,'1. Writing credits (WGA): \r\nMichael Moore (written by)\r\n \r\n2. Cast (in \r\n\r\nalphabetical order): \r\nJacobo Arbenz .... Himself, President of Guatemala (archive footage) (as President Arbenz) \r\nMike Bradley .... \r\n\r\nHimself, Mayor of Sarnia, Ontario, Canada \r\nArthur A. Busch .... Himself, County Prosecutor, Flint, Michigan (as Arthur Busch) \r\nGeorge Bush \r\n\r\n.... Himself (archive footage) (as Bush) \r\nGeorge W. Bush .... Himself, President of the United States (archive footage) \r\nMichael Caldwell \r\n\r\n.... Himself, Police Detective \r\nRichard Castaldo .... Himself, Columbine Victim \r\nDick Clark .... Himself, Restaurant Owner \r\nSteve Davis \r\n\r\n.... Himself, Deputy Sheriff (archive footage) \r\nByron Dorgan .... Himself (archive footage) \r\nJoe Farmer .... Himself, Superintendent of \r\n\r\nSchools (archive footage) \r\nDenny Fennell .... Himself, Home Security Consultant \r\nBarry Glassner .... Himself, Author of \"The Culture of \r\n\r\nFear\" (as Prof. Barry Glassner) \r\nJohn Harris .... Himself (voice) \r\nCharlton Heston .... Himself, Actor/NRA President \r\nJeremy Hicks .... \r\n\r\nHimself, Suspended Student for Wearing Kilts (archive footage) \r\nFritz Hollings .... Himself (archive footage) (as Senator Fritz Hollings) \r\r\n\r\n\nJimmie Hughes .... Herself, Principal of Buell Elementary School \r\nDick Hurlin .... Himself, Former Producer of \"Cops\" \r\nAmanda Lamante .... \r\n\r\n Herself, Columbine Student \r\nMary Lorenz .... Herself, K-Mart Official \r\nMarilyn Manson .... Himself, Entertainer \r\nTom Mauser .... \r\n\r\nHimself, Father of Victim \r\nEvan McCollum .... Himself, Lockheed Martin Public Relations \r\nTimothy McVeigh .... Himself, Oklahoma City Bomber \r\n\r\n(archive footage) \r\nCarey McWilliams .... Himself, Blind Gun Owner (archive footage) \r\nGerald Miller .... Himself, Welfare-to-Work Creator \r\n\r\n(archive footage) \r\nMichael Moore .... Himself/Narrator \r\nMohammed Mossadegh .... Himself, Prime Minister of Iran (archive footage) (as Prime \r\n\r\nMinister Mossadeq) \r\nDinh Diem Ngo .... Himself, President of South Vietnam (archive footage) (as President Diem) \r\nJames Nichols .... \r\n\r\nHimself, Brother of Terry Nichols \r\nTerry Nichols .... Himself, Oklahoma City Bombing Accomplice (archive footage) \r\nManuel Noriega .... \r\n\r\nHimself, President of Panama (archive footage) \r\nTamarla Owens .... Herself, Mother of Shot Boy (archive footage) \r\nShah Mohammed Reza Pahlavi \r\n\r\n.... Himself, Shah of Iran (archive footage) \r\nRobert J. Pickell .... Himself, Sheriff of Flint, Michigan (as Sheriff Robert Pickell) \r\r\n\r\n\nAugusto Pinochet .... Himself, Chilean Dictator (archive footage) \r\nNicole Schlief .... Herself \r\nSusan Smith .... Herself, Child Murderess \r\n\r\n(archive footage) \r\nMatt Stone .... Himself, Former Columbine Student \r\nMark Taylor .... Himself, Columbine Victim \r\nSalvador Allende .... \r\n\r\nHimself, President of Salvador (archive footage) (uncredited) \r\nDenise Ames .... Sexy Girl with Gun (uncredited) \r\nJohn Ashcroft .... Himself, \r\n\r\nAttorney General (archive footage) (uncredited) \r\nDick Cheney .... Himself, Vice President of the United States (archive footage) (uncredited) \r\n\r\n\r\nBill Clinton .... Himself, President of the United States, 1992-2000 (archive footage) (uncredited) \r\nSeth Collins .... Himself (uncredited) \r\n\r\n\r\nJeff Doucett .... Himself, Man Shot at Airport (archive footage) (uncredited) \r\nR. Budd Dwyer .... Himself (archive footage) (uncredited) \r\n\r\n\r\nLeon Errol .... Actor in Movie Clip (archive footage) (uncredited) \r\nEric Harris .... Himself, Columbine Murderer (archive footage) \r\n\r\n(uncredited) \r\nAdolf Hitler .... Himself (archive footage) (uncredited) \r\nBrandon T. Jackson .... Himself (uncredited) \r\nDaniel V. Jones \r\n\r\n.... Himself (archive footage) (uncredited) \r\nJohn Kerry .... Himself (archive footage) (uncredited) \r\nDylan Klebold .... Himself, Columbine \r\n\r\nMurderer (archive footage) (uncredited) \r\nJoseph Lieberman .... Himself (archive footage) (uncredited) \r\nDennis Morgan .... Actor in Movie \r\n\r\nClip (archive footage) (uncredited) \r\nHarold Moss .... Characters in \'A Brief History of the United States of America\' (voice) (uncredited) \r\r\n\r\n\nOliver North .... Himself (archive footage) (uncredited) \r\nTrey Parker .... Himself/Stan Marsh (voice) (uncredited) (archive footage) \r\nGary \r\n\r\nPlauche .... Himself, Gunman at Airport (archive footage) (uncredited) \r\nPrince Charles .... Himself (archive footage) (uncredited) \r\nPat \r\n\r\nRobertson .... Himself (archive footage) (uncredited) \r\nChris Rock .... Himself (archive footage) (uncredited) \r\nDonald Rumsfeld .... Himself \r\n\r\n(archive footage) (uncredited) \r\nJessica Savitch .... Herself (archive footage) (uncredited) \r\n \r\n3. Original Music by: \r\nJeff Gibbs \r\r\n\r\n\n\r\n4. Non-Original Music by: \r\nCharles Albertine (song \"Bandstand Boogie\") \r\nIrving Berlin (song \"I Want To Go Back To Michigan\") \r\r\n\r\n\nBill Berry (song \"How the West Was Won and Where It Got Us\") \r\nPeter Buck (song \"How the West Was Won and Where It Got Us\") \r\nLance Doss \r\n\r\n (song \"Corporation Man\") \r\nLarry Elgart (song \"Bandstand Boogie\") \r\nLes Elgart (song \"Bandstand Boogie\") \r\nBob Golden (song \r\n\r\n\"Corporation Man\") \r\nDexter Holland (song \"Americana\") (as Bryan Kieth Holland) \r\nBob Horn (song \"Bandstand Boogie\") \r\nJohn 5 (song \r\n\r\n\"Fight Song\") (as John Lowry) \r\nJohn 5 (song \"The Nobodies\") (as John Lowery) \r\nVictor Krummenacher (song \"Take the Skinheads Bowling\") \r\r\n\r\n\nJohn Lennon (song \"Happiness Is a Warm Gun\") \r\nDavid Lowery (song \"Take the Skinheads Bowling\") \r\nMarilyn Manson (songs \"Fight Song\" \r\n\r\nand \"The Nobodies\") (as Brian Warner) \r\nPaul McCartney (song \"Happiness Is a Warm Gun\") \r\nDonald McCloskey (song \"Corporation Man\") \r\r\n\r\n\nMike Mills (song \"How the West Was Won and Where It Got Us\") \r\nChristopher Molla (song \"Take the Skinheads Bowling\") \r\nTrey Parker \r\n\r\n(song \"Mountain Town\" from \"South Park\") \r\nFred Rogers (song \"Won\'t You Be My Neighbour\") \r\nJonathan Segel (song \"Take the Skinheads \r\n\r\nBowling\") \r\nMarc Shaiman (song \"Mountain Town\" from \"South Park\") \r\nMichael Stipe (song \"How the West Was Won and Where It Got Us\") \r\r\n\r\n\nBob Thiele (song \"What a Wonderful World\") (as Robert Thiele) \r\nGeorge David Weiss (song \"What a Wonderful World\") (as George Weiss) \r\r\n\r\n\nWilliam Steffe (song \"Battle Hymn of the Republic\") (uncredited) \r\nLudwig van Beethoven (from \"Symphony No.9 In D Minor {Choral}, Opus \r\n\r\n125\") (uncredited)',0,'6',2,'2004-10-21 08:59:19',114,1,'Michael Moore','Michael Moore','Jeff Gibbs','PAL - Anamorph Widescreen (1,78:1) \r\n\r\n[16:9]','Audio: German (5.1), English (5.1) - Subtitles: German'), (86,1,'Goodbye Lenin!',2003,'',0,'-1',2,'2004-10-21 08:59:34',0,1,'Wolfgang Becker','','','',''), (87,1,'Im inneren Kreis [OT: People I Know]',2002,'',0,'-1',2,'2004-10-21 08:59:52',0,1,'Daniel Algrant','','','',''), (88,1,'Jackie Brown [OT: Jackie Brown]',1997,'',0,'-1',2,'2004-10-21 09:02:50',0,1,'Quentin Tarantino','','','',''), (89,1,'Leolo [OT: Léolo]',1992,'',0,'-1',2,'2004-10-21 09:02:59',0,1,'Jean-Claude Lauzon','','','',''), (90,1,'Long Walk Home [OT: Rabbit-Proof Fence]',2002,'',0,'-1',2,'2004-10-21 09:03:48',0,1,'Phillip Noyce','','','',''), (91,1,'Matrix [OT: The Matrix]',1999,'',0,'1',2,'2004-10-21 09:03:57',0,1,'Andy & Larry Wachowski','','','',''), (92,1,'Nackt',2002,'',0,'-1',2,'2004-10-21 09:04:08',0,1,'Doris Dörrie','','','',''), (93,1,'Nacktschnecken',2004,'',0,'-1',2,'2004-10-21 09:04:18',0,1,'Michael Glawogger','','','',''), (94,1,'Underground [OT: Underground - Bila jednom jedna zemlja]',1995,'',0,'-1',2,'2004-10-21 09:04:31',0,1,'Emir Kusturica','','','',''), (95,1,'X-Men [OT: X-Men]',2000,'',0,'-1',2,'2004-10-21 09:04:41',0,1,'Bryan Singer','','','',''), (206,1,'Geister (Teil I & Teil II) [OT: Riget & Riget II]',1997,'',0,'3',2,'2005-12-27 11:41:23',580,1,'Lars von Trier','','','',''), (98,1,'Boys Don\'t Cry [OT: Boys Don\'t Cry]',1999,'1. Writing credits: \r\nKimberly Peirce \r\nAndy Bienen \r\n \r\n2. Cast (in credits \r\n\r\norder) verified as complete: \r\nHilary Swank .... Teena Brandon/Brandon Teena \r\nChloë Sevigny .... Lana Tisdel \r\nPeter Sarsgaard .... John \r\n\r\nLotter \r\nBrendan Sexton III .... Tom Nissen \r\nAlicia Goranson .... Candace \r\nAlison Folland .... Kate \r\nJeanetta Arnette .... Lana\'s \r\n\r\nMom (as Jeannetta Arnette) \r\nRob Campbell .... Brian \r\nMatt McGrath .... Lonny \r\nCheyenne Rushing .... Nicole \r\nRobert Prentiss .... \r\n\r\nTrucker \r\nJosh Ridgway .... Kwik Stop Cashier \r\nCraig Erickson .... Trucker in Kwik Stop \r\nStephanie Sechrist .... April Lotter, John\'s \r\n\r\nDaughter \r\nJerry Haynes .... Judge \r\nLou Perry .... Sheriff (as Lou Perryman) \r\nLisa Renee Wilson .... Pam (as Lisa Wilson) \r\nJackson \r\n\r\nKane .... Sam Phillips \r\nJoseph Gibson .... Tom \r\nMichael Tripp .... Nerdy Teen \r\nShana McClendon .... Girl in Car \r\nLibby Villari .... \r\n\r\nNurse \r\nPaige Carl Griggs .... Dave, Deputy \r\nGail Cronauer .... Clerk \r\nrest of cast listed alphabetically: \r\nChad Briley .... Extra \r\n\r\n(uncredited) \r\nRyan Thomas Brockington .... Kiss (uncredited) \r\nChristophe Dahlkvist .... Truck Driver (uncredited) \r\nMichelle Fairbanks \r\n\r\n.... Girl in Car (uncredited) \r\nGabriel Horn .... Lester, Restraining Order Guy (uncredited) \r\nNatalie Zea .... (uncredited) \r\n \r\n3. \r\n\r\nOriginal Music by: \r\nNathan Larson',0,'2',2,'2004-12-08 23:15:50',114,1,'Kimberly Peirce','Kimberly Peirce & Andy Bienen','Nathan \r\n\r\nLarson','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1), English (5.1) - Subtitles: English, Turkey, German (aurally \r\n\r\nhandicapped)'), (99,1,'Bockerer, Der (Teil 3 und Teil 4)',2000,'',0,'-1',2,'2004-12-20 19:38:37',0,1,'Franz Antel / Franz Antel','','','',''), (100,1,'Brokedown Palace [OT: Brokedown Palace]',1999,'1. Writing credits (WGA): \r\nAdam Fields (story) \r\nDavid Arata (story)\r\nDavid \r\n\r\nArata (screenplay)\r\n \r\n2. Cast (in credits order) verified as complete: \r\nClaire Danes .... Alice Marano \r\nKate Beckinsale .... Darlene \r\n\r\nDavis \r\nBill Pullman .... \'Yankee\' Hank Green \r\nJacqueline Kim .... Yon Greene \r\nLou Diamond Phillips .... Roy Knox \r\nDaniel Lapaine \r\n\r\n.... Nick Parks \r\nTom Amandes .... Doug Davis \r\nAimee Graham .... Beth Ann Gardener \r\nJohn Doe .... Bill Marano \r\nKay Tong Lim .... \r\n\r\nChief Det. Jagkrit \r\nBeulah Quo .... Guard Velie \r\nHenry O .... Emissary to Crown \r\nBahni Turpin .... Jamaican Prisoner \r\nAmanda De \r\n\r\nCadenet .... English Prisoner \r\nIntira Jaroenpura .... Shub, Prisoner \r\nLilia Cuntapay .... Old Prisoner \r\nSomsuda Chotikasupa .... \r\n\r\nGlasses Guard \r\nMaya Elise Goodwin .... Mary \r\nChad Todhunter .... Ferg \r\nLori Lethin .... Lori Davis \r\nHayley Palmer .... Heidi Davis \r\n\r\n\r\nRhency Padilla .... Pool Boy \r\nVictor Neri .... Bellhop \r\nErmie Concepcion .... Paku (as Ermie M. Concepcion) \r\nNopachai Israngkur na \r\n\r\nAyudhya .... Cabbie #1 \r\nAyutthaya A. Payakkapong .... Cabbie #2 \r\nSeng Kawee .... Shouting Soldier (as Kawee Sirikhanaerut) \r\nSahajak \r\n\r\nBoonthanakit .... Sgt. Choy \r\nVal Victa .... Lt. Tung (as Mario Valentino Victa) \r\nJoonee Gamboa .... Attorney Montree \r\nPhikun M. Sabino \r\n\r\n.... Guard Sorhirun \r\nToun Tolentino .... Old Dorm Guard \r\nTawewan Promgontha .... Young Dorm Guard \r\nSawan Edo .... Guard Sawalee \r\r\n\r\n\nSudarat L. Gaoat .... Guard Mangman \r\nTawatchai Teeranusoon .... Thai Judge #1 \r\nM. Tom Visvachat .... Thai Judge #2 \r\nTony Carney .... \r\n\r\nDoug\'s Translator \r\nPichada de Jesus .... Darlene\'s Translator \r\nSutagorn Jaiman .... Prosecutor \r\nPathompong Supalert .... Defense \r\n\r\nAttorney \r\nAchavasak Phitak .... Officer Deesom \r\nSongkran Somboon .... Officer Changjarung \r\nHarry Northup .... Leon Smith (as Harry E. \r\n\r\nNorthup) \r\nJohnny Ray McGhee .... DEA Agent \r\nPhanom Promguntha .... Customs Supervisor \r\nJake de Asis .... Royal Thai Army Guard \r\r\n\r\n\nOlympio D. Franco .... Sick Prisoner \r\nRonnie Lazaro .... Security \r\nParinya Pattamadilok .... Shop Owner \r\nYuthana Kaewdaeng .... Thai \r\n\r\nVendor \r\nrest of cast listed alphabetically: \r\nPaul Walker .... Jason (uncredited) \r\n \r\n3. Original Music by: \r\nAbby Dobson (song \"Even \r\n\r\nwhen I\'m sleeping\") \r\nP.J. Harvey (song \"The Wind\") \r\nHummie Mann (additional music: fight scene) \r\nDavid Newman \r\n \r\n4. Non-\r\n\r\nOriginal Music by: \r\nJoe Strummer (song \"Rock the Casbah\")',0,'2',2,'2004-12-20 19:39:17',96,1,'Jonathan Kaplan','Adam Fields & David \r\n\r\nArata (story) / David Arata (screenplay)','David Newman','PAL - Anamorph Widescreen (2,35:1) [16:9]','Audio: German (5.1), English (5.1) - \r\n\r\nSubtitles: German, English, German (aurally handicapped)'), (101,1,'Es war einmal in Amerika [OT: Once Upon a Time in America]',1984,'',0,'2',2,'2004-12-20 19:39:37',0,1,'Sergio Leone','','','',''), (102,1,'Mifune [OT: Mifunes sidste sang]',1999,'',0,'-1',2,'2004-12-20 19:39:45',0,1,'Søren Kragh-Jacobsen','','','',''), (103,1,'Müllers Büro',1986,'',0,'-1',2,'2004-12-20 19:39:55',0,1,'Niki List & Hans Selikovsky','','','',''), (104,1,'Requiem for a Dream [OT: Requiem for a Dream]',2000,'',0,'-1',2,'2004-12-20 19:40:19',0,1,'Darren Aronofsky','','','',''), (105,1,'Naked Lunch [OT: Naked Lunch]',1991,'',0,'-1',2,'2004-12-20 19:40:29',0,1,'David Cronenberg','','','',''), (106,1,'X-Men 2 [OT: X2]',2003,'',0,'-1',2,'2004-12-20 19:40:39',0,1,'Bryan Singer','','','',''), (107,1,'Dead Man [OT: Dead Man]',1995,'',0,'-1',2,'2004-12-20 19:40:52',0,1,'Jim Jarmusch','','','',''), (109,1,'Ring [OT: The Ring]',2002,'',0,'-1',2,'2004-12-20 19:41:11',0,1,'Gore Verbinski','','','',''), (110,1,'Almost Famous - Fast berühmt [OT: Almost Famous]',2000,'1. Writing credits (WGA): \r\nCameron Crowe (written by)\r\n \r\n2. Cast (in \r\n\r\ncredits order) verified as complete: \r\nBilly Crudup .... Russell Hammond \r\nFrances McDormand .... Elaine Miller \r\nKate Hudson .... Penny \r\n\r\nLane \r\nJason Lee .... Jeff Bebe \r\nPatrick Fugit .... William Miller \r\nZooey Deschanel .... Anita Miller \r\nMichael Angarano .... Young \r\n\r\nWilliam Miller \r\nNoah Taylor .... Dick Roswell \r\nJohn Fedevich .... Ed Vallencourt \r\nMark Kozelek .... Larry Fellows \r\nFairuza Balk .... \r\n\r\nSaphire Loveson \r\nAnna Paquin .... Polexia Aphrodisia \r\nOlivia Rosewood .... Beth From Denver \r\nJimmy Fallon .... Dennis Hope \r\nPhilip \r\n\r\nSeymour Hoffman .... Lester Bangs \r\nLiz Stauber .... Leslie \r\nBijou Phillips .... Estrella Starr \r\nAlice Marie Crowe .... Mrs. Deegan \r\r\n\r\n\nJ.J. Cohen .... Roadie Scully \r\nGary Kohn .... Roadie Gregg (as Gary Douglas Kohn) \r\nRay Porter .... Roadie Mick \r\nMark Pellington .... \r\n\r\nFreddy \r\nEion Bailey .... Jann Wenner \r\nTerry Chen .... Ben Fong-Torres \r\nRainn Wilson .... David Felton \r\nErin Foley .... Alison The \r\n\r\nFact Checker \r\nJesse Caron .... Darryl \r\nCharles Walker .... Principal \r\nJay Baruchel .... Vic Munoz \r\nPauley Perrette .... Alice Wisdom \r\n\r\n\r\nPeter Frampton .... Reg \r\nZack Ward .... The Legendary Red Dog \r\nMitch Hedberg .... Eagles Road Manager \r\nDevin Corey .... The Who \r\n\r\nRoad Manager \r\nPete Droge .... Hyatt Singer \r\nElaine Summers .... Hyatt Singer \r\nEric Stonestreet .... Sheldon the Desk Clerk \r\nMarc \r\n\r\nMaron .... Angry Promoter \r\nShane Willard .... Ticket Scalper \r\nChris McElprang .... Aaron Amedori \r\nJohn Patrick Amedori .... Himself \r\r\n\r\n\nKate Peckham .... Quiet Girl \r\nJulia Schuler .... Waving Girl \r\nBrian Vaughan .... Real Topeka Kid \r\nAnthony Martelli .... Poolside \r\n\r\nProvocateur \r\nZach Clairville .... Acid Kid \r\nIan Ridgeway .... Topeka Partier \r\nIsaac Curtiss .... Topeka Partier \r\nChris Lennon Davis \r\n\r\n.... Topeka Partier \r\nAimee Joy .... Topeka Partier \r\nHeather Baldwin .... Topeka Partier \r\nScott N. Stevens .... Co-Pilot \r\nKevin \r\n\r\nSussman .... Lenny \r\nReathel Bean .... Warwick Hotel Clerk \r\nTom Riis Farrell .... Plaza Doctor \r\nLaura Bastianelli .... Nurse \r\nSamuel \r\n\r\nAaron Roberson .... High School Band Member \r\nBrian Andreasen .... High School Band Member \r\nJared Hren .... High School Band Member \r\nMary \r\n\r\nDragicevich .... High School Band Member \r\nAura Barr .... High School Band Member \r\nDaniel Wilson .... Journalism Teacher \r\nWilliam \r\n\r\nBarillaro .... Bus Driver \r\nHolly Maples .... Flight Attendant \r\nMatt Griesser .... PSA Co-Pilot \r\nSusan Yeagley .... Have a Nice Day \r\n\r\nStewardess \r\nNicole Spector .... Hippie Girl at Airport \r\nPatrick Irmen .... Wanna Get High Guy \r\nNick Swardson .... Insane Bowie Fan \r\r\n\r\n\nCindy Weber .... Shocked Elevator Family Member \r\nKris Weber .... Shocked Elevator Family Member \r\nKaitlyn Weber .... Shocked Elevator \r\n\r\nFamily Member \r\nKimberly Weber .... Shocked Elevator Family Member \r\nKristin Weber .... Shocked Elevator Family Member \r\nSamer Sourakli .... \r\n\r\n Mustache Boy \r\nJann Wenner .... Legend in Cab \r\nMichelle Moretti .... Swingo\'s Desk Clerk \r\nAna Maria Quintana .... Arizona Housekeeper \r\n\r\n\r\nLisa Buchignani .... Arizona Housekeeper \r\nrest of cast listed alphabetically: \r\nWayne Doba .... Leonard Barr (untitled director\'s cut \r\n\r\nonly) \r\nBodhi Elfman .... Alice\'s Manager (untitled director\'s cut only) \r\nWilliam Mapother .... Bartender (scenes deleted) \r\nShannon \r\n\r\nSaint Ryan .... Musician (director\'s cut only) \r\nAndrew Briedis .... Boy with Bike (uncredited) \r\nMark Cirillo .... Bowie Groupie \r\n\r\n(director\'s cut only) (uncredited) \r\nEmmy Collins .... Hotel Loadie (uncredited) \r\nKyle Gass .... Quince Allen (only in director\'s cut) \r\n\r\n(uncredited) \r\nMelissa Gastgaber .... Groupie (uncredited) \r\nEric Rosenberg .... David Bowie\'s Manager (uncredited) \r\nPatrick Williams .... \r\n\r\n Roadie (uncredited) \r\n \r\n3. Original Music by: \r\nCameron Crowe (songs) \r\nPeter Frampton (songs) \r\nTony Iommi (songs \"Paranoid\" \r\n\r\nand \"Sweet Leaf\") (as Frank Iommi) \r\nMike McCready (songs) \r\nRonnie Van Zant (song \"Simple Man\") \r\nAnn Wilson (songs) \r\nNancy \r\n\r\nWilson (songs) \r\n \r\n4. Non-Original Music by: \r\nIan Anderson (song \"Teacher\") \r\nJon Anderson (songs \"Roundabout and \"Your Move\") \r\n\r\n\r\nRoss Bagdasarian (song \"The Chipmunk Song\") (as Ross Bagdasarian Sr.) \r\nWalter Becker (song \"Reeling in the Years\") \r\nRitchie Blackmore \r\n\r\n (song \"Burn\") \r\nEric Carmen (song \"Go All the Way\") \r\nDavid Coverdale (song \"Burn\") \r\nBurton Cummings (song \"Albert Flasher\") \r\r\n\r\n\nDonald Fagen (song \"Reeling in the Years\") \r\nLowell George (song \"Easy to Slip\") \r\nBuddy Holly (song \"Peggy Sue\") \r\nGlenn Hughes \r\n\r\n(song \"Burn\") \r\nElmore James (song \"One Way Out\") \r\nElton John (songs \"Tiny Dancer\" and \"Mona Lisas and Mad Hatters\") \r\nJohn Paul Jones \r\n\r\n (song \"Misty Mountain Hop\") \r\nJohn Keene (song \"Something in the Air\") (as John Keen) \r\nSimon Kirke (song \"Wishing Well\") \r\nPaul \r\n\r\nKossoff (song \"Wishing Well\") \r\nJon Lord (song \"Burn\") \r\nJoni Mitchell (song \"River\") \r\nOzzy Osbourne (songs \"Paranoid\" and \"Sweet \r\n\r\nLeaf\") (as John Osbourne) \r\nJimmy Page (songs \"Bron-Y-Aur\", \"Misty Mountain Hop\", \"The Rain Song\", \"Tangerine\", and \"That\'s the Way\") \r\nIan \r\n\r\nPaice (song \"Burn\") \r\nNorman Petty (song \"Peggy Sue\") \r\nRobert Plant (songs \"Misty Mountain Hop\", \"The Rain Song\" and \"That\'s the Way\") \r\n\r\n \r\nIggy Pop (song \"Search and Destroy\") \r\nLou Reed (song \"I\'m Waiting for the Man\") \r\nPaul Rodgers (song \"Wishing Well\") \r\nGary \r\n\r\nRossington (song \"Simple Man\") \r\nTodd Rundgren (song \"It Wouldn\'t Have Made Any Difference\") \r\nSky Saxon (song \"Mr. Farmer\") \r\nShel \r\n\r\nSilverstein (song \"The Cover of the Rolling Stone\") \r\nPaul Simon (song \"America\") \r\nCat Stevens (song \"The Wind\") \r\nRod Stewart \r\n\r\n(song \"Every Picture Tells a Story\") \r\nPete Townshend (song \"Sparks\") \r\nBill Ward (songs \"Paranoid\" and \"Sweet Leaf\") (as William Ward) \r\n\r\n\r\nJames Williamson (song \"Search and Destroy\") \r\nSonny Boy Williamson (song \"One Way Out\") \r\nCarl Wilson (song \"Feel Flows\") \r\r\n\r\n\nStevie Wonder (song \"My chérie amour\") \r\nNeil Young (songs \"Everybody Knows This Is Nowhere\" and \"Cortez The Killer\")',0,'2',2,'0000-00-00 00:00:00',118,1,'Cameron Crowe','Cameron Crowe','Cameron Crowe, Peter Frampton, Mike McCready','PAL - Anamorph Widescreen (1,85:1) \r\n\r\n[16:9]','Audio: German (DTS 5.1), English (5.1) - Subtitles: German, English, Turkey, Dutch'), (111,1,'American Psycho 2 [OT: American Psycho: All American Girl]',2002,'1. Writing credits: \r\nAlex Sanger \r\nKaren Craig \r\n \r\n2. \r\n\r\nCast (in credits order) complete, awaiting verification: \r\nMila Kunis .... Rachael Newman \r\nWilliam Shatner .... Prof. Robert \'Bobby\' \r\n\r\nStarkman \r\nGeraint Wyn Davies .... Eric Daniels \r\nRobin Dunne .... Brian Leads \r\nLindy Booth .... Cassandra Blaire \r\nCharles Officer .... \r\n\r\n Keith Lawson \r\nJenna Perry .... Young Rachael \r\nMichael Kremko .... Patrick Bateman \r\nKate Kelton .... Clara \r\nQuancetia Hamilton .... \r\n\r\nNeighbour \r\nJohn Healy .... Gill \r\nAndrew Scorer .... Janitor \r\nKim Poirier .... Barbara Brown \r\nKim Schraner .... Elizabeth McGuire \r\r\n\r\n\nShoshana Sperling .... Gertrude Fleck \r\nThomas Dozol .... Waiter \r\nLynne Deragon .... Rachael\'s Mom \r\nPhilip Williams .... Rachael\'s \r\n\r\nDad \r\nKay Hawtrey .... Daniels\' Mom \r\nNeil Crone .... Officer Harvey \r\nBoyd Banks .... Officer Jimmy \r\nGreer Kent .... Mary, Daniels\' \r\n\r\nSecretary \r\nSusan Laney Dalton .... The Real Rachael Newman \r\nBilly MacLellan .... Cadet #1 \r\nRowan Tichenor .... Cadet #2 \r\nRobin \r\n\r\nBublick .... Maitre D\' \r\n \r\n3. Original Music by: \r\nNorman Orenstein',0,'22',2,'2004-12-20 19:41:39',85,1,'Morgan J. Freeman','Alex \r\n\r\nSanger & Karen Craig','Norman Orenstein','PAL- Anamorph Widescreen (1,85:1) [16:9]','Audio: German (DTS/DD 5.1, DD2.0), English (DTS/DD 5.1, DD \r\n\r\n2.0)'), (112,1,'Blair Witch 2 [OT: Book of Shadows: Blair Witch 2]',2000,'1. Writing credits (WGA): \r\nDaniel Myrick (characters) and \r\nEduardo \r\n\r\nSánchez (characters)\r\nDick Beebe (written by) and \r\nJoe Berlinger (written by)\r\n \r\n2. Cast (in credits order): \r\nKim Director .... \r\n\r\n Kim Diamond \r\nJeffrey Donovan .... Jeffrey Patterson \r\nErica Leerhsen .... Erica Geerson \r\nTristine Skyler .... Tristen Ryler (as Tristen \r\n\r\nSkyler) \r\nStephen Barker Turner .... Stephen Ryan Parker \r\nKurt Loder .... Himself \r\nChuck Scarborough .... Himself \r\nBruce Reed .... \r\n\r\nBurkitsville Resident #1 \r\nLynda Millard .... Burkitsville Resident #2 \r\nDeb Burgoyne .... Burkitsville Resident #3 \r\nAndrea Cox .... \r\n\r\nBurkitsville Resident #4 \r\nJoe Berlinger .... Burkitsville Tourist #1 \r\nSara Phillips .... Burkitsville Tourist #2 \r\nLanny Flaherty .... \r\n\r\nSheriff Cravens \r\nPete Burris .... MBI Man #1 \r\nBriton Green .... Stoner #1 \r\nErik Jensen .... Stoner #2 \r\nPeggy K. Chang .... Foreigner \r\n\r\n#1 \r\nTony Tsang .... Foreigner #2 \r\nAnja Baron .... Foreigner #3 \r\nKevin Murray .... Doctor \r\nKeira Naughton .... Nurse \r\nLauren \r\n\r\nHulsey .... Eillen Treacle \r\nEd Sala .... MBI Man #2 \r\nTyler Zeisloft .... Teenager #1 \r\nRichard Kirkwood .... Teenager #2 \r\nJustin Fair \r\n\r\n.... Teenager #3 \r\nRaynor Scheine .... Rustin Parr (as Raynor Scheine) \r\nBrilane Bowman .... Ham Lady \r\nKennen Sisco .... Peggy \r\nRobert \r\n\r\nM. Kelly .... MBI Man #3 \r\nDina Napoli .... Reporter, WBAL \r\nLandra Booker .... Reporter, Fox 45 \r\nJacqui Allen .... Reporter \r\nSloane \r\n\r\nBrown .... Reporter, WJZ 13 \r\nrest of cast listed alphabetically: \r\nHeidi Burger .... Print Reporter \r\nRyan Slattery \r\nHeather Donahue \r\n\r\n.... Herself (archive footage) (uncredited) \r\nRoger Ebert .... Himself (uncredited) \r\nCathy Haase .... First Nurse (uncredited) \r\nJoshua \r\n\r\nLeonard .... Himself (archive footage) (uncredited) \r\nJulie Mabry .... Hiker in Woods (uncredited) \r\nMichael C. Williams .... Himself \r\n\r\n(archive footage) (uncredited) \r\n \r\n3. Original Music by: \r\nCarter Burwell \r\nJoshua Homme (song \"Feel Good Hit Of The Summer\") (as \r\n\r\nQueens of the Stone Age) \r\nTony Iommi (song) \r\nMarilyn Manson (songs) \r\nJason Miller (song \"The Reckoning\") \r\nP.O.D. (song \"Lie \r\n\r\nDown\") \r\nSonny Sandoval (song \"Lie Down\") \r\nRob Zombie (song \"Dragula\") \r\n \r\n4. Non-Original Music by: \r\nMarilyn Manson (song \r\n\r\n\"Disposable Teens\")',0,'22',2,'2004-12-20 19:41:54',86,1,'Joe Berlinger','Daniel Myrick & Eduardo Sánchez (characters) / Dick Beebe & Joe \r\n\r\nBerlinger','Carter Burwell','PAL -Anamorph Widescreen (1,78:1) [16:9]','Audio: German (DTS/DD 5.1, DD 2.0), English (DD 5.1)'), (113,1,'Blood Simple (Director\'s Cut) [OT: Blood Simple]',1984,'1. Writing credits: \r\nJoel Coen (written by) \r\nEthan Coen (written \r\n\r\nby)\r\n \r\n2. Cast (in credits order) verified as complete: \r\nJohn Getz .... Ray \r\nFrances McDormand .... Abby \r\nDan Hedaya .... Julian \r\n\r\nMarty \r\nM. Emmet Walsh .... Loren Visser (private detective) \r\nSamm-Art Williams .... Meurice \r\nDeborah Neumann .... Debra \r\nRaquel Gavia \r\n\r\n.... Landlady \r\nVan Brooks .... Man from Lubbock \r\nSeñor Marco .... Mr. Garcia \r\nWilliam Creamer .... Old cracker \r\nLoren Bivens .... \r\n\r\nStrip-bar exhorter \r\nBob McAdams .... Strip-bar exhorter \r\nShannon Sedwick .... Stripper \r\nNancy Finger .... Girl on overlook \r\nWilliam \r\n\r\nPreston Robertson .... Radio evangelist (voice) \r\nrest of cast listed alphabetically: \r\nHolly Hunter .... Helene Trend (voice) (uncredited) \r\n\r\n\r\nBarry Sonnenfeld .... Marty\'s vomiting (voice) (uncredited) \r\n \r\n3. Original Music by: \r\nCarter Burwell \r\nJim Roberge \r\n',0,'22',2,'2004-12-20 19:42:16',95,1,'Joel Coen & Ethan Coen (uncredited)','Joel Coen & Ethan Coen','Carter Burwell, Jim Roberge','PAL - \r\n\r\nAnamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1), English (5.1) - Subtitles: German, English'), (114,1,'Grasgeflüster [OT: Saving Grace]',2000,'',0,'-1',2,'2004-12-20 19:42:26',0,1,'Andreas Dresen','','','',''), (115,1,'Hole, The [OT: The Hole]',2001,'',0,'-1',2,'2004-12-20 19:42:39',0,1,'Nick Hamm','','','',''), (116,1,'Kafka [OT: Kafka]',1991,'',0,'-1',2,'2004-12-20 19:42:47',0,1,'Steven Soderbergh','','','',''), (117,1,'Kids [OT: Kids]',1995,'',0,'-1',2,'2004-12-20 19:42:56',0,1,'Larry Clark','','','',''), (118,1,'Lampedusa [OT: Respiro]',2002,'',0,'-1',2,'2004-12-20 19:43:04',0,1,'Emanuele Crialese','','','',''), (119,1,'Monty Pythons Das Leben des Brian [OT: Monty Python\'s Life of Brian]',1979,'1. Writing credits: \r\nGraham Chapman (written by) \r\r\n\r\n\nJohn Cleese (written by) \r\nTerry Gilliam (written by) \r\nEric Idle (written by) \r\nTerry Jones (written by) \r\nMichael Palin \r\n\r\n(written by)\r\n \r\n2. Cast (in credits order) verified as complete: \r\nGraham Chapman .... Wise Man #2/Brian Cohen/Biggus Dickus \r\nJohn Cleese \r\n\r\n.... Wise Man #1/Reg/Jewish Official/Centurion/Deadly Dirk/Arthur \r\nTerry Gilliam .... Man Even Further Forward/Revolutionary/Jailer/Blood & \r\n\r\nThunder Prophet/Geoffrey/Audience Member/Crucifee \r\nEric Idle .... Wiseguy/Stan (Loretta)/Harry the Haggler/Culprit Woman/Warris/Intensely Dull \r\n\r\nYouth/Jailer\'s Assistant/Otto/Lead Singer Crucifee \r\nTerry Jones .... Mandy Cohen/Colin/Simon the Holy Man/Bob Hoskins/Saintly Passer-by/Alarmed \r\n\r\nCrucifixion Assistant \r\nMichael Palin .... Wise Man #3/Mr. Big Nose/Francis/Mrs. A/Ex-Leper/Announcer/Ben/Pontius Pilate/Boring \r\n\r\nProphet/Eddie/Shoe Follower/Nisus Wettus \r\nTerence Bayler .... Gregory \r\nCarol Cleveland .... Mrs. Gregory \r\nKenneth Colley .... Jesus \r\r\n\r\n\nNeil Innes .... A weedy Samaritan \r\nCharles McKeown .... False Prophet/Blind Man/Giggling Guard/Stig \r\nJohn Young .... Matthias, Son of \r\n\r\nDeuteronomy of Gath \r\nGwen Taylor .... Mrs. Big Nose \r\nSue Jones-Davies .... Judith \r\nPeter Brett \r\nJohn Case .... Pilate\'s Wife \r\r\n\r\n\nChris Langham .... Alfonso/Giggling Guard \r\nAndrew MacLachlan .... Another Official Stoners Helper/Giggling Guard \r\nBernard McKenna .... \r\n\r\nParvus/Official Stoners Helper/Giggling Guard \r\nSpike Milligan .... Spike \r\nrest of cast listed alphabetically: \r\nGeorge Harrison .... Mr. \r\n\r\nPapadopolous (uncredited) \r\nCharles Knode .... Passer-by (uncredited) \r\n \r\n3. Original Music by: \r\nGeoffrey Burgon \r\nEric Idle (song \r\n\r\n\"Always Look on the Bright Side of Life...\") \r\nMichael Palin (Brian\'s song)',0,'5',2,'2004-12-20 19:43:21',90,1,'Terry Jones','Graham \r\n\r\nChapman, John Cleese, Terry Gilliam, Eric Idle, Terry Jones & Michael Palin','Geoffrey Burgon','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (Mono), English (5.1), Hungarian (5.0) - Subtitles: German, English, English (aur. handic.), Arabian, Bulgarian, Danish, Finnish, \r\n\r\nFrench, Greek, Hebrew, Hindi, Dutch, Icelandic, Italian, Croatian, Norwegian, Polish, Portuguese, Swedish, '), (120,1,'Rumble Fish',1983,'',0,'-1',2,'2004-12-20 19:43:34',0,1,'Francis Ford Coppola','','','',''), (121,1,'Traffic - Macht des Kartells [OT: Traffic]',2000,'',0,'-1',2,'2004-12-20 19:43:50',0,1,'Steven Soderbergh','','','',''), (145,1,'Freaks - Missgestaltete [OT: Freaks]',1932,'',0,'2',2,'2005-03-15 07:56:00',60,1,'Tod Browning','','','',''), (123,1,'Sie sind unter uns [OT: Nos miran]',2002,'',0,'-1',2,'2004-12-20 19:44:13',0,1,'Norberto López Amado','','','',''), (124,1,'Unsichtbare Augen [OT: My Little Eye]',2002,'',0,'-1',2,'2004-12-20 19:44:26',0,1,'Marc Evans','','','',''), (209,1,'Element of Crime [OT: Forbrydelsens element]',1984,'',0,'2',2,'2006-01-18 07:01:06',0,1,'Lars von Trier','','','',''), (210,1,'Europa [OT: Europa]',1991,'',0,'2',2,'2006-01-18 07:02:14',0,1,'Lars von Trier','','','',''), (211,1,'Epidemic [OT: Epidemic]',1987,'',0,'2',2,'2006-01-18 07:03:41',0,1,'Lars von Trier','','','',''), (208,2,'Roter Drache [OT: Red Dragon]',2002,'',0,'2',2,'2005-12-27 11:45:20',119,1,'Brett Ratner','','','',''), (128,1,'Echoes - Stimmen aus der Zwischenwelt [OT: Stir of Echoes]',1999,'',0,'-1',2,'2004-12-26 23:38:30',0,1,'David Koepp','','','',''), (129,1,'Gathering, The [OT: The Gathering]',2002,'',0,'-1',2,'2004-12-26 23:38:49',0,1,'Brian Gilbert','','','',''), (130,1,'Ghost Ship - Meer des Grauens [OT: Ghost Ship]',2002,'',0,'-1',2,'2004-12-26 23:39:14',0,1,'Steve Beck','','','',''), (131,1,'Paperhouse - Albträume werden wahr [OT: Paperhouse]',1988,'',0,'-1',2,'2004-12-26 23:39:51',0,1,'Bernard Rose','','','',''), (132,1,'They - Sie kommen [OT: They]',2002,'',0,'-1',2,'2004-12-26 23:40:38',0,1,'Robert Harmon & Rick Bota','','','',''), (133,1,'Others, The [OT: The Others]',2001,'',0,'-1',2,'2004-12-26 23:40:55',0,1,'Alejandro Amenábar','','','',''), (134,1,'Einsatz, Der [OT: The Recruit]',2003,'',0,'22',2,'2004-12-26 23:41:22',0,1,'Roger Donaldson','','','',''), (135,1,'Calling, The [OT: The Calling]',2000,'',0,'-1',2,'2005-01-03 16:28:18',0,1,'Richard Caesar','','','',''), (136,1,'Birthday Girl - Braut auf Bestellung [OT: Birthday Girl]',2001,'',0,'-1',2,'2005-01-03 16:28:43',0,1,'Jez Butterworth','','','',''), (137,1,'Extreme Risk [OT: Rancid Aluminium]',2000,'',0,'-1',2,'2005-01-03 16:29:41',0,1,'Edward Thomas','','','',''), (138,1,'Identität [OT: Identity]',2003,'',0,'-1',2,'2005-01-03 16:29:56',0,1,'James Mangold','','','',''), (139,1,'Mothman Prophezeiungen, Die [OT: The Mothman Prophecies]',2002,'',0,'-1',2,'2005-01-03 16:30:20',0,1,'Mark Pellington','','','',''), (140,1,'No Man\'s Land [OT: No Man\'s Land]',2001,'',0,'2',2,'2005-01-03 16:30:38',100,1,'Danis Tanovic','','','',''), (141,1,'Space Cowboys [OT: Space Cowboys]',2000,'',0,'-1',2,'2005-01-03 16:31:00',0,1,'Clint Eastwood','','','',''), (142,1,'Wrong Turn [OT: Wrong Turn]',2003,'',0,'3',2,'2005-01-03 16:31:08',0,1,'Rob Schmidt','','','',''), (143,1,'Night on Earth [OT: Night on Earth]',1991,'',0,'-1',2,'2005-01-06 09:19:06',0,1,'Jim Jarmusch','','','',''), (144,1,'Ghost Dog - Der Weg des Samurai [OT: Ghost Dog - The Way of the Samurai]',1999,'',0,'-1',2,'2005-01-06 09:19:25',0,1,'Jim \r\n\r\nJarmusch','','','',''), (146,2,'40 Tage und 40 Nächte [OT: 40 Days and 40 Nights]',2002,'',0,'5',2,'2005-03-15 07:57:07',0,1,'Michael Lehmann','','','',''), (147,2,'Tatsächlich Liebe [OT: Love Actually]',2003,'',0,'5',2,'2005-03-15 07:57:18',0,1,'Richard Curtis','','','',''), (148,1,'Fear Dot Com [OT: Fear dot Com]',2002,'',0,'-1',2,'2005-03-15 07:58:21',0,1,'William Malone','','','',''), (149,1,'Neun Pforten, Die [OT: The Ninth Gate]',1999,'',0,'-1',2,'2005-03-28 15:01:36',0,1,'Roman Polanski','','','',''), (150,1,'Dänische Delikatessen - Darf\'s ein bisschen mehr sein? [OT: De grønne slagtere]',2003,'',0,'-1',2,'2005-04-11 12:26:23',0,1,'Anders Thomas Jensen','','','',''), (151,1,'AI - Künstliche Intelligenz [OT: Artificial Intelligence: AI]',2001,'',0,'2',2,'2005-04-11 12:26:55',0,1,'Steven Spielberg','','','',''), (152,1,'Klavierspielerin, Die [OT: La pianiste]',2001,'',0,'-1',2,'2005-04-11 12:27:06',0,1,'Michael Haneke','','','',''), (153,1,'Mississippi Burning [OT: Mississippi Burning]',1988,'',0,'-1',2,'2005-04-11 12:27:30',0,1,'Alan Parker','','','',''), (154,1,'Anatomie 2',2003,'',0,'-1',2,'2005-04-11 12:27:45',0,1,'Stefan Ruzowitzky','','','',''), (155,1,'Barton Fink [OT: Barton Fink]',1991,'',0,'-1',2,'2005-04-16 20:46:31',0,1,'Joel Coen & Ethan Coen (uncredited)','Joel Coen & \r\n\r\nEthan Coen','','',''), (156,1,'Sonnenallee',1999,'',0,'-1',2,'2005-04-22 17:03:33',0,1,'Leander Haußmann','','','',''), (157,1,'Jacob\'s Ladder - In der Gewalt des Jenseits [OT: Jacob\'s Ladder]',1990,'',0,'-1',2,'2005-04-22 17:04:14',0,1,'Adrian Lyne','','','',''), (158,1,'Gorky Park [OT: Gorki Park]',1983,'',0,'-1',2,'2005-04-22 17:04:32',0,1,'Michael Apted','','','',''), (159,1,'Unzertrennlichen, Die [OT: Dead Ringers]',1988,'',0,'-1',2,'2005-04-22 17:04:54',0,1,'David Cronenberg','','','',''), (163,1,'Anatomie',2000,'',0,'-1',2,'2005-05-26 20:21:36',0,1,'Stefan Ruzowitzky','','','',''), (164,1,'City Hall [OT: City Hall]',1996,'',0,'22',2,'2005-06-15 13:26:09',0,1,'Harold Becker','','','',''), (165,1,'23 - Nichts ist wie es scheint',1998,'',0,'2',2,'2005-08-08 07:16:09',0,1,'Hans-Christian Schmid','','','',''), (166,1,'alaska.de',2000,'',0,'-1',2,'2005-08-08 07:16:26',0,1,'Esther Gronenborn','','','',''), (167,1,'Bandits',1997,'',0,'-1',2,'2005-08-08 07:16:49',0,1,'Katja von Garnier','','','',''), (168,1,'Blechtrommel, Die',1979,'',0,'-1',2,'2005-08-08 07:17:06',0,1,'Volker Schlöndorff','','','',''), (169,1,'Breaking the Waves [OT: Breaking the Waves]',1996,'',0,'2',2,'2005-08-08 07:17:28',0,1,'Lars von Trier','','','',''), (170,1,'Kentucky Fried Movie [OT: The Kentucky Fried Movie]',1977,'',0,'-1',2,'2005-08-08 07:17:49',0,1,'John Landis','','','',''), (171,1,'Vergiss Amerika',2000,'',0,'-1',2,'2005-08-08 07:18:03',0,1,'Vanessa Jopp','','','',''), (172,1,'Lisbon Story [OT: Lisbon Story]',1994,'',0,'2',2,'2005-11-05 18:45:03',99,1,'Wim Wenders','','Jürgen Knieper, Madredeus','',''), (173,1,'Good Cop, The [OT: Den gode strømer]',2004,'',0,'5',2,'2005-11-05 18:47:20',87,1,'Lasse Spang Olsen','','George Keller','',''), (174,1,'Ich habe keine Angst [OT: Io non ho paura]',2003,'',0,'2',2,'2005-11-05 18:49:23',105,1,'Gabriele Salvatores','','Ezio Bosso, \r\n\r\nEnnio Morricone, Pepo Scherman','',''), (175,1,'In This World [OT: In This World]',2002,'',0,'2',2,'2005-11-05 18:51:04',86,1,'Michael Winterbottom','','Dario Marianelli','',''), (176,1,'Voll das Leben [OT: Reality Bites]',1994,'',0,'5',2,'2005-11-09 17:33:54',94,1,'Ben Stiller','','','',''), (177,1,'Garden State [OT: Garden State]',2004,'',0,'5',2,'2005-11-09 17:34:39',98,1,'Zach Braff','','','',''), (178,1,'In China essen sie Hunde [OT: I Kina spiser de hunde]',1999,'',0,'5',2,'2005-11-09 17:36:07',91,1,'Lasse Spang Olsen','','','',''), (179,1,'Old Men In New Cars [OT: Gamle mænd i nye biler]',2002,'',0,'5',2,'2005-11-09 17:37:21',93,1,'Lasse Spang Olsen','','','',''), (180,1,'Sideways',2004,'',0,'16',2,'2005-11-09 17:55:28',122,1,'Alexander Payne','','','',''), (181,1,'Brot & Tulpen [OT: Pani e tulipani]',2000,'',0,'16',2,'2005-11-09 17:56:59',113,1,'Silvio Soldini','','','',''), (182,1,'Barfuss',2005,'',0,'-1',2,'2005-11-09 17:58:31',110,1,'Til Schweiger','','','',''), (183,1,'Butterfly Effect [OT: The Butterfly Effect]',2004,'',0,'-1',2,'2005-11-09 19:08:13',0,1,'Eric Bress & J. Mackye Gruber','','','',''), (184,1,'Totmacher, Der',1995,'',0,'-1',2,'2005-11-09 19:08:42',0,1,'Romuald Karmakar','','','',''), (185,1,'Dolmetscherin, Die [OT: The Interpreter]',2005,'',0,'-1',2,'2005-11-09 19:09:38',0,1,'Sydney Pollack','','','',''), (186,1,'Ring 2 [OT: The Ring Two; aka: The Ring 2]',2005,'',0,'-1',2,'2005-11-09 19:10:41',0,1,'Hideo Nakata','','','',''), (187,1,'I Heart Huckabees (aka: I Love Huckabees)',2004,'',0,'5',2,'2005-11-10 00:21:52',0,1,'David O. Russell','','','',''), (188,1,'Birth [OT: Birth]',2004,'',0,'2',2,'2005-11-17 08:47:21',96,1,'Jonathan Glazer','','','',''), (189,1,'Monty Pythons Der Sinn des Lebens [OT: Monty Python\'s The Meaning of Life]',1983,'',0,'5',2,'2005-11-17 08:49:19',103,1,'Terry \r\n\r\nJones, Terry Gilliam','','','',''), (190,1,'Mystery Train [OT: Mystery Train]',1989,'',0,'5',2,'2005-11-17 08:51:42',106,1,'Jim Jarmusch','','','',''), (191,1,'Bob Roberts [OT: Bob Roberts]',1992,'',0,'5',2,'2005-12-03 20:15:41',0,1,'Tim Robbins','','','',''), (192,1,'Living in Oblivion [OT: Living in Oblivion]',1995,'',0,'5',2,'2005-12-06 22:04:15',90,1,'Tom DiCillo','','','',''), (193,1,'Nightwatch [OT: Nattevagten]',1994,'',0,'2',2,'2005-12-06 22:06:48',103,1,'Ole Bornedal','','','',''), (194,1,'9 Songs [OT: 9 Songs]',2004,'',0,'21',2,'2005-12-06 22:07:33',69,1,'Michael Winterbottom','','','',''), (195,1,'Per Anhalter durch die Galaxis [OT: The Hitchhiker\'s Guide to the Galaxy]',1981,'',0,'5',2,'2005-12-06 22:09:58',84,1,'Alan J.W. \r\n\r\nBell','','','',''), (196,1,'Just A Kiss [OT: Ae Fond Kiss]',2004,'',0,'2',2,'2005-12-08 17:26:17',100,1,'Ken Loach','','','',''), (197,1,'Chasing Amy [OT: Chasing Amy]',1997,'',0,'5',2,'2005-12-08 17:27:01',104,1,'Kevin Smith','','','',''), (198,1,'Katze im Sack',2005,'',0,'2',2,'2005-12-08 17:27:45',83,1,'Florian Schwarz','','','',''), (199,1,'One Point Zero [OT: One Point O]',2004,'',0,'1',2,'2005-12-08 17:30:53',89,1,'Jeff Renfroe & Marteinn Thorsson','','','',''), (200,1,'Station Agent [OT: The Station Agent]',2003,'',0,'5',2,'2005-12-17 16:52:15',87,1,'Thomas McCarthy','','','',''), (201,1,'Spanglish [OT: Spanglish]',2004,'',0,'5',2,'2005-12-17 16:52:55',126,1,'James L. Brooks','','','',''), (202,1,'Passion Christi, Die [OT: Passion of the Christ]',2004,'',0,'2',2,'2005-12-17 16:54:16',127,1,'Mel Gibson','','','',''), (203,1,'Ist das Leben nicht schön? [OT: It\'s a Wonderful Life]',1946,'',0,'2',2,'2005-12-17 16:55:52',125,1,'Frank Capra','','','',''), (204,1,'Elephant [OT: Elephant]',2003,'',0,'2',2,'2005-12-17 16:56:49',78,1,'Gus Van Sant','','','',''), (205,1,'Ken Park [OT: Ken Park]',2002,'',0,'2',2,'2005-12-17 16:58:02',91,1,'Larry Clark & Edward Lachman','','','',''), (212,1,'Pi [OT: Pi]',1998,'',0,'2',2,'2006-01-26 08:14:23',81,1,'Darren Aronofsky','','','',''), (213,1,'Down by Law [OT: Down by Law]',1986,'',0,'5',2,'2006-01-26 08:15:45',103,1,'Jim Jarmusch','','','',''), (214,1,'Near Dark [OT: Near Dark]',1987,'',0,'3',2,'2006-01-26 08:18:36',93,1,'Kathryn Bigelow','','','',''), (215,1,'Dark City [OT: Dark City]',1998,'',0,'1',2,'2006-01-26 08:19:46',96,1,'Alex Proyas','','','',''), (216,1,'Angel Heart [OT: Angel Heart]',1987,'',0,'22',2,'2006-01-26 08:20:49',109,1,'Alan Parker','','','',''), (217,1,'Vanishing, The - Spurlos verschwunden [OT: Spoorloos]',1988,'',0,'22',2,'2006-01-26 08:23:20',102,1,'George Sluizer','','','',''), (218,1,'Wild at Heart [OT: Wild at Heart]',1990,'',0,'2',2,'2006-01-26 08:25:04',120,1,'David Lynch','','','',''), (219,1,'Koch, der Dieb, seine Frau und ihr Liebhaber, Der [OT: The Cook, the Thief, his Wife and her Lover]',1989,'',0,'2',2,'2006-01-26 08:28:41',119,1,'Peter Greenaway','','','',''), (220,1,'Delicatessen [OT: Delicatessen]',1991,'',0,'5',2,'2006-01-26 08:29:51',95,1,'Jean-Pierre Jeunet & MarcCaro','','','',''), (221,1,'Somersault',2004,'',0,'2',2,'2006-01-26 08:34:49',102,1,'Cate Shortland','','','',''), (222,1,'Tor zum Himmel [OT: Gate to Heaven]',2003,'',0,'5',2,'2006-01-26 08:36:18',90,1,'Veit Helmer','','','',''), (223,1,'Shriek - Schrei, wenn du weisst, was ich letzten Freitag den 13. getan habe [OT: Shriek If You Know What I Did Last Friday the \r\n\r\nThirteenth]',2000,'',0,'5',2,'2006-01-26 08:38:29',95,1,'John Blanchard','','','',''), (224,1,'Spider-Man [OT: Spider-Man]',2002,'',0,'4',2,'2006-01-26 08:39:54',116,1,'Sam Raimi','','','',''), (225,1,'Bully [OT: Bully]',2001,'',0,'2',2,'2006-01-26 08:41:05',107,1,'Larry Clark','','','',''), (226,1,'Brown Bunny, The [OT: The Brown Bunny]',1993,'',0,'2',2,'2006-01-26 08:42:02',89,1,'Vincent Gallo','','','',''), (227,1,'Foxy Brown [OT: Foxy Brown]',1974,'',0,'4',2,'2006-01-26 08:43:07',87,1,'Jack Hill','','','',''), (228,1,'Code 46 [OT: Code 46]',2003,'',0,'1',2,'2006-01-26 08:44:04',89,1,'Michael Winterbottom','','','',''), (229,1,'Dancer in the Dark [OT: Dacer in the Dark]',2000,'',0,'2',2,'2006-01-27 18:02:30',134,1,'Lars von Trier','','','',''), (230,1,'Fest, Das [OT: Festen]',1998,'',0,'2',2,'2006-01-27 18:03:34',101,1,'Thomas Vinterberg','','','',''), (231,1,'Spider-Man 2 [OT: Spider-Man 2]',2004,'',0,'4',2,'2006-03-11 23:40:11',122,1,'Sam Raimi','','','',''), (232,1,'Bullit [OT: Bullit]',1968,'',0,'4',2,'2006-03-11 23:41:21',109,1,'Peter Yates','','','',''), (233,1,'Coffee and Cigarettes [OT: Coffee and Cigarettes]',2003,'',0,'5',2,'2006-03-15 06:43:53',92,1,'Jim Jarmusch','','','',''), (234,1,'... und dann kam Polly [OT: Along Came Polly]',2004,'',0,'5',2,'2006-03-15 06:45:57',86,1,'John Hamburg','','','',''), (235,1,'Hype! [OT: Hype!]',1996,'',0,'6',2,'2006-04-30 17:29:00',80,1,'Doug Pray','','','',''), (236,1,'Hulk [OT: Hulk]',2003,'',0,'4',2,'2006-05-31 16:13:46',133,1,'Ang Lee','','','',''), (237,1,'High Fidelity [OT: High Fidelity]',2000,'',0,'5',2,'2006-05-31 16:15:44',109,1,'Stephen Frears','Nick Hornby (novel)','','',''), (238,1,'Following [OT: Following]',1998,'',0,'2',2,'2006-06-01 16:20:12',70,1,'Christopher Nolan','Christopher Nolan','','',''), (239,1,'Fantastic Four [OT: Fantastic Four]',2005,'',0,'4',2,'2006-06-01 16:21:30',102,1,'Tim Story','','','',''), (240,1,'Haus aus Sand und Nebel [OT: House of Sand and Fog]',2003,'',0,'2',2,'2006-11-01 08:10:03',121,1,'Vadim Perelman','Andre Dubus \r\n\r\n(novel) / Vadim Perelman & Shawn Lawrence Otto (screenplay)','James Horner','',''), (242,1,'Gegenteil von Sex, Das [OT: The Opposite of Sex]',1998,'',0,'5',2,'2006-12-31 13:52:48',97,1,'Don Roos','Don Roos','Mason \r\n\r\nDaring','',''), (243,1,'Together - Zusammen [OT: Tillsammans]',2000,'',0,'5',2,'2006-12-31 13:58:35',106,1,'Lukas Moodysson','Lukas Moodysson','','',''), (244,1,'Ich bin Sam [OT: I am Sam]',2001,'',0,'2',2,'2006-12-31 14:00:06',128,1,'Jessie Nelson','Kristine Johnson & Jessie Nelson','John Powell','',''), (245,1,'Taking Lives - Für dein Leben würde er töten [OT: Taking Lives]',2004,'',0,'22',2,'2006-12-31 14:02:43',99,1,'D.J. Caruso','Michael Pye (novel), Jon Bokenkamp (screenplay)','Philip Glass, Walter Werzowa (main titles)','',''), (246,2,'In den Schuhen meiner Schwester [OT: In Her Shoes]',2005,'',0,'5',2,'2006-12-31 14:05:47',125,1,'Curtis Hanson','Jennifer Weiner \r\n\r\n(novel), Susannah Grant (screenplay)','Mark Isham','',''), (247,2,'Solange du da bist - Liebe findet ihren Weg [OT: Just Like Heaven]',2005,'',0,'16',2,'2006-12-31 14:13:04',91,1,'Mark Waters','Marc Levy (novel: If Only It Were True), Peter Tolan & Leslie Dixon (screenplay)','Rolfe Kent','',''), (248,1,'Raus aus Amal [OT: Fucking Amal]',1998,'',0,'2',2,'2007-02-28 13:49:59',90,1,'Lukas Moodysson','Lukas Moodysson','Per Gessle & \r\n\r\nHakan Hellström','',''), (249,1,'Cooler, The [OT: The Cooler]',2003,'',0,'2',2,'2007-02-28 13:51:53',98,1,'Wayne Kramer','Frank Hannah & Wayne Kramer','Mark \r\n\r\nIsham','',''), (250,1,'München [OT: Munich]',2005,'',0,'2',2,'2007-02-28 13:54:53',157,1,'Steven Spielberg','Tony Kuschner & Eric Roth (screenpaly), \r\n\r\nGeorge Jonas (book)','John Williams','',''), (251,1,'Buffalo 66 [OT: Buffalo 66]',1998,'1. Writing credits: \r\nVincent Gallo (story)\r\nVincent Gallo (screenplay) & \r\nAlison Bagnall \r\n\r\n (screenplay)\r\n\r\n2. Cast (in credits order) verified as complete:\r\nVincent Gallo ... Billy Brown \r\nChristina Ricci ... Layla \r\nBen \r\n\r\nGazzara ... Jimmy Brown \r\nMickey Rourke ... The Bookie \r\nRosanna Arquette ... Wendy Balsam \r\nJan-Michael Vincent ... Sonny \r\nAnjelica \r\n\r\nHuston ... Jan Brown \r\nKevin Pollak ... TV Sportscaster \r\nAlex Karras ... TV Sportscaster \r\nJohn Sansone ... Little Billy \r\nManny Fried \r\n\r\n... The Donut Clerk \r\nJohn Rummel ... Don Shanks \r\nBob Wahl ... Scott Woods \r\nPenny Wolfgang ... The Judge \r\nAnthony Mydcarz ... The \r\n\r\nMotel Clerk \r\nMichael Maciejewski ... The Guy in the Bathroom \r\nJack Claxton ... The Denny\'s Host \r\nDominic Telesco ... The Prison Guard \r\n\r\n\r\nCarl Marchi ... The Cafe Owner \r\nKim Krah ... The Denny\'s Waitress \r\nJulius Digennaro ... The Info Booth Clerk \r\nTerry Braunstein ... \r\n\r\nThe Tap Teacher \r\nJack Hunter ... The Gas Station Clerk \r\nNorma Gelose ... The Bus Station Woman \r\nJanel King ... The Tap Dance Kid \r\r\n\r\n\nGhennifer Dennis ... A Beautiful Scott Woods Sexxotic Dancer \r\nErin Markle ... A Beautiful Scott Woods Sexxotic Dancer \r\nValeria Hildebrandt \r\n\r\n... A Beautiful Scott Woods Sexxotic Dancer \r\nMichelle McCluskey ... A Beautiful Scott Woods Sexxotic Dancer \r\nTerese Lenandowski ... A \r\n\r\nBeautiful Scott Woods Sexxotic Dancer \r\nKim Bradway ... A Beautiful Scott Woods Sexxotic Dancer \r\nDana Thompson ... A Beautiful Scott Woods \r\n\r\nSexxotic Dancer \r\nKaren Sitter ... A Beautiful Scott Woods Sexxotic Dancer \r\nMichelle Koninick ... A Beautiful Scott Woods Sexxotic Dancer \r\r\n\r\n\nAmy Jakabowski ... A Beautiful Scott Woods Sexxotic Dancer \r\nTara Thompson ... A Beautiful Scott Woods Sexxotic Dancer \r\nrest of cast listed \r\n\r\nalphabetically:\r\nKevin Corrigan ... Rocky the Goon (uncredited) \r\nJoey Giambra ... Man in Donut Shop (uncredited) \r\n\r\n3. Original Music \r\n\r\nby: \r\nVincent Gallo ',0,'5',2,'2007-09-19 06:42:00',105,1,'Vincent Gallo','Vincent Gallo (Story), Vincent Gallo & Alison Bagnall \r\n\r\n(Screenplay)','Vincent Gallo','PAL - Anamorph Widescreen (1,78:1) [16:9]','Audio: German (5.1), English (5.1)'), (252,1,'Hotel Ruanda [OT: Hotel Ruanda]',2004,'1. Writing credits (WGA):\r\nKeir Pearson (written by) &\r\nTerry George (written by) \r\n\r\n2. \r\n\r\nCast (in credits order) complete, awaiting verification:\r\nXolani Mali ... Policeman \r\nDon Cheadle ... Paul Rusesabagina \r\nDesmond Dube ... \r\n\r\nDube \r\nHakeem Kae-Kazim ... George Rutaganda \r\nTony Kgoroge ... Gregoire \r\nRosie Motene ... Receptionist \r\nNeil McCarthy ... Jean \r\n\r\nJacques \r\nMabutho \'Kid\' Sithole ... Head Chef (as Kid Sithole) \r\nNick Nolte ... Colonel Oliver \r\nFana Mokoena ... General Bizimungu \r\r\n\r\n\nJeremiah Ndlovu ... Old Guard \r\nSophie Okonedo ... Tatiana Rusesabagina \r\nLebo Mashile ... Odette \r\nAntonio David Lyons ... Thomas \r\n\r\nMirama \r\nLeleti Khumalo ... Fedens \r\nKgomotso Seitshohlo ... Anais \r\nLerato Mokgotho ... Carine \r\nMosa Kaiser ... Elys Rusesabagina \r\r\n\r\n\nMathabo Pieterson ... Diane Rusesabagina \r\nOfentse Modiselle ... Roger Rusesabagina \r\nDavid O\'Hara ... David \r\nJoaquin Phoenix ... Jack \r\n\r\nDaglish \r\nLennox Mathabathe ... Peter \r\nMothusi Magano ... Benedict \r\nNoxolo Maqashalala ... Chloe, Prostitute \r\nThulani Nyembe ... Jean \r\n\r\nBaptiste (as Thulane Nyembe) \r\nSimo Mogwaza ... Hutu Captain (as Simo Magwaza) \r\nMirriam Ngomani ... Gregoire\'s Girlfriend \r\nCara Seymour \r\n\r\n... Pat Archer \r\nHarriet Lenabe ... Alice the Waitress (as Harriet Manamela) \r\nRoberto Citran ... Priest \r\nMduduzi Mabaso ... Hutu \r\n\r\nLieutenant \r\nSonni Chidiebere ... Militiaman \r\nThomas Kariuki ... Xavier \r\nSibusiso Mhlangu ... Militiaman (as Sibusiso Mhlongo) \r\r\n\r\n\nAshleigh Tobias ... Medic \r\nrest of cast listed alphabetically:\r\nJean Reno ... Sabena Airlines President, Mr. Tillens (uncredited) \r\n\r\r\n\r\n\n3. Original Music by:\r\nRupert Gregson-Williams \r\nAndrea Guerra \r\nMartin Russell',0,'2',2,'2007-09-19 06:52:07',118,1,'Terry \r\n\r\nGeorge','Keir Pearson & Terry George','Rupert Gregson-Williams, Andrea Guerra, Martin Russell','PAL - Anamorph Widescreen (2,35:1)','81 Minutes \r\n\r\nBonus Material - Audio: German (5.1), English (5.1) - Subitles: German, English'), (253,1,'Mallrats [OT: Mallrats]',1995,'1. Writing credits (WGA): \r\nKevin Smith (written by) \r\n\r\n2. Cast (in credits order) verified as \r\n\r\ncomplete:\r\nShannen Doherty ... Rene Mosier \r\nJeremy London ... T.S. Quint \r\nJason Lee ... Brodie Bruce \r\nClaire Forlani ... Brandi \r\n\r\nSvenning \r\nBen Affleck ... Shannon Hamilton \r\nJoey Lauren Adams ... Gwen Turner \r\nRenée Humphrey ... Tricia Jones (as Renee Humphrey) \r\r\n\r\n\nJason Mewes ... Jay \r\nEthan Suplee ... Willam Black \r\nStan Lee ... Himself \r\nPriscilla Barnes ... Miss Ivannah \r\nMichael Rooker ... \r\n\r\nMr. Jared Svenning \r\nCarol Banker ... Security Guard \r\nSteven Blackwell ... Arresting Cop #2 \r\nKyle Boe ... Pull Toy Kid \r\nDavid Brinkley \r\n\r\n... Bently Garison, TV Executive #1 \r\nWalter Flanagan ... Walt Grover, the Fanboy \r\nEthan Flower ... Doug Paging, Suitor #1 \r\nChelsea Frye \r\n\r\n... Girl with Easter Bunny \r\nJeff Gadbois ... Mason, TV Executive #2 \r\nEd Hapstak ... Rob Feature, Suitor #2 \r\nTerry Hempleman ... \r\n\r\nArresting Cop #1 \r\nArt James ... Bob Summers, Truth or Date Host \r\nBryan Johnson ... Steve-Dave Pulasti \r\nMikey Kovar ... Child at Kiosk #2 \r\n\r\n\r\nDavid Klein ... Fan at Comic Store \r\nScott Mosier ... Roddy \r\nCrystal Muirhead-Manik ... Saleslady at Lingerie Store \r\nTyson Nassauer \r\n\r\n... Kid at Poster Kiosk \r\nBrian O\'Halloran ... Gill Hicks, Suitor #3 \r\nAaron Preusse ... Passerby in Parking Lot \r\nKevin Smith ... Silent \r\n\r\nBob \r\nBritt Swenson ... Child at Kiosk #1 \r\nSven-Ole Thorsen ... La Fours (as Sven Thorsen) \r\nMary Woolever ... Teacher \r\nBrad Fox ... \r\n\r\nTeam La Fours \r\nGino Gori ... Team La Fours \r\nZach Perkins ... Team La Fours \r\nBrad Gidding ... Team La Fours (as Brad Giddings) \r\nBryce \r\n\r\nMack ... Team La Fours \r\nChristopher O\'Larkin ... Team La Fours \r\nrest of cast listed alphabetically: \r\nElizabeth Ashley ... Gov. Dalton \r\n\r\n(cut scene) (scenes deleted) \r\nEarl R. Burt ... Audience Member (uncredited) \r\nTammara Melloy ... Shopper (uncredited) \r\n\r\n3. Original \r\n\r\nMusic by: \r\nIra Newborn',0,'5',2,'2007-09-19 07:00:07',91,1,'Kevin Smith','Kevin Smith','Ira Newborn','',''), (254,1,'Lamerica [OT: Lamerica]',1994,'1. Writing credits (in alphabetical order): \r\nGianni Amelio \r\nAndrea Porporati \r\nAlessandro \r\n\r\nSermoneta \r\n\r\n2. Cast (in credits order) verified as complete:\r\nEnrico Lo Verso ... Gino \r\nMichele Placido ... Fiore \r\nPiro Milkani \r\n\r\n... Selimi \r\nCarmelo Di Mazzarelli ... Spiro (alias Michele Talarico) \r\nElida Janushi ... Selimi\'s Cousin \r\nSefer Pema ... Prison \r\n\r\nGovernor \r\nIdajet Sejdia ... Dr. Kruja \r\nMarieta Ljarja ... Factory\'s manager \r\nElina Ndreu ... Singer in night club \r\nIlir Ara ... \r\n\r\nOrphanage\'s guard \r\nLiliana Subashi ... Hospital\'s doctor \r\nArtan Marina ... Ismail \r\nVassjan Lammi ... Cop at cafe \r\nNikolin Elezi ... \r\n\r\n Man dying \r\nFatmir Gjyla ... Innkeeper \r\nElona Hoti ... Little girl dancing \r\nBesim Kurti ... Interrogator \r\nEsmeralda Ara ... Girl \r\n\r\nteaching italian \r\nLuan Ujkai \r\nShkelqim Daja \r\nDritan Alia \r\nElinor Cekliqi \r\nFerit Nutai \r\nKlodian Rakaj \r\nSaimir Tila \r\n\r\n\r\nMarian Tifozi \r\nGezim Nutai \r\nAltin Garupi \r\nGezim Garupi \r\nIsmail Kukaj \r\nNuredin Ujkaj \r\nrest of cast listed \r\n\r\nalphabetically: \r\nJulian Sands \r\n\r\n3. Original Music by: \r\nFranco Piersanti ',0,'2',2,'2007-09-19 07:16:36',125,1,'Gianni Amelio','Gianni Amelio, Andrea Porporati, Alessandro Sermoneta','','recorded from TV','recorded from TV'), (255,1,'Letzte König von Schottland, Der [OT: The Last King of Scotland]',2006,'1. Writing credits: \r\nPeter Morgan (screenplay) and \r\r\n\r\n\nJeremy Brock (screenplay)\r\nGiles Foden (novel)\r\n\r\n2. Cast (in credits order) verified as complete:\r\nForest Whitaker ... Idi Amin \r\r\n\r\n\nJames McAvoy ... Nicholas Garrigan \r\nKerry Washington ... Kay Amin \r\nGillian Anderson ... Sarah Merrit \r\nSimon McBurney ... Stone \r\r\n\r\n\nDavid Oyelowo ... Dr. Junju \r\nStephen Rwangyezi ... Jonah Wasswa \r\nAbby Mukiibi Nkaaga ... Masanga (as Abby Mukiibi) \r\nAdam Kotz ... Dr. \r\n\r\nMerrit \r\nSam Okelo ... Bonny \r\nSarah Nagayi ... Tolu \r\nChris Wilson ... Perkins \r\nDr. Dick Stockley ... Times Journalist \r\nBarbara \r\n\r\nRafferty ... Mrs. Garrigan \r\nDavid Ashton ... Dr. Garrigan (senior) \r\nDaniel Ssetaba ... Kay Amin\'s servant \r\nApollo Okwenje Omamo ... \r\n\r\nMackenzie Amin \r\nLouis Asea ... Campbell Amin \r\nGiles Foden ... British Journalist 1 \r\nAndy Williams ... British Journalist 2 \r\nMartina \r\n\r\nAmati ... Italian Journalist \r\nRene Peissker ... German Journalist \r\nStern Jedidian ... American Journalist \r\nDave A. Tarun ... Asian \r\n\r\nTailor \r\nClare Wandera ... Secretary \r\nCleopatra Koheirwe ... Joy \r\nJoanitta Bewulira-Wandera ... Malyamu Amin (as Joanitta B. Wandera) \r\r\n\r\n\nConsodyne Buzabo ... Nora Amin \r\nPeter Salmon ... White Businessman \r\nMichael Wawuyo ... Air Force Commander \r\nWilberforce Muteta ... \r\n\r\nGuard (as Wilberforce Mutete) \r\nHaruna Walusimbi ... Guard \r\nMuhammed Kaweesa ... Idi\'s Double \r\nGrace Mugenyi ... Idi\'s Double \r\nJohn \r\n\r\nBosco Obiya ... Idi\'s Double \r\nJohn Olima ... Bagpiper \r\nAngela Kalule ... Chanteuse at Nghtclub \r\nSam Namatiti ... Band at Nightclub - \r\n\r\nBass & Keyboards \r\nMathias Muwonge ... Band at Nightclub - African Xylophone & Lyre \r\nJoseph Kahirimbanyi ... Band at Nightclub - Guitar \r\r\n\r\n\nAfrigo Band ... Band at Party \r\nNdere Troupe ... Dancers at Rally \r\nThe Nyonza Singers ... Choir at Parliament \r\nrest of cast listed \r\n\r\nalphabetically: \r\nIdi Amin ... Himself (archive footage) (uncredited) ',0,'2',2,'2007-10-07 06:28:51',118,1,'Kevin Macdonald','Giles \r\n\r\nFoden (novel), Peter Morgan & Jeremy Brock (screenplay)','Alex Heffes','PAL - Anamorph Widescreen (2,35:1) [16:9]','Audio: German (5.1), English \r\n\r\n(5.1) - Subtitles: German, German (aurally handicapped), English, Turkey'), (256,1,'Lost (Staffel 1) [OT: Lost (Season 1)]',2004,'1. Writing credits \r\nJ.J. Abrams (85 episodes, 2004-2008) \r\nJeffrey Lieber (85 \r\n\r\nepisodes, 2004-2008) \r\nDamon Lindelof (85 episodes, 2004-2008) \r\nCarlton Cuse (18 episodes, 2005-2007) \r\nAdam Horowitz (10 episodes, \r\n\r\n2005-2007) \r\nEdward Kitsis (10 episodes, 2005-2007) \r\nLiz Sarnoff (8 episodes, 2005-2007) \r\nJavier Grillo-Marxuach (7 episodes, 2004-\r\n\r\n2005) \r\nDrew Goddard (6 episodes, 2005-2007) \r\nLeonard Dick (6 episodes, 2005-2006) \r\nChristina M. Kim (5 episodes, 2006-2007) \r\nDavid \r\n\r\nFury (4 episodes, 2004-2005) \r\nSteven Maeda (4 episodes, 2005-2006) \r\nJeff Pinkner (4 episodes, 2006-2007) \r\nJennifer Johnson (2 \r\n\r\nepisodes, 2004-2005) \r\nCraig Wright (2 episodes, 2005) \r\n\r\n2. Cast\r\nNaveen Andrews ... Sayid Jarrah / ... (69 episodes, 2004-2007) \r\r\n\r\n\nEmilie de Ravin ... Claire Littleton / ... (69 episodes, 2004-2007) \r\nMatthew Fox ... Jack Shephard / ... (69 episodes, 2004-2007) \r\nJorge \r\n\r\nGarcia ... Hugo \'Hurley\' Reyes (69 episodes, 2004-2007) \r\nJosh Holloway ... James \'Sawyer\' Ford (69 episodes, 2004-2007) \r\nDaniel Dae Kim \r\n\r\n... Jin Kwon (69 episodes, 2004-2007) \r\nYunjin Kim ... Sun Kwon (69 episodes, 2004-2007) \r\nEvangeline Lilly ... Kate Austen (69 episodes, \r\n\r\n2004-2007) \r\nDominic Monaghan ... Charlie Pace (69 episodes, 2004-2007) \r\nTerry O\'Quinn ... John Locke (69 episodes, 2004-2007) \r\nHarold \r\n\r\nPerrineau ... Michael Dawson (47 episodes, 2004-2006) \r\nMaggie Grace ... Shannon Rutherford (33 episodes, 2004-2007) \r\nMichael Emerson ... \r\n\r\nBen Linus / ... (30 episodes, 2006-2007) \r\nMalcolm David Kelley ... Walt Lloyd (29 episodes, 2004-2007) \r\nAdewale Akinnuoye-Agbaje ... Mr. Eko \r\n\r\n(28 episodes, 2005-2006) \r\nIan Somerhalder ... Boone Carlyle (28 episodes, 2004-2007) \r\nHenry Ian Cusick ... Desmond Hume (26 episodes, 2005-\r\n\r\n2007) \r\nMichelle Rodriguez ... Ana-Lucia Cortez (24 episodes, 2005-2006) \r\nMadison ... Vincent the Dog (24 episodes, 2004-2007) \r\nElizabeth \r\n\r\nMitchell ... Juliet Burke (22 episodes, 2006-2007) \r\nCynthia Watros ... Libby (20 episodes, 2005-2006) \r\nM.C. Gainey ... Tom Friendly / ... \r\n\r\n(16 episodes, 2005-2007) \r\nKiele Sanchez ... Nikki Fernandez (14 episodes, 2006-2007) \r\nRodrigo Santoro ... Paulo (14 episodes, 2006-2007) \r\r\n\r\n\nMira Furlan ... Danielle Rousseau (13 episodes, 2004-2007) \r\nL. Scott Caldwell ... Rose (12 episodes, 2004-2007) \r\nSam Anderson ... Bernard \r\n\r\n/ ... (11 episodes, 2005-2007) \r\nTania Raymonde ... Alex / ... (11 episodes, 2006-2007) \r\nKimberley Joseph ... Cindy Chandler (10 episodes, \r\n\r\n2004-2007) \r\nChristian Bowman ... Steve Jenkins (10 episodes, 2004-2005) \r\nJohn Terry ... Dr. Christian Shephard / ... (9 episodes, 2004-2007) \r\n\r\n\r\nWilliam Mapother ... Ethan Rom (9 episodes, 2004-2007) \r\nFredric Lehne ... Marshal Edward Mars (8 episodes, 2004-2007) \r\nNestor Carbonell \r\n\r\n... Richard Alpert (7 episodes, 2007) \r\nAndrew Divoff ... Mikhail Bakunin (7 episodes, 2006-2007) \r\nMichael Bowen ... Danny Pickett (7 \r\n\r\nepisodes, 2006-2007) \r\nMarsha Thomason ... Naomi Dorrit (6 episodes, 2007) \r\nAndrea Gabriel ... Nadia (6 episodes, 2004-2007) \r\nBlake \r\n\r\nBashoff ... Karl (5 episodes, 2006-2007) \r\nAriston Green ... Jason (5 episodes, 2006-2007) \r\nKevin Tighe ... Anthony Cooper (5 episodes, \r\n\r\n2005-2007) \r\nJulie Bowen ... Sarah (5 episodes, 2005-2007) \r\nFrançois Chau ... Dr. Marvin Candle / ... (5 episodes, 2005-2007) \r\nBeth \r\n\r\nBroderick ... Diane Austen (4 episodes, 2005-2007) \r\nDaniel Roebuck ... Leslie Arzt (4 episodes, 2005-2007) \r\nSonya Walger ... Penny Widmore \r\n\r\n/ ... (4 episodes, 2006-2007) \r\nKim Dickens ... Cassidy Phillips (3 episodes, 2006-2007) \r\nAdetokumboh M\'Cormack ... Yemi (3 episodes, 2006) \r\n\r\n\r\nBrett Cullen ... Goodwin (3 episodes, 2005-2007) \r\nTony Lee ... Jae Lee (3 episodes, 2005-2006) \r\nApril Grace ... Bea Klugh (3 episodes, \r\n\r\n2006-2007) \r\nBilly Ray Gallion ... Randy / ... (3 episodes, 2004-2007) \r\nBrian Goodman ... Ryan Pryce (3 episodes, 2007) \r\nTeddy Wells ... \r\n\r\nIvan / ... (3 episodes, 2006-2007) \r\nByron Chung ... Mr. Paik (3 episodes, 2005-2007) \r\nNeil Hopkins ... Liam / ... (3 episodes, 2004-2007) \r\n\r\n\r\nLillian Hurst ... Carmen Reyes (3 episodes, 2005-2007) \r\nJonathan Dixon ... Flight Attendant #2 / ... (3 episodes, 2004-2005) \r\nMichelle \r\n\r\nArthur ... Flight Attendant #2 / ... (3 episodes, 2004-2005) \r\nJoah Buley ... Luke (3 episodes, 2006-2007) \r\nMeilinda Soerjoko ... Chrissy (3 \r\n\r\nepisodes, 2004-2006) \r\nMichael Adamshick ... Lottery Official / ... (3 episodes, 2004-2005) \r\nBrittany Perrineau ... Lotto Girl / ... (3 \r\n\r\nepisodes, 2005) \r\nClancy Brown ... Joe Inman / ... (2 episodes, 2006) \r\nKatey Sagal ... Helen (2 episodes, 2005-2006) \r\nRachel Ticotin ... \r\n\r\nCaptain Teresa Cortez (2 episodes, 2005-2006) \r\nLindsey Ginter ... Sgt. Sam Austen (2 episodes, 2005-2006) \r\nGabrielle Fitzpatrick ... Lindsey \r\n\r\n(2 episodes, 2006-2007) \r\nAlan Dale ... Charles Widmore (2 episodes, 2006-2007) \r\nKatie Doyle ... EMT / ... (2 episodes, 2005-2007) \r\nRobin \r\n\r\nWeigert ... Rachel (2 episodes, 2007) \r\nPaula Malcomson ... Colleen Pickett (2 episodes, 2006) \r\nKolawole Obileye Jr. ... Young Eko (2 \r\n\r\nepisodes, 2006) \r\nWendy Braun ... Gina (2 episodes, 2005) \r\nLawrence Jones ... Lead Soldier / ... (2 episodes, 2006) \r\nDavid Ely ... Intern \r\n\r\n(2 episodes, 2005) \r\nJeremy Shada ... Young Charlie (2 episodes, 2006-2007) \r\nOlekan Obileye ... Young Yemi (2 episodes, 2006) \r\nRobert \r\n\r\nFrederick ... Jeff (2 episodes, 2005) \r\nZack Shada ... Young Liam (2 episodes, 2006-2007) \r\nTracy Middendorf ... Bonnie (2 episodes, 2007) \r\n\r\n\r\nTomiko Lee ... Mrs. Lee (2 episodes, 2005-2006) \r\nRuz Rusden ... Airport Cop (2 episodes, 2005) \r\nLana Parrilla ... Greta (2 episodes, \r\n\r\n2007) \r\nDustin Geiger ... Matthew (2 episodes, 2006-2007) \r\nNick Jameson ... Richard Malkin (2 episodes, 2004-2006) \r\nTamara Taylor ... \r\n\r\nSusan Lloyd (2 episodes, 2005) \r\nJohn Shin ... Mr. Kwon / ... (2 episodes, 2005-2007) \r\nRon Bottitta ... Leonard Sims (2 episodes, 2005-2006) \r\n\r\n\r\nCraig Robert Young ... Bender / ... (2 episodes, 2006) \r\nGeoff Heise ... Doctor / ... (2 episodes, 2004) \r\nKiersten Havelock ... Emma (2 \r\n\r\nepisodes, 2005-2007) \r\nSuzanne Turner ... Ticket Agent / ... (2 episodes, 2005) \r\nMickey Graue ... Zack (2 episodes, 2005-2007) \r\nMark \r\n\r\nDillen Stitham ... Head Doctor / ... (2 episodes, 2004-2006) \r\nAaron Gold ... Jason McCormack (2 episodes, 2005-2006) \r\nMatt Moore ... \r\n\r\nHusband / ... (2 episodes, 2004-2005) \r\nMichael M. Vendrell ... Big Guy / ... (2 episodes, 2005-2006) \r\nGlenn Cannon ... Old Scooter Man / ... \r\n\r\n(2 episodes, 2004-2005) \r\nJulie Ow ... Nurse (2 episodes, 2005-2006) \r\nGreg Grunberg ... Pilot (2 episodes, 2004-2005) \r\nFaith Fay ... \r\n\r\nSurvivior (2 episodes, 2004) ',0,'11',2,'2007-10-07 06:47:52',1000,1,'Jack Bender, Stephen Williams, Tucker Gates, Paul A. Edwards, Eric \r\n\r\nLaneuville, Kevin Hooks, Greg Yaitanes, J.J. Abrams, Karen Gaviola','J.J. Abrams, Jeffrey Lieber, Damon Lindelof, Carlton Cuse, Adam Horowitz, \r\n\r\nEdward Kitsis, Liz Sarnoff, Javier Grillo-Marxuach, Drew Goddard, Leonard Dick, Christina M. Kim, David Fury, Steven Maeda, Jeff Pinkner, Jennifer \r\n\r\nJohnson, Craig Wright','Michael Giacchino','PAL',''), (257,1,'Lost (Staffel 2) [OT: Lost (Season 2)]',2005,'1. Writing credits \r\nJ.J. Abrams (85 episodes, 2004-2008) \r\nJeffrey Lieber (85 \r\n\r\nepisodes, 2004-2008) \r\nDamon Lindelof (85 episodes, 2004-2008) \r\nCarlton Cuse (18 episodes, 2005-2007) \r\nAdam Horowitz (10 episodes, \r\n\r\n2005-2007) \r\nEdward Kitsis (10 episodes, 2005-2007) \r\nLiz Sarnoff (8 episodes, 2005-2007) \r\nJavier Grillo-Marxuach (7 episodes, 2004-\r\n\r\n2005) \r\nDrew Goddard (6 episodes, 2005-2007) \r\nLeonard Dick (6 episodes, 2005-2006) \r\nChristina M. Kim (5 episodes, 2006-2007) \r\nDavid \r\n\r\nFury (4 episodes, 2004-2005) \r\nSteven Maeda (4 episodes, 2005-2006) \r\nJeff Pinkner (4 episodes, 2006-2007) \r\nJennifer Johnson (2 \r\n\r\nepisodes, 2004-2005) \r\nCraig Wright (2 episodes, 2005) \r\n\r\n2. Cast\r\nNaveen Andrews ... Sayid Jarrah / ... (69 episodes, 2004-2007) \r\r\n\r\n\nEmilie de Ravin ... Claire Littleton / ... (69 episodes, 2004-2007) \r\nMatthew Fox ... Jack Shephard / ... (69 episodes, 2004-2007) \r\nJorge \r\n\r\nGarcia ... Hugo \'Hurley\' Reyes (69 episodes, 2004-2007) \r\nJosh Holloway ... James \'Sawyer\' Ford (69 episodes, 2004-2007) \r\nDaniel Dae Kim \r\n\r\n... Jin Kwon (69 episodes, 2004-2007) \r\nYunjin Kim ... Sun Kwon (69 episodes, 2004-2007) \r\nEvangeline Lilly ... Kate Austen (69 episodes, \r\n\r\n2004-2007) \r\nDominic Monaghan ... Charlie Pace (69 episodes, 2004-2007) \r\nTerry O\'Quinn ... John Locke (69 episodes, 2004-2007) \r\nHarold \r\n\r\nPerrineau ... Michael Dawson (47 episodes, 2004-2006) \r\nMaggie Grace ... Shannon Rutherford (33 episodes, 2004-2007) \r\nMichael Emerson ... \r\n\r\nBen Linus / ... (30 episodes, 2006-2007) \r\nMalcolm David Kelley ... Walt Lloyd (29 episodes, 2004-2007) \r\nAdewale Akinnuoye-Agbaje ... Mr. Eko \r\n\r\n(28 episodes, 2005-2006) \r\nIan Somerhalder ... Boone Carlyle (28 episodes, 2004-2007) \r\nHenry Ian Cusick ... Desmond Hume (26 episodes, 2005-\r\n\r\n2007) \r\nMichelle Rodriguez ... Ana-Lucia Cortez (24 episodes, 2005-2006) \r\nMadison ... Vincent the Dog (24 episodes, 2004-2007) \r\nElizabeth \r\n\r\nMitchell ... Juliet Burke (22 episodes, 2006-2007) \r\nCynthia Watros ... Libby (20 episodes, 2005-2006) \r\nM.C. Gainey ... Tom Friendly / ... \r\n\r\n(16 episodes, 2005-2007) \r\nKiele Sanchez ... Nikki Fernandez (14 episodes, 2006-2007) \r\nRodrigo Santoro ... Paulo (14 episodes, 2006-2007) \r\r\n\r\n\nMira Furlan ... Danielle Rousseau (13 episodes, 2004-2007) \r\nL. Scott Caldwell ... Rose (12 episodes, 2004-2007) \r\nSam Anderson ... Bernard \r\n\r\n/ ... (11 episodes, 2005-2007) \r\nTania Raymonde ... Alex / ... (11 episodes, 2006-2007) \r\nKimberley Joseph ... Cindy Chandler (10 episodes, \r\n\r\n2004-2007) \r\nChristian Bowman ... Steve Jenkins (10 episodes, 2004-2005) \r\nJohn Terry ... Dr. Christian Shephard / ... (9 episodes, 2004-2007) \r\n\r\n\r\nWilliam Mapother ... Ethan Rom (9 episodes, 2004-2007) \r\nFredric Lehne ... Marshal Edward Mars (8 episodes, 2004-2007) \r\nNestor Carbonell \r\n\r\n... Richard Alpert (7 episodes, 2007) \r\nAndrew Divoff ... Mikhail Bakunin (7 episodes, 2006-2007) \r\nMichael Bowen ... Danny Pickett (7 \r\n\r\nepisodes, 2006-2007) \r\nMarsha Thomason ... Naomi Dorrit (6 episodes, 2007) \r\nAndrea Gabriel ... Nadia (6 episodes, 2004-2007) \r\nBlake \r\n\r\nBashoff ... Karl (5 episodes, 2006-2007) \r\nAriston Green ... Jason (5 episodes, 2006-2007) \r\nKevin Tighe ... Anthony Cooper (5 episodes, \r\n\r\n2005-2007) \r\nJulie Bowen ... Sarah (5 episodes, 2005-2007) \r\nFrançois Chau ... Dr. Marvin Candle / ... (5 episodes, 2005-2007) \r\nBeth \r\n\r\nBroderick ... Diane Austen (4 episodes, 2005-2007) \r\nDaniel Roebuck ... Leslie Arzt (4 episodes, 2005-2007) \r\nSonya Walger ... Penny Widmore \r\n\r\n/ ... (4 episodes, 2006-2007) \r\nKim Dickens ... Cassidy Phillips (3 episodes, 2006-2007) \r\nAdetokumboh M\'Cormack ... Yemi (3 episodes, 2006) \r\n\r\n\r\nBrett Cullen ... Goodwin (3 episodes, 2005-2007) \r\nTony Lee ... Jae Lee (3 episodes, 2005-2006) \r\nApril Grace ... Bea Klugh (3 episodes, \r\n\r\n2006-2007) \r\nBilly Ray Gallion ... Randy / ... (3 episodes, 2004-2007) \r\nBrian Goodman ... Ryan Pryce (3 episodes, 2007) \r\nTeddy Wells ... \r\n\r\nIvan / ... (3 episodes, 2006-2007) \r\nByron Chung ... Mr. Paik (3 episodes, 2005-2007) \r\nNeil Hopkins ... Liam / ... (3 episodes, 2004-2007) \r\n\r\n\r\nLillian Hurst ... Carmen Reyes (3 episodes, 2005-2007) \r\nJonathan Dixon ... Flight Attendant #2 / ... (3 episodes, 2004-2005) \r\nMichelle \r\n\r\nArthur ... Flight Attendant #2 / ... (3 episodes, 2004-2005) \r\nJoah Buley ... Luke (3 episodes, 2006-2007) \r\nMeilinda Soerjoko ... Chrissy (3 \r\n\r\nepisodes, 2004-2006) \r\nMichael Adamshick ... Lottery Official / ... (3 episodes, 2004-2005) \r\nBrittany Perrineau ... Lotto Girl / ... (3 \r\n\r\nepisodes, 2005) \r\nClancy Brown ... Joe Inman / ... (2 episodes, 2006) \r\nKatey Sagal ... Helen (2 episodes, 2005-2006) \r\nRachel Ticotin ... \r\n\r\nCaptain Teresa Cortez (2 episodes, 2005-2006) \r\nLindsey Ginter ... Sgt. Sam Austen (2 episodes, 2005-2006) \r\nGabrielle Fitzpatrick ... Lindsey \r\n\r\n(2 episodes, 2006-2007) \r\nAlan Dale ... Charles Widmore (2 episodes, 2006-2007) \r\nKatie Doyle ... EMT / ... (2 episodes, 2005-2007) \r\nRobin \r\n\r\nWeigert ... Rachel (2 episodes, 2007) \r\nPaula Malcomson ... Colleen Pickett (2 episodes, 2006) \r\nKolawole Obileye Jr. ... Young Eko (2 \r\n\r\nepisodes, 2006) \r\nWendy Braun ... Gina (2 episodes, 2005) \r\nLawrence Jones ... Lead Soldier / ... (2 episodes, 2006) \r\nDavid Ely ... Intern \r\n\r\n(2 episodes, 2005) \r\nJeremy Shada ... Young Charlie (2 episodes, 2006-2007) \r\nOlekan Obileye ... Young Yemi (2 episodes, 2006) \r\nRobert \r\n\r\nFrederick ... Jeff (2 episodes, 2005) \r\nZack Shada ... Young Liam (2 episodes, 2006-2007) \r\nTracy Middendorf ... Bonnie (2 episodes, 2007) \r\n\r\n\r\nTomiko Lee ... Mrs. Lee (2 episodes, 2005-2006) \r\nRuz Rusden ... Airport Cop (2 episodes, 2005) \r\nLana Parrilla ... Greta (2 episodes, \r\n\r\n2007) \r\nDustin Geiger ... Matthew (2 episodes, 2006-2007) \r\nNick Jameson ... Richard Malkin (2 episodes, 2004-2006) \r\nTamara Taylor ... \r\n\r\nSusan Lloyd (2 episodes, 2005) \r\nJohn Shin ... Mr. Kwon / ... (2 episodes, 2005-2007) \r\nRon Bottitta ... Leonard Sims (2 episodes, 2005-2006) \r\n\r\n\r\nCraig Robert Young ... Bender / ... (2 episodes, 2006) \r\nGeoff Heise ... Doctor / ... (2 episodes, 2004) \r\nKiersten Havelock ... Emma (2 \r\n\r\nepisodes, 2005-2007) \r\nSuzanne Turner ... Ticket Agent / ... (2 episodes, 2005) \r\nMickey Graue ... Zack (2 episodes, 2005-2007) \r\nMark \r\n\r\nDillen Stitham ... Head Doctor / ... (2 episodes, 2004-2006) \r\nAaron Gold ... Jason McCormack (2 episodes, 2005-2006) \r\nMatt Moore ... \r\n\r\nHusband / ... (2 episodes, 2004-2005) \r\nMichael M. Vendrell ... Big Guy / ... (2 episodes, 2005-2006) \r\nGlenn Cannon ... Old Scooter Man / ... \r\n\r\n(2 episodes, 2004-2005) \r\nJulie Ow ... Nurse (2 episodes, 2005-2006) \r\nGreg Grunberg ... Pilot (2 episodes, 2004-2005) \r\nFaith Fay ... \r\n\r\nSurvivior (2 episodes, 2004) ',0,'11',2,'2007-10-07 07:04:16',1000,1,'Jack Bender, Stephen Williams, Tucker Gates, Paul A. Edwards, Eric \r\n\r\nLaneuville, Kevin Hooks, Greg Yaitanes, J.J. Abrams, Karen Gaviola','J.J. Abrams, Jeffrey Lieber, Damon Lindelof, Carlton Cuse, Adam Horowitz, \r\n\r\nEdward Kitsis, Liz Sarnoff, Javier Grillo-Marxuach, Drew Goddard, Leonard Dick, Christina M. Kim, David Fury, Steven Maeda, Jeff Pinkner, Jennifer \r\n\r\nJohnson, Craig Wright','Michael Giacchino','PAL',''), (258,1,'Lost (Staffel 3) [OT: Lost (Season 3)]',2006,'1. Writing credits \r\nJ.J. Abrams (85 episodes, 2004-2008) \r\nJeffrey Lieber (85 \r\n\r\nepisodes, 2004-2008) \r\nDamon Lindelof (85 episodes, 2004-2008) \r\nCarlton Cuse (18 episodes, 2005-2007) \r\nAdam Horowitz (10 episodes, \r\n\r\n2005-2007) \r\nEdward Kitsis (10 episodes, 2005-2007) \r\nLiz Sarnoff (8 episodes, 2005-2007) \r\nJavier Grillo-Marxuach (7 episodes, 2004-\r\n\r\n2005) \r\nDrew Goddard (6 episodes, 2005-2007) \r\nLeonard Dick (6 episodes, 2005-2006) \r\nChristina M. Kim (5 episodes, 2006-2007) \r\nDavid \r\n\r\nFury (4 episodes, 2004-2005) \r\nSteven Maeda (4 episodes, 2005-2006) \r\nJeff Pinkner (4 episodes, 2006-2007) \r\nJennifer Johnson (2 \r\n\r\nepisodes, 2004-2005) \r\nCraig Wright (2 episodes, 2005) \r\n\r\n2. Cast\r\nNaveen Andrews ... Sayid Jarrah / ... (69 episodes, 2004-2007) \r\r\n\r\n\nEmilie de Ravin ... Claire Littleton / ... (69 episodes, 2004-2007) \r\nMatthew Fox ... Jack Shephard / ... (69 episodes, 2004-2007) \r\nJorge \r\n\r\nGarcia ... Hugo \'Hurley\' Reyes (69 episodes, 2004-2007) \r\nJosh Holloway ... James \'Sawyer\' Ford (69 episodes, 2004-2007) \r\nDaniel Dae Kim \r\n\r\n... Jin Kwon (69 episodes, 2004-2007) \r\nYunjin Kim ... Sun Kwon (69 episodes, 2004-2007) \r\nEvangeline Lilly ... Kate Austen (69 episodes, \r\n\r\n2004-2007) \r\nDominic Monaghan ... Charlie Pace (69 episodes, 2004-2007) \r\nTerry O\'Quinn ... John Locke (69 episodes, 2004-2007) \r\nHarold \r\n\r\nPerrineau ... Michael Dawson (47 episodes, 2004-2006) \r\nMaggie Grace ... Shannon Rutherford (33 episodes, 2004-2007) \r\nMichael Emerson ... \r\n\r\nBen Linus / ... (30 episodes, 2006-2007) \r\nMalcolm David Kelley ... Walt Lloyd (29 episodes, 2004-2007) \r\nAdewale Akinnuoye-Agbaje ... Mr. Eko \r\n\r\n(28 episodes, 2005-2006) \r\nIan Somerhalder ... Boone Carlyle (28 episodes, 2004-2007) \r\nHenry Ian Cusick ... Desmond Hume (26 episodes, 2005-\r\n\r\n2007) \r\nMichelle Rodriguez ... Ana-Lucia Cortez (24 episodes, 2005-2006) \r\nMadison ... Vincent the Dog (24 episodes, 2004-2007) \r\nElizabeth \r\n\r\nMitchell ... Juliet Burke (22 episodes, 2006-2007) \r\nCynthia Watros ... Libby (20 episodes, 2005-2006) \r\nM.C. Gainey ... Tom Friendly / ... \r\n\r\n(16 episodes, 2005-2007) \r\nKiele Sanchez ... Nikki Fernandez (14 episodes, 2006-2007) \r\nRodrigo Santoro ... Paulo (14 episodes, 2006-2007) \r\r\n\r\n\nMira Furlan ... Danielle Rousseau (13 episodes, 2004-2007) \r\nL. Scott Caldwell ... Rose (12 episodes, 2004-2007) \r\nSam Anderson ... Bernard \r\n\r\n/ ... (11 episodes, 2005-2007) \r\nTania Raymonde ... Alex / ... (11 episodes, 2006-2007) \r\nKimberley Joseph ... Cindy Chandler (10 episodes, \r\n\r\n2004-2007) \r\nChristian Bowman ... Steve Jenkins (10 episodes, 2004-2005) \r\nJohn Terry ... Dr. Christian Shephard / ... (9 episodes, 2004-2007) \r\n\r\n\r\nWilliam Mapother ... Ethan Rom (9 episodes, 2004-2007) \r\nFredric Lehne ... Marshal Edward Mars (8 episodes, 2004-2007) \r\nNestor Carbonell \r\n\r\n... Richard Alpert (7 episodes, 2007) \r\nAndrew Divoff ... Mikhail Bakunin (7 episodes, 2006-2007) \r\nMichael Bowen ... Danny Pickett (7 \r\n\r\nepisodes, 2006-2007) \r\nMarsha Thomason ... Naomi Dorrit (6 episodes, 2007) \r\nAndrea Gabriel ... Nadia (6 episodes, 2004-2007) \r\nBlake \r\n\r\nBashoff ... Karl (5 episodes, 2006-2007) \r\nAriston Green ... Jason (5 episodes, 2006-2007) \r\nKevin Tighe ... Anthony Cooper (5 episodes, \r\n\r\n2005-2007) \r\nJulie Bowen ... Sarah (5 episodes, 2005-2007) \r\nFrançois Chau ... Dr. Marvin Candle / ... (5 episodes, 2005-2007) \r\nBeth \r\n\r\nBroderick ... Diane Austen (4 episodes, 2005-2007) \r\nDaniel Roebuck ... Leslie Arzt (4 episodes, 2005-2007) \r\nSonya Walger ... Penny Widmore \r\n\r\n/ ... (4 episodes, 2006-2007) \r\nKim Dickens ... Cassidy Phillips (3 episodes, 2006-2007) \r\nAdetokumboh M\'Cormack ... Yemi (3 episodes, 2006) \r\n\r\n\r\nBrett Cullen ... Goodwin (3 episodes, 2005-2007) \r\nTony Lee ... Jae Lee (3 episodes, 2005-2006) \r\nApril Grace ... Bea Klugh (3 episodes, \r\n\r\n2006-2007) \r\nBilly Ray Gallion ... Randy / ... (3 episodes, 2004-2007) \r\nBrian Goodman ... Ryan Pryce (3 episodes, 2007) \r\nTeddy Wells ... \r\n\r\nIvan / ... (3 episodes, 2006-2007) \r\nByron Chung ... Mr. Paik (3 episodes, 2005-2007) \r\nNeil Hopkins ... Liam / ... (3 episodes, 2004-2007) \r\n\r\n\r\nLillian Hurst ... Carmen Reyes (3 episodes, 2005-2007) \r\nJonathan Dixon ... Flight Attendant #2 / ... (3 episodes, 2004-2005) \r\nMichelle \r\n\r\nArthur ... Flight Attendant #2 / ... (3 episodes, 2004-2005) \r\nJoah Buley ... Luke (3 episodes, 2006-2007) \r\nMeilinda Soerjoko ... Chrissy (3 \r\n\r\nepisodes, 2004-2006) \r\nMichael Adamshick ... Lottery Official / ... (3 episodes, 2004-2005) \r\nBrittany Perrineau ... Lotto Girl / ... (3 \r\n\r\nepisodes, 2005) \r\nClancy Brown ... Joe Inman / ... (2 episodes, 2006) \r\nKatey Sagal ... Helen (2 episodes, 2005-2006) \r\nRachel Ticotin ... \r\n\r\nCaptain Teresa Cortez (2 episodes, 2005-2006) \r\nLindsey Ginter ... Sgt. Sam Austen (2 episodes, 2005-2006) \r\nGabrielle Fitzpatrick ... Lindsey \r\n\r\n(2 episodes, 2006-2007) \r\nAlan Dale ... Charles Widmore (2 episodes, 2006-2007) \r\nKatie Doyle ... EMT / ... (2 episodes, 2005-2007) \r\nRobin \r\n\r\nWeigert ... Rachel (2 episodes, 2007) \r\nPaula Malcomson ... Colleen Pickett (2 episodes, 2006) \r\nKolawole Obileye Jr. ... Young Eko (2 \r\n\r\nepisodes, 2006) \r\nWendy Braun ... Gina (2 episodes, 2005) \r\nLawrence Jones ... Lead Soldier / ... (2 episodes, 2006) \r\nDavid Ely ... Intern \r\n\r\n(2 episodes, 2005) \r\nJeremy Shada ... Young Charlie (2 episodes, 2006-2007) \r\nOlekan Obileye ... Young Yemi (2 episodes, 2006) \r\nRobert \r\n\r\nFrederick ... Jeff (2 episodes, 2005) \r\nZack Shada ... Young Liam (2 episodes, 2006-2007) \r\nTracy Middendorf ... Bonnie (2 episodes, 2007) \r\n\r\n\r\nTomiko Lee ... Mrs. Lee (2 episodes, 2005-2006) \r\nRuz Rusden ... Airport Cop (2 episodes, 2005) \r\nLana Parrilla ... Greta (2 episodes, \r\n\r\n2007) \r\nDustin Geiger ... Matthew (2 episodes, 2006-2007) \r\nNick Jameson ... Richard Malkin (2 episodes, 2004-2006) \r\nTamara Taylor ... \r\n\r\nSusan Lloyd (2 episodes, 2005) \r\nJohn Shin ... Mr. Kwon / ... (2 episodes, 2005-2007) \r\nRon Bottitta ... Leonard Sims (2 episodes, 2005-2006) \r\n\r\n\r\nCraig Robert Young ... Bender / ... (2 episodes, 2006) \r\nGeoff Heise ... Doctor / ... (2 episodes, 2004) \r\nKiersten Havelock ... Emma (2 \r\n\r\nepisodes, 2005-2007) \r\nSuzanne Turner ... Ticket Agent / ... (2 episodes, 2005) \r\nMickey Graue ... Zack (2 episodes, 2005-2007) \r\nMark \r\n\r\nDillen Stitham ... Head Doctor / ... (2 episodes, 2004-2006) \r\nAaron Gold ... Jason McCormack (2 episodes, 2005-2006) \r\nMatt Moore ... \r\n\r\nHusband / ... (2 episodes, 2004-2005) \r\nMichael M. Vendrell ... Big Guy / ... (2 episodes, 2005-2006) \r\nGlenn Cannon ... Old Scooter Man / ... \r\n\r\n(2 episodes, 2004-2005) \r\nJulie Ow ... Nurse (2 episodes, 2005-2006) \r\nGreg Grunberg ... Pilot (2 episodes, 2004-2005) \r\nFaith Fay ... \r\n\r\nSurvivior (2 episodes, 2004) ',0,'11',2,'2007-10-07 07:07:15',1000,1,'Jack Bender, Stephen Williams, Tucker Gates, Paul A. Edwards, Eric \r\n\r\nLaneuville, Kevin Hooks, Greg Yaitanes, J.J. Abrams, Karen Gaviola','J.J. Abrams, Jeffrey Lieber, Damon Lindelof, Carlton Cuse, Adam Horowitz, \r\n\r\nEdward Kitsis, Liz Sarnoff, Javier Grillo-Marxuach, Drew Goddard, Leonard Dick, Christina M. Kim, David Fury, Steven Maeda, Jeff Pinkner, Jennifer \r\n\r\nJohnson, Craig Wright','Michael Giacchino','PAL',''), (259,1,'Paradise Now [OT: Paradise Now]',2005,'1. Writing credits\r\n(in alphabetical order) \r\nHany Abu-Assad writer \r\nBero Beyer \r\n\r\nwriter \r\nPierre Hodgson writer \r\n\r\n2. Cast (in credits order) complete, awaiting verification\r\nLubna Azabal ... Suha \r\nHamza Abu-Aiaash \r\n\r\n... Checkpoint Soldier \r\nKais Nashif ... Said \r\nLotuf Neusser ... Car Owner \r\nAli Suliman ... Khaled \r\nMohammad Bustami ... Abu-Salim \r\n\r\n\r\nAhmad Fares ... Tea Boy \r\nWaleed On-Allah ... Taxidriver Suha \r\nAsaad Dwikat ... Shawarma Shop Owner \r\nImad Saber ... Shawarma \r\n\r\nCustomer \r\nMohammad Kosa ... Photographer \r\nAmer Hlehel ... Jamal \r\nHiam Abbass ... Said\'s Mother \r\nNour Abd El-Hadi ... Said\'s Sister \r\n\r\n\r\nAmjad Al-Imlah ... Said\'s Brother \r\nDina Titi ... Khaled\'s Sister \r\nYosef Abo Dheir ... Khaled\'s Father \r\nSadi El-Masri ... \r\n\r\nKhaled\'s Attendant \r\nHana Sha\'alan ... Khaled\'s Mother \r\nNabeel Shaheen ... Video Camera Man \r\nAyman Swedan ... Barber \r\nJamal Shaheen \r\n\r\n... Explosive Maker \r\nHafez Mueen ... Explosive Attacher \r\nJamil Sawalmeh ... Guard 1 \r\nDeya Deen Hamaideh ... Guard 2 \r\nThabet Abu-\r\n\r\nZarour ... Guard 3 \r\nAshraf Barhom ... Abu-Karem (as Ashraf Barhoum) \r\nBassam Al-Nubani ... Fighter 1 \r\nMohammad Kaskas ... Fighter 2 \r\r\n\r\n\nNabeeh Jum\'a ... Fighter 3 \r\nMohammad Arabbas ... Fighter 4 \r\nSaed Mayaleh ... Fighter 5 \r\nDirar Suleiman ... Taxidriver Said (as Derar \r\n\r\nSuliman) \r\nMohammad Jibreel ... Van Driver \r\nWagde Ode ... Jamal\'s Assistant \r\nTha\'er Abu-Zarour ... Shawarma Customer \r\nOlivier \r\n\r\nMeidinger ... Abu-Shabaab \r\nSalwa Ibrahim ... Khaled\'s Mother \r\nAbd Elrahman Thaher ... Mechanic \r\nJamel Daher ... Car Owner (voice) (as \r\n\r\nJamal Daher)\r\n\r\n3.Original Music by \r\nJina Sumedi ',0,'2',2,'2008-07-31 06:38:32',90,1,'Hany Abu-Assad','Hany Abu-Assad, Bero Beyer, \r\n\r\nPierre Hodgson','Jina Sumedi','PAL - Anamorph Widescreen (2,40:1)','Audio: German (DD5.1, DTS 5.1), Arabic (DD 5.1) - Subtitles: German'), (260,1,'Little Miss Sunshine [OT: Little Miss Sunshine]',2006,'1 Writing credits (WGA) \r\nMichael Arndt (written by)\r\n\r\n2. Cast (in \r\n\r\ncredits order) complete, awaiting verification\r\nAbigail Breslin ... Olive Hoover \r\nGreg Kinnear ... Richard Hoover \r\nPaul Dano ... Dwayne \r\n\r\n\r\nAlan Arkin ... Grandpa Edwin Hoover \r\nToni Collette ... Sheryl Hoover \r\nSteve Carell ... Frank Ginsberg \r\nMarc Turtletaub ... Doctor \r\n\r\n#1 \r\nJill Talley ... Cindy \r\nBrenda Canela ... Diner Waitress \r\nJulio Oscar Mechoso ... Mechanic \r\nChuck Loring ... Convenience Store \r\n\r\nProprietor \r\nJustin Shilton ... Josh \r\nGordon Thomson ... Larry Sugarman \r\nSteven Christopher Parker ... Teen Boy #1 \r\nBryan Cranston ... \r\n\r\n Stan Grossman \r\nJohn Walcutt ... Doctor #2 \r\nPaula Newsome ... Linda \r\nDean Norris ... State Trooper McCleary \r\nBeth Grant ... Pageant \r\n\r\nOfficial Jenkins \r\nWallace Langham ... Kirby \r\nLauren Shiohama ... Miss California \r\nMary Lynn Rajskub ... Pageant Assistant Pam \r\nJerry \r\n\r\nGiles ... Funeral Home Worker \r\nGeoff Meed ... Biker Dad \r\nMatt Winston ... Pageant MC \r\nJoan Scheckel ... Judge \r\nCasandra Ashe ... \r\n\r\nGirl in Hallway \r\nMel Rodriguez ... Officer Martinez \r\nAlexandria Alaman ... Pageant Contestant \r\nAlissa Anderegg ... Pageant Contestant \r\n\r\n\r\nBrittany Baird ... Pageant Contestant \r\nCambria Baird ... Pageant Contestant \r\nBrenae Bandy ... Pageant Contestant \r\nKristen Holaas ... \r\n\r\n Pageant Contestant \r\nMaliah Hudson ... Pageant Contestant \r\nDestry Jacobs ... Pageant Contestant \r\nLindsey Jordan ... Pageant Contestant \r\n\r\n\r\nShane Murphy ... Pageant Contestant \r\nAnnabelle Roberts ... Pageant Contestant \r\nSydni Stevenson-Love ... Pageant Contestant \r\nNicole \r\n\r\nStoehr ... Pageant Contestant \r\nLauren Yee ... Pageant Contestant \r\nrest of cast listed alphabetically: \r\nErik David ... Photographer \r\n\r\n(uncredited) \r\nTara Dawn Holland ... Herself (archive footage) (uncredited) \r\nKsenia Jarova ... Pretty Girl (uncredited) \r\nRobert O\'Connor \r\n\r\n... Pageant Judge #1 (uncredited) \r\nRegis Philbin ... Himself (voice) (uncredited) \r\nMatthew W. Tate ... Funeral Worker #2 (uncredited) \r\n\r\n\r\n\r\n3. Original Music by \r\nMychael Danna \r\nDeVotchKa',0,'5',2,'2008-07-31 06:49:00',99,1,'Jonathan Dayton, Valerie Faris','Valerie \r\n\r\nFaris','Mychael Danna, DeVotchKa','PAL - Anamorph Widescreen (2.40:1)','Audio: German (DD 5.1), English (DD 5.1) - Subtitles: German, English, \r\n\r\nTurkish'), (261,1,'Liebe mich [OT: Lie With Me]',2005,'1. Writing credits (in alphabetical order) \r\nTamara Berger novel \r\nTamara Berger screenplay \r\n\r\n\r\nClément Virgo screenplay \r\n\r\n2. Cast (in credits order) \r\nLauren Lee Smith ... Leila \r\nEric Balfour ... David \r\nPolly Shannon ... \r\n\r\nVictoria \r\nMayko Nguyen ... Kika \r\nMichael Facciolo ... Shy Guy \r\nKate Lynch ... Marla \r\nRon White ... Ben \r\nKristin Lehman ... \r\n\r\nRachel \r\nDon Francks ... Joshua \r\nRichard Chevolleau ... Vigorous \r\nFrank Chiesurin ... Joel \r\nNicola Lipman ... Rabbi \r\nTheresa Tova \r\n\r\n... Russian Wedding Singer',0,'16',2,'2008-07-31 06:56:24',92,1,'Clément Virgo','Tamara Berger (novel), Tamara Berger (screenplay), Clément \r\n\r\nVirgo (screenplay)','Byron Wong','PAL - Anamorph Widescreen (1.78:1)','Audio: German (DD 2.0), German (DD 5.1)'), (262,1,'No Direction Home [OT: No Direction Home]',2005,'1. Cast (in credits order) \r\nBob Dylan ... Himself \r\nB.J. Rolfzen ... Himself \r\n\r\n(voice) \r\nDick Kangas ... Himself \r\nLiam Clancy ... Himself \r\nTony Glover ... Himself \r\nPaul Nelson ... Himself \r\nAllen Ginsberg ... \r\n\r\nHimself (archive footage) \r\nDave Van Ronk ... Himself (archive footage) \r\nMaria Muldaur ... Herself \r\nJohn Cohen ... Himself \r\nBruce \r\n\r\nLanghorne ... Himself \r\nMark Spoelstra ... Himself \r\nSuze Rotolo ... Herself \r\nIzzy Young ... Himself \r\nMitch Miller ... Himself \r\r\n\r\n\nJohn Hammond ... Himself \r\nPete Seeger ... Himself \r\nMavis Staples ... Herself \r\nArtie Mogull ... Himself \r\nHarold Leventhal ... \r\n\r\nHimself \r\nJoan Baez ... Herself \r\nPeter Yarrow ... Himself \r\nBob Neuwirth ... Himself (as Bobby Neuwirth) \r\nD.A. Pennebaker ... Himself \r\n\r\n\r\nAl Kooper ... Himself \r\nBob Johnston ... Himself \r\nMickey Jones ... Himself \r\nrest of cast listed alphabetically: \r\nJohnny Cash ... \r\n\r\nHimself (archive footage) \r\nRick Danko ... Himself (archive footage) \r\nOssie Davis ... Himself (archive footage) \r\nLamar Fike ... Himself \r\n\r\n\r\nWoody Guthrie ... Himself (archive footage) \r\nCarolyn Hester ... Herself \r\nGarth Hudson ... Himself (archive footage) \r\nJohn F. Kennedy \r\n\r\n... Himself (archive footage) \r\nMartin Luther King ... Himself (archive footage) \r\nRichard Manuel ... Himself (archive footage) \r\nGreil \r\n\r\nMarcus ... Himself \r\nChristopher Ricks ... Himself \r\nRobbie Robertson ... Himself (archive footage) \r\nManny Roth ... Himself \r\nRoy \r\n\r\nSilver ... Himself \r\nSean Wilentz ... Himself \r\nMartin Scorsese ... Himself (voice) (uncredited)',0,'24',2,'2008-07-31 07:03:03',204,1,'Martin Scorsese','Martin Scorsese','Bob Dylan','PAL - Full Frame','Audio: English (5.1) - Subtitles: English, German, ...'), (263,1,'Kottan ermittelt (Akte 1 - Fall 1-8)',1976,'1. Series Directed by \r\nPeter Patzak (11 episodes, 1976-1983) \r\n \r\n2. Series \r\n\r\nWriting credits \r\nHelmut Zenker (11 episodes, 1976-1983) \r\n\r\n3. Series Cast\r\nWalter Davy ... Paul Schremser (19 episodes, 1976-1983) \r\r\n\r\n\nCurt A. Tichy ... Alfred Schrammel (19 episodes, 1976-1983) \r\nBibiane Zeller ... Ilse Kottan (18 episodes, 1977-1983) \r\nChris Lohner ... TV \r\n\r\nspeaker (18 episodes, 1976-1983) \r\nCarlo Böhm ... Drballa / ... (15 episodes, 1978-1983) \r\nLukas Resetarits ... Maj. Adolf Kottan III. (14 \r\n\r\nepisodes, 1980-1983) \r\nFranz Suhrada ... Policeman Fritz Schreyvogel / ... (14 episodes, 1978-1983) \r\nKurt Weinzierl ... Polizeipräsident \r\n\r\nHeribert Pilch / ... (13 episodes, 1981-1983) \r\nErnst Konarek ... Horrak / ... (12 episodes, 1979-1983) \r\nGusti Wolf ... Kottan\'s mother / \r\n\r\n... (11 episodes, 1981-1983) \r\nPeter Patzak ... Policeman / ... (11 episodes, 1976-1983) \r\nFlorian Böhm ... Walter Kottan (10 episodes, 1978-\r\n\r\n1983) \r\nMichaela Mock ... Polizeiärztin (8 episodes, 1981-1983) \r\nRudolf Knor ... Gerhard Bösmüller / ... (6 episodes, 1977-1983) \r\nEva \r\n\r\nKerbler ... Elvira Markl (6 episodes, 1983) \r\nBirgit Machalissa ... Sissy Kottan (5 episodes, 1977-1980) \r\nFranz Buchrieser ... Maj. Adolf \r\n\r\nKottan II. / ... (5 episodes, 1977-1983) \r\nAndrás Gönczöl ... Casino-Rezeptionist / ... (5 episodes, 1978-1983) \r\nHarald von Koeppelle ... \r\n\r\nObst.Lt. Heribert Pilch / ... (4 episodes, 1978-1980) \r\nHans Kraemer ... 1. Tankstellenkunde / ... (4 episodes, 1978-1982) \r\nFranz Cenek ... \r\n\r\nPolizist / ... (4 episodes, 1976-1982) \r\nChristiane Rücker ... Elvira Markl / ... (4 episodes, 1978-1983) \r\nHans Pemmer ... Wasservogel Junior \r\n\r\n(4 episodes, 1983) \r\nPeter Vogel ... Maj. Adolf Kottan / ... (3 episodes, 1976-1978) \r\nLinda Koch ... Polizeiärztin / ... (3 episodes, 1976-\r\n\r\n1978) \r\nIrene Kargl ... Domnanovich (3 episodes, 1976-1978) \r\nLuise Prasser ... Anni Schwab / ... (3 episodes, 1976-1983) \r\nMaria Bill ... \r\n\r\nFrau Weller / ... (3 episodes, 1980-1982) \r\nErni Mangold ... Hausbesitzerin / ... (3 episodes, 1977-1983) \r\nMichael Buchgerber ... Male \r\n\r\nprostitute / ... (3 episodes, 1982-1983) \r\nLeon Askin ... Rudolf Wasservogel (3 episodes, 1983) \r\nAdi Lehner ... Briefträger / ... (3 \r\n\r\nepisodes, 1979-1983) \r\nHeidi Melinc ... Prostituierte - Leopard (3 episodes, 1982-1983) \r\nWalter Maitz (3 episodes, 1982-1983) \r\nFerdinand \r\n\r\nKaup ... Journalist in press conference (3 episodes, 1983) \r\nKonrad Becker ... Harald Eppler / ... (2 episodes, 1978-1983) \r\nMaria \r\n\r\nEngelstorfer ... Ernestine Kucharik / ... (2 episodes, 1976-1979) \r\nMichael Schottenberg ... Albert Zartl / ... (2 episodes, 1977-1980) \r\r\n\r\n\nMaria Martina ... Helga Petrasch / ... (2 episodes, 1979-1983) \r\nHanno Pöschl ... Beschina / ... (2 episodes, 1977-1982) \r\nMargit Gara ... \r\n\r\nältere Prostituierte (2 episodes, 1978-1983) \r\nBeatrice Frey ... Polizeiärztin (2 episodes, 1979-1980) \r\nEddie Constantine ... Lemmy Caution \r\n\r\n(2 episodes, 1983) \r\nHans-Georg Nenning ... Merkel (2 episodes, 1981-1983) \r\nHeinrich Starhemberg ... Harry Lime jr. (2 episodes, 1982-1983) \r\n\r\n\r\nHeinrich Strobele ... Gramanics / ... (2 episodes, 1976-1982) \r\nErhardt Koren ... Rennbahn-Wirt / ... (2 episodes, 1979-1982) \r\nUlf Dieter \r\n\r\nKusdas ... Erkennungsdienstbeamter / ... (2 episodes, 1980-1983) \r\nKitty Buchhammer ... Briefträger / ... (2 episodes, 1983) \r\nElisabeth \r\n\r\nStiepl ... Postbeamtin / ... (2 episodes, 1980-1982) \r\nMichael von Wolkenstein ... Pfarrer / ... (2 episodes, 1976-1977) \r\nHeinz Wanitschek \r\n\r\n... 1. Schläger / ... (2 episodes, 1978-1979) \r\nFranz Blauensteiner ... 2. Schläger / ... (2 episodes, 1978-1979) \r\nGünther Schifter ... \r\n\r\nHimself (narrator) / ... (2 episodes, 1979-1983) \r\nGünther Panak ... Wasservogel\'s Gangster (2 episodes, 1983) \r\nReinhard Reiner ... \r\n\r\nWasservogel\'s Gangster (2 episodes, 1983) \r\nSiegi Ganswohl ... Autokauf-Interessent (2 episodes, 1979-1983) \r\nFranz Gary ... Fotograf / ... \r\n\r\n(2 episodes, 1980-1982) \r\nWilli Neuner (2 episodes, 1982-1983) \r\nEmanuel Schmied ... Nightclubkellner (2 episodes, 1982-1983)',0,'25',2,'2008-07-31 07:10:13',728,1,'Peter Patzak','Helmut Zenker','Various','PAL - 1,3:1 (4:3)','Audio: German'), (264,1,'Kottan ermittelt (Akte 2 - Fall 9-19)',1976,'1. Series Directed by \r\nPeter Patzak (11 episodes, 1976-1983) \r\n \r\n2. Series \r\n\r\nWriting credits \r\nHelmut Zenker (11 episodes, 1976-1983) \r\n\r\n3. Series Cast\r\nWalter Davy ... Paul Schremser (19 episodes, 1976-1983) \r\r\n\r\n\nCurt A. Tichy ... Alfred Schrammel (19 episodes, 1976-1983) \r\nBibiane Zeller ... Ilse Kottan (18 episodes, 1977-1983) \r\nChris Lohner ... TV \r\n\r\nspeaker (18 episodes, 1976-1983) \r\nCarlo Böhm ... Drballa / ... (15 episodes, 1978-1983) \r\nLukas Resetarits ... Maj. Adolf Kottan III. (14 \r\n\r\nepisodes, 1980-1983) \r\nFranz Suhrada ... Policeman Fritz Schreyvogel / ... (14 episodes, 1978-1983) \r\nKurt Weinzierl ... Polizeipräsident \r\n\r\nHeribert Pilch / ... (13 episodes, 1981-1983) \r\nErnst Konarek ... Horrak / ... (12 episodes, 1979-1983) \r\nGusti Wolf ... Kottan\'s mother / \r\n\r\n... (11 episodes, 1981-1983) \r\nPeter Patzak ... Policeman / ... (11 episodes, 1976-1983) \r\nFlorian Böhm ... Walter Kottan (10 episodes, 1978-\r\n\r\n1983) \r\nMichaela Mock ... Polizeiärztin (8 episodes, 1981-1983) \r\nRudolf Knor ... Gerhard Bösmüller / ... (6 episodes, 1977-1983) \r\nEva \r\n\r\nKerbler ... Elvira Markl (6 episodes, 1983) \r\nBirgit Machalissa ... Sissy Kottan (5 episodes, 1977-1980) \r\nFranz Buchrieser ... Maj. Adolf \r\n\r\nKottan II. / ... (5 episodes, 1977-1983) \r\nAndrás Gönczöl ... Casino-Rezeptionist / ... (5 episodes, 1978-1983) \r\nHarald von Koeppelle ... \r\n\r\nObst.Lt. Heribert Pilch / ... (4 episodes, 1978-1980) \r\nHans Kraemer ... 1. Tankstellenkunde / ... (4 episodes, 1978-1982) \r\nFranz Cenek ... \r\n\r\nPolizist / ... (4 episodes, 1976-1982) \r\nChristiane Rücker ... Elvira Markl / ... (4 episodes, 1978-1983) \r\nHans Pemmer ... Wasservogel Junior \r\n\r\n(4 episodes, 1983) \r\nPeter Vogel ... Maj. Adolf Kottan / ... (3 episodes, 1976-1978) \r\nLinda Koch ... Polizeiärztin / ... (3 episodes, 1976-\r\n\r\n1978) \r\nIrene Kargl ... Domnanovich (3 episodes, 1976-1978) \r\nLuise Prasser ... Anni Schwab / ... (3 episodes, 1976-1983) \r\nMaria Bill ... \r\n\r\nFrau Weller / ... (3 episodes, 1980-1982) \r\nErni Mangold ... Hausbesitzerin / ... (3 episodes, 1977-1983) \r\nMichael Buchgerber ... Male \r\n\r\nprostitute / ... (3 episodes, 1982-1983) \r\nLeon Askin ... Rudolf Wasservogel (3 episodes, 1983) \r\nAdi Lehner ... Briefträger / ... (3 \r\n\r\nepisodes, 1979-1983) \r\nHeidi Melinc ... Prostituierte - Leopard (3 episodes, 1982-1983) \r\nWalter Maitz (3 episodes, 1982-1983) \r\nFerdinand \r\n\r\nKaup ... Journalist in press conference (3 episodes, 1983) \r\nKonrad Becker ... Harald Eppler / ... (2 episodes, 1978-1983) \r\nMaria \r\n\r\nEngelstorfer ... Ernestine Kucharik / ... (2 episodes, 1976-1979) \r\nMichael Schottenberg ... Albert Zartl / ... (2 episodes, 1977-1980) \r\r\n\r\n\nMaria Martina ... Helga Petrasch / ... (2 episodes, 1979-1983) \r\nHanno Pöschl ... Beschina / ... (2 episodes, 1977-1982) \r\nMargit Gara ... \r\n\r\nältere Prostituierte (2 episodes, 1978-1983) \r\nBeatrice Frey ... Polizeiärztin (2 episodes, 1979-1980) \r\nEddie Constantine ... Lemmy Caution \r\n\r\n(2 episodes, 1983) \r\nHans-Georg Nenning ... Merkel (2 episodes, 1981-1983) \r\nHeinrich Starhemberg ... Harry Lime jr. (2 episodes, 1982-1983) \r\n\r\n\r\nHeinrich Strobele ... Gramanics / ... (2 episodes, 1976-1982) \r\nErhardt Koren ... Rennbahn-Wirt / ... (2 episodes, 1979-1982) \r\nUlf Dieter \r\n\r\nKusdas ... Erkennungsdienstbeamter / ... (2 episodes, 1980-1983) \r\nKitty Buchhammer ... Briefträger / ... (2 episodes, 1983) \r\nElisabeth \r\n\r\nStiepl ... Postbeamtin / ... (2 episodes, 1980-1982) \r\nMichael von Wolkenstein ... Pfarrer / ... (2 episodes, 1976-1977) \r\nHeinz Wanitschek \r\n\r\n... 1. Schläger / ... (2 episodes, 1978-1979) \r\nFranz Blauensteiner ... 2. Schläger / ... (2 episodes, 1978-1979) \r\nGünther Schifter ... \r\n\r\nHimself (narrator) / ... (2 episodes, 1979-1983) \r\nGünther Panak ... Wasservogel\'s Gangster (2 episodes, 1983) \r\nReinhard Reiner ... \r\n\r\nWasservogel\'s Gangster (2 episodes, 1983) \r\nSiegi Ganswohl ... Autokauf-Interessent (2 episodes, 1979-1983) \r\nFranz Gary ... Fotograf / ... \r\n\r\n(2 episodes, 1980-1982) \r\nWilli Neuner (2 episodes, 1982-1983) \r\nEmanuel Schmied ... Nightclubkellner (2 episodes, 1982-1983)',0,'25',2,'2008-07-31 07:13:07',777,1,'Peter Patzak','Helmut Zenker','Various','PAL - 1.33:1 (4:3)','Audio: German'), (265,1,'Kottan ermittelt - Den Tüchtigen gehört die Welt',1982,'1. Writing credits (in alphabetical order) \r\nPeter Patzak writer \r\nHelmut \r\n\r\nZenker writer \r\n\r\n2. Cast (in credits order) \r\nBibiane Zeller ... Dr. Herta Aichinger \r\nErnst Konarek ... Dipl. Ing. Wolfgang Bleiner \r\n\r\n\r\nFred Schaffer ... Bezirksvorsteher Erwin Sommer \r\nPavel Landovský ... Jakob Kralicek \r\nFranz Buchrieser ... Maj. Adolf Kottan \r\nWalter \r\n\r\nDavy ... Paul Schremser \r\nPeter Neubauer ... Schrammel \r\nFrank Gorshin ... Harry Werner, alias Nash \r\nLukas Resetarits ... Ludwig Haumer \r\n\r\n\r\nNigel Davenport ... Pigel \r\nLiliana Nelska ... Erna Kovarik \r\nMaria Bill ... Elfi Kahlbeck \r\nBroderick Crawford ... Mike Carrady \r\r\n\r\n\nJoey Forman ... Eddie Owen \r\nHeinz Petters ... Genner \r\nHeinrich Strobele ... Hofrat Prager \r\nErhardt Koren ... Jerabek \r\nMichael \r\n\r\nSchottenberg ... Kripo \r\nAlfred Reiterer ... Kriminalbeamter \r\nMichaela Mock ... Polizeiärztin \r\nKlaus Uhlich ... Polizist \r\nOtto Tausig \r\n\r\n... Kramml - Gemüsehändler \r\nLuise Prasser ... Hausmeisterin \r\nFranz Gary ... Mann im Steireranzug \r\nHans-Georg Nenning ... \r\n\r\nSexshopverkäufer (as Georg Nenning) \r\nErni Mangold ... Wirtin \r\nHans Kraemer ... Oberkellner \r\nHeidi Melinc ... Stewardess \r\nBrigitte \r\n\r\nSlezak ... Leihwagenangestellte \r\nDieter Seefranz ... TV Sprecher \r\nKäthe Kratz ... Journalistin (as Kathi Kratz) \r\nDieter Berner ... \r\n\r\nJournalist \r\nAlfred Worm ... Journalist \r\nGerhard Swoboda ... Weigl - ein Freier \r\nEdith Kreuzberger ... Ilona \r\nLois Lang ... Gerald \r\n\r\nMartin Wiesinger \r\nImbert Kops ... Novotny \r\nPeter Turrini ... Passant mit 2 kleinen Hunden \r\nHanno Pöschl ... Mann bei Frau Kahlbeck \r\r\n\r\n\nrest of cast listed alphabetically: \r\nChris Lohner ... Fernsehsprecherin (uncredited) \r\nPeter Patzak ... Pilot (uncredited) \r\nFranz \r\n\r\nSuhrada ... Missionar (uncredited)',0,'5',2,'2008-07-31 07:16:04',111,1,'Peter Patzak','Peter Patzak, Helmut Zenker','Various','PAL - \r\n\r\n1.66:1 (4:3)','Audio: German (DD 2.0) / English (partly)'), (266,1,'Piefke-Saga, Die (Teil 1-4)',1990,'1. Writing credits (in alphabetical order) \r\nFelix Mitterer writer \r\n\r\n2. Cast (in credits \r\n\r\norder) \r\nDietrich Mattausch ... Karl-Friedrich Sattmann \r\nBrigitte Grothum ... Else Sattmann \r\nFerdinand Dux ... Heinrich Sattmann \r\r\n\r\n\nSabine Cruso ... Sabine Sattmann \r\nRalf Komorr ... Gunnar Sattmann \r\nKurt Weinzierl ... Franz Wechselberger \r\nVeronika Faber ... \r\n\r\nChristel Wechselberger \r\nTobias Moretti ... Josef \'Joe\' Rotter \r\nJosef Kuderna ... Max Niederwieser \r\nGregor Bloéb ... Stefan \r\n\r\nWechselberger \r\nHans Richter ... Hans Wechselberger \r\nBrigitte Jaufenthaler ... Anna Rotter \r\nPeter Kluibenschädel ... Andreas Rotter \r\r\n\r\n\nDoris Goldner ... Olga Rotter \r\nBarbara Weber ... Maria Rotter \r\nLudwig Dornauer ... Thomas Rotter \r\nrest of cast listed alphabetically: \r\n\r\n\r\nElse Anderka ... Lena Kantner \r\nAsta ... Asta, die Schäferhündin (as Hund Asta) \r\nJaromír Borek ... Handelsminister \r\nGert Burkard ... \r\n\r\nHerr Körner (as Gerd Burkard) \r\nLothar del Largo \r\nJosef Griesser ... Gendarm \r\nHelmut Haidacher ... Landeshauptmann \r\nHans Kolp ... \r\n\r\nPfarrer \r\nKurt Müller-Walden ... Notar \r\nWalter Padreider ... Arzt \r\nHeinz Petters ... Chefredakteur \r\nClaudia Rieschel ... Jutta Karge \r\n\r\n\r\nSascha Scholl ... Manfred Hollescheck \r\nRobert Winterle \r\nPeter Faerber ... (uncredited) \r\nRainhard Fendrich ... Himself / Sänger im \r\n\r\nFernsehen (archive footage) (uncredited) \r\nJoachim Fuchsberger ... Himself / Fernsehmoderator (archive footage) (uncredited) \r\nGerald Pichowetz \r\n\r\n... Redaktionsmitglied (uncredited) \r\nWerner Sobotka ... Fotograf (uncredited) \r\n\r\n3. Original Music by \r\nWilhelm Dieter Siebert (as \r\n\r\nWilly Siebert) ',0,'5',2,'2008-07-31 07:23:17',385,1,'Wilfried Dotzel, Werner Masten (episode 4), Felix Mitterer (uncredited)','Felix \r\n\r\nMitterer','Wilhelm Dieter Siebert (as Willy Siebert)','PAL - 4:3','Audio: German (DD 2.0)'), (267,1,'I\'m Not There [OT: I\'m Not There]',2008,'1. Writing Credits:\r\nTodd Haynes (screenplay)\r\nOren Moverman (screenplay)\r\nTodd Haynes \r\n\r\n(story) \r\n\r\n2. Cast (in credits order) complete, awaiting verification\r\nCate Blanchett ... Jude \r\nBen Whishaw ... Arthur \r\nChristian \r\n\r\nBale ... Jack / Pastor John \r\nRichard Gere ... Billy \r\nMarcus Carl Franklin ... Woody / Chaplin Boy \r\nHeath Ledger ... Robbie \r\nKris \r\n\r\nKristofferson ... Narrator (voice) \r\nDon Francks ... Hobo Joe \r\nRoc LaFortune ... Hobo Moe \r\nLarry Day ... Government Agent \r\nPaul \r\n\r\nCagelet ... Carny / Bell-Hop \r\nBrian R.C. Wilmes ... Circus Man (as Brian RC Wilmes) \r\nPierre-Alexandre Fortin ... Gorgeous George \r\nRichie \r\n\r\nHavens ... Old Man Arvin \r\nTyrone Benskin ... Mr. Arvin \r\nKim Roberts ... Mrs. Arvin \r\nEric Newsome ... Sixties Narrator \r\nAngela \r\n\r\nGaluppo ... Folk Girl \r\nJane Wheeler ... TV Host \r\nJulianne Moore ... Alice Fabian \r\nPeter Friedman ... Morris Bernstein / Barker \r\r\n\r\n\nDavid Gow ... Variety Show Host \r\nFanny La Croix ... Actress \r\nKim Gordon ... Carla Hendricks \r\nMatthew Harbour ... Fan #1 \r\nKyle \r\n\r\nSwitzer ... Fan #2 \r\nTerry Haig ... Gerry Hamlin \r\nGreg Kramer ... Drunk \r\nGordon Masten ... Moonshiner \r\nBill Croft ... Thief / \r\n\r\nButcher \r\nCharlotte Gainsbourg ... Claire \r\nGabrielle Marcoux ... Molly - Age 6 \r\nJessey LaFlamme ... Carlie - Age 3 \r\nJennifer Rae \r\n\r\nWestley ... Louise \r\nPierre LeBlanc ... Director / Father of Tumbleweed Girl \r\nTim Post ... Newscaster \r\nRichard Robitaille ... Director \r\n\r\n#2 \r\nIvan Freud ... Performer #1 \r\nHolly O\'Brien ... Performer #2 \r\nDanny Blanco ... Black Doctor (as Danny Blanco-Hall) \r\nSusan Glover \r\n\r\n... Mrs. Peacock \r\nVito DeFilippo ... Mr. Peacock \r\nAndrew Simms ... Mr. Snow \r\nLisa Bronwyn Moore ... Mrs. Snow \r\nJessica Kardos ... \r\n\r\nNurse \r\nGarth Gilker ... Man in Hospital Bed \r\nJohn Koensgen ... Physician \r\nMark Camacho ... Norman \r\nLorne Brass ... Folk Guru / \r\n\r\nChester \r\nAndrew Shaver ... Mike \r\nTavis Eachan Triance ... Jude\'s Musician: The Royal Mountain Band \r\nFrederic Charest ... Jude\'s \r\n\r\nMusician - The Royal Mountain Band \r\nWarren Brewer Auld ... Jude\'s Musician: The Royal Mountain Band \r\nSimon P.F. Nixon ... Jude\'s Musician: \r\n\r\nThe Royal Mountain Band \r\nAndrew Greene ... Festival Guy #1 \r\nPaul Van Dyck ... Festival Guy #2 \r\nAl Vandecruys ... Festival Director \r\r\n\r\n\nLeif Anderson ... Sound Man \r\nBrett Watson ... College Student \r\nWyatt Bowen ... Dazed Kid \r\nPaul Johnston ... Bearded Scott \r\nNico \r\n\r\nRomberg ... Kid with Glasses \r\nClarice Byrne ... One Girl \r\nMaggie Castle ... Another Girl \r\nJoe Cobden ... Sonny \r\nKristen Hager ... \r\n\r\nMona / Polly \r\nRichard Jutras ... Reporter #1 \r\nDaniel Richard Giverin ... Reporter #2 / Policeman (as Daniel Giverin Richard) \r\nMatt \r\n\r\nHolland ... Reporter #3 \r\nNoël Burton ... Reporter #4 (as Noel Burton) \r\nBruce Greenwood ... Keenan Jones / Garrett \r\nMichelle Williams ... \r\n\r\n Coco Rivington \r\nKyle Gatehouse ... Hotel Waiter \r\nJason Cavalier ... Roadie \r\nGreta Papageorgiu ... Stewardess \r\nTrevor Hayes ... \r\n\r\nSydney \r\nMarie-Hélène Chartrand ... Woman Talking to Claire \r\nMarie-Julie Rivest ... Strange Woman \r\nJesse Todd ... Strange Man \r\nLina \r\n\r\nRoessler ... Publicist \r\nSherry Haynes ... Dame \r\nJohann St-Louis ... John \r\nMickael Sébastien Vitanza ... Paul \r\nPierre-Luc Lebeau ... \r\n\r\nGeorge \r\nJean-Nicolas Déry ... Ringo \r\nKathleen Fee ... Duchess \r\nEmmanuel Schwartz ... Gawky Teen \r\nPauline Little ... Lady with Tape \r\n\r\nRecorder \r\nDavid Cross ... Allen Ginsberg \r\nEugene Brotto ... Peter Orlovsky \r\nShawn Baichoo ... Carnival Geek \r\nBenz Antoine ... Bobby \r\n\r\nSeale / Rabbit Brown \r\nCraig Thomas ... Huey P. Newton \r\nCatherine Colvey ... Mrs. Jones \r\nMax Walker ... Kid in the Crowd \r\nJean-Pierre \r\n\r\nLalonde ... 2nd Kid in the Crowd \r\nCapone ... Henry - Billy\'s Dog \r\nHollywood ... Billy\'s Horse \r\nPaul Spence ... Homer (as Paul J. \r\n\r\nSpence) \r\nAlison Folland ... Grace \r\nGraham Cuthbertson ... Martin \r\nShaun Balbar ... Paparazzi (as Sean Balbar) \r\nFelix Pennell ... \r\n\r\nRed-Haired Boy \r\nJeremy Kantor ... Boy 2 \r\nAlexis Demers ... Molly - as a Baby \r\nSteve Godin ... Townfolk #1 \r\nArthur Holden ... \r\n\r\nTownsfolk #2 \r\nThiéry Dubé ... Priest (as Thiery Dubé) \r\nRob Burns ... Frantic Husband \r\nLeigh Ann Taylor ... Frantic Wife \r\nJim James \r\n\r\n... Brass Band Singer \r\nJoey Burns ... Brass Band Player #1 \r\nJohn Convertino ... Brass Band Player #2 \r\nJane Gilchrist ... Mrs. Henry \r\r\n\r\n\nDennis St John ... Captain Henry \r\nMaxime Billick ... Clarice Henry \r\nMatthew Boylan ... Brian Jones \r\nPatrick Costello ... Artist \r\r\n\r\n\nHéléna Laliberté ... Intense Girl (as Helena Laliberté) \r\nDominic Laurence James ... Falling Man \r\nNathalie Girard ... Angel #1 \r\r\n\r\n\nSharlene Royer ... Angel #2 \r\nKathryn Kostlivy ... Angel #3 \r\nYolonda Ross ... Angela Reeves \r\nPier Paquette ... T-Bone (as Pier Kohl) \r\n\r\n\r\nJodie Resther ... Choir Singer (as Jodie Lynn Resther) \r\nKassandra Dasent ... Choir Singer (as Kassandra Terry Dasent) \r\nPhyllis Gooden \r\n\r\n... Choir Singer \r\nJean-Loup Yale ... State Agent \r\n\r\n2. Original Music by:\r\nBob Dylan\r\nJim James and Calexico\r\nThe Monkees\r\nSonic \r\n\r\nYouth\r\nStephen Malkmus and The Million Dollar Bashers\r\nEddie Vedder and The Million Dollar Bashers\r\nMarcus Carl Franklin\r\nMason Jennings\r\r\n\r\n\nRichie Havens and Marcus Carl Franklin\r\nJohn Doe\r\nTom Verlaine and The Million Dollars Bashers\r\nTrini Lopez\r\nYo La Tengo\r\nCalexico\r\r\n\r\n\nNino Rota\r\nIggy & The Stooges\r\nAntony & The Johnsons',0,'24',2,'2008-10-04 08:08:48',130,1,'Todd Haynes','Todd Haynes (story & \r\n\r\nscreenplay), Oren Moverman (screenplay)','Bob Dylan & others','PAL - Anamorph Widescreen (2,35:1)','Audio: German (DD 5.1), English (DD 5.1) - \r\n\r\nSubtitles: German, English (aurally handicapped)'), (268,1,'Adams Äpfel [OT: Adams æbler]',2005,'1. Writing credits (in alphabetical order) : \r\nAnders Thomas Jensen (writer) \r\n\r\n2. Cast \r\n\r\n(in credits order): \r\nUlrich Thomsen ... Adam Pedersen \r\nMads Mikkelsen ... Ivan \r\nNicolas Bro ... Gunnar \r\nPaprika Steen ... Sarah \r\n\r\nSvendsen \r\nAli Kazim ... Khalid \r\nOle Thestrup ... Dr. Kolberg \r\nNikolaj Lie Kaas ... Holger \r\nGyrd Løfquist ... Poul Nordkap \r\nLars \r\n\r\nRanthe ... Esben \r\nPeter Reichhardt ... Nalle \r\nTomas Villum Jensen ... Arne \r\nPeter Lambert ... Jørgen \r\nSolvej K. Christensen ... \r\n\r\nPige på tankstation \r\nRasmus Rise Michaelsen ... Ung fyr på tankstation #1 \r\nJacob-Ole Remming ... Ung fyr på tankstation #2 (as Jacob Ole \r\n\r\nRemming) \r\nrest of cast listed alphabetically: \r\nSolvej Christensen \r\nEmil Kevin Olsen ... Christoffer \r\nPer Holm Henriksen ... Patient \r\n\r\n(uncredited) \r\n\r\n3. Original Music by: \r\nJeppe Kaas ',0,'5',2,'2008-10-04 08:23:55',93,1,'Anders Thomas Jensen','Anders Thomas Jensen \r\n\r\n(writer)','Jeppe Kaas','PAL - Anamorph Widescreen (2,35:1)','Audio: Danish (DD 2.0), German (DD 2.0, DD 5.1) - Subtitles: German'), (269,2,'Keinohrhasen',2007,'1. Writing credits:\r\nAnika Decker (written by) \r\nTil Schweiger (written by)\r\n\r\n2. Cast (in credits order): \r\n\r\n\r\nTil Schweiger ... Ludo Dekker \r\nNora Tschirner ... Anna \r\nMatthias Schweighöfer ... Photograph Moritz \r\nAlwara Höfels ... Miriam \r\r\n\r\n\nJürgen Vogel ... Himself - famous movie star \r\nRick Kavanian ... Chefredakteur \r\nArmin Rohde ... Bello \r\nWolfgang Stumph ... Fieser \r\n\r\nTaxifahrer \r\nBarbara Rudnik ... Lilli \r\nChristian Tramitz ... Arzttyp \r\nrest of cast listed alphabetically: \r\nPasquale Aleardi ... \r\n\r\nLudo\'s Anwalt \r\nGregor Bloéb ... Michi Nußbaumer \r\nRené Böhnke ... Zaungast \r\nAnne-Sophie Briest ... Mandy \r\nYvonne Catterfeld ... \r\n\r\nHerself - Celebrity-Braut \r\nClaudia Fritzsche ... Miese Rezeptionskrankenschwester \r\nJohannes Halonen ... Hochzeitsgast \r\nZora Holt ... \r\n\r\nEifersüchtige Kellnerin \r\nLars Joermann ... Kellner \r\nWladimir Klitschko ... Husband \r\nDaniel Krauss ... Journalist \r\nPhilipp Kubitza \r\n\r\n\r\nFlorentine Lahme ... Sissi \r\nKai Lentrodt ... Taxifahrer 2 \r\nStephan Luca ... Arzt \r\nSonsee Neu ... Richterin \r\nAndrea Paula Paul \r\n\r\n... Kosmetikerin \r\nJohannes Pautzke ... Junge \r\nNina Proll ... Daniela Berg \r\nAnastasia Schifler ... Kellerin #2 \r\nBarbara Schöneberger \r\n\r\n... Herself \r\nSteffen Schroeder ... Rezeptionist Andreas \r\nPaul Maximilian Schüller ... Lollo \r\nEmma Schweiger ... Cheyenne-Blue \r\nLilli \r\n\r\nSchweiger ... Mädchen mit der Mütze \r\nLuna Schweiger ... Young Anna \r\nValentin Schweiger ... Young Ludo \r\nJeanne Tremsal ... Danielle \r\r\n\r\n\nElena Uhlig ... Wellness-Angestellte \r\nFahri Yardim ... Mucki \r\nBrigitte Zeh ... Nina \r\n\r\n3. Original Music by: \r\nStefan Hansen \r\n\r\n(music composer) \r\nDirk Reichardt (music composer) \r\nMirko Schaffer (music composer) ',0,'5',2,'2008-10-04 08:39:12',111,1,'Til \r\n\r\nSchweiger','Anika Decker & Til Schweiger','Stefan Hansen, Dirk Reichardt, Mirko Schaffer','PAL - Anamorph Widescreen (2,35:1)','Audio: German \r\n\r\n(DD 5.1) - Subtitles: German (aurally handicapped), English'), (270,1,'Chronicle of a Century XX (Vol. 1-5)',1999,'DVD 1:\r\n\r\nKapitel 1: Der Beginn eines Jahrhunderts\r\n01 Die allgemeine soziale \r\n\r\nSituation\r\n02 Die Politik in Europa\r\n03 Die Politik im Orient \r\n04 Wirtschaft \r\n05 Wissenschaft und Technik \r\n06 Kultur \r\n07 Vereinigte \r\n\r\nStaaten \r\n08 Südamerika \r\n09 Gesellschaft/Religion \r\n\r\nKapitel 2: Wie Welt vor 1914 \r\n01 Allgemeine Situation \r\n02 Die russische Politik \r\n\r\n\r\n03 Die Politik in den restlichen europäischen Ländern \r\n04 Die Politik im Orient \r\n05 Die nordamerikanische Politik \r\n06 Südamerika \r\n07 \r\n\r\nWissenschaft und Technik \r\n08 Kultur, Gesellschaft und Sport \r\n\r\nDVD 2:\r\n\r\nKapitel 3: Der grosse Krieg \r\n01 Der Vorabend des Gefechts \r\n\r\n\r\n02 Der 1. Weltkrieg \r\n03 Die Zerstörungsmacht der Armeen \r\n04 Der Krieg nach dem Eintritt der Amerikaner \r\n05 Die russische Front \r\n06 \r\n\r\nDer Seekrieg \r\n07 Die Vereinigten Staaten während des Krieges \r\n08 Die letzten Angriffe \r\n09 Das Ende des Krieges \r\n10 Die russische \r\n\r\nRevolution \r\n11 Kultur, Gesellschaft und Sport \r\n\r\nKapitel 4: Die erste Nachkriegszeit \r\n01 Allgemeine soziale Situation \r\n02 Die \r\n\r\nKriegswunden Europas \r\n03 Die Friedenskonferenz - Eine Konferenz ohne die Besiegten \r\n04 Die Ausbreitung des Totalitarismus \r\n05 Wissenschaft \r\n\r\nund Technik - Die Revolution von Einstein \r\n06 Die Vereinigten Staaten - Die industrielle Umgestaltung \r\n07 Die Veränderung in der Gesellschaft \r\n\r\n- Das Alkoholverbot und der \"Johnson\'s Act\" \r\n08 Der Wiederaufbau Europas - Die kritische wirtschaftliche Lage der Nachkriegszeit \r\n09 Hitlers \r\n\r\nunaufhaltsamer Aufstieg \r\n10 Die Situation in Rußland - Das gigantische Aufbrodeln von Problemen \r\n11 Kultur, Gesellschaft und Sport \r\n\r\nDVD \r\n\r\n3:\r\n\r\nKapitel 5: Die nicht ganz so glücklichen 20er Jahre \r\n01 Allgemeines Situation - Eine goldene Zeit, um den Krieg zu vergessen \r\n02 Die \r\n\r\nVereinigten Staaten - Die geburtenstarken Jahre \r\n03 Der Börsensturz - Die große Depression \r\n04 Sport - Die Olympiade während der Depression \r\n\r\n\r\n05 Die Entstehung von Nationen \r\n06 Europa - Der Anstieg der Inflationsrate \r\n07 Die Sowjetunion - Die Spaltung des russischen Kommunismus \r\n\r\n\r\n08 Der Umbruch der Gesellschaft weltweit - Die glücklichen 20er \r\n09 Südamerika - Die Entstehung der Unruhen und Revolutionen \r\n10 Die \r\n\r\nSituation im Orient - Die Antikolonialisierung \r\n11 Wissenschaft und Technik - Die Innovationen \r\n\r\nKapitel 6: Das Zeitalter des \r\n\r\nTotalitarismus \r\n01 Die politische Situation - Die Welt gleitet in einen weiteren Krieg \r\n02 Die Vereinigten Staaten - Die Epoche des \"New Deal\" \r\n\r\n\r\n03 Die Situation in Südamerika - Die wirtschaftliche, politische und soziale Krise \r\n04 Das alte Europa - Auf dem Weg zur Aufrüstung \r\n05 \r\n\r\nDer spanische Bürgerkrieg - Die Einleitung des 2. Weltkrieges \r\n06 Die Konflikte im Orient - Das Ende des Bürgerkrieges in China \r\n07 Das \r\n\r\nAtomzeitalter 08 Kultur, Gesellschaft und Sport \r\n\r\nKapitel 7: Der 2. Weltkrieg \r\n01 Die weltweite Situation \r\n02 Der Ausbrucht des 2. \r\n\r\nWeltkrieges \r\n03 Der Einmarsch der Deutschen in Paris \r\n04 Der Luftkrieg \r\n05 Die Wende im Krieg - Der Dreierpakt \r\n06 Der japanische \r\n\r\nAngriff auf Pearl Harbor \r\n07 Operation \"Overlord\" \r\n08 Das Leben unter dem Nazismus \r\n09 Der Anfang vom Ende - Die Kapitulation von Caserta \r\n\r\n\r\n10 Das Ende des Krieges \r\n11 Gesellschaft, Kultur und Sport - Das Leben während des Krieges \r\n\r\nDVD 4:\r\n\r\nKapitel 8: Der langsame \r\n\r\nWiederaufbau \r\n01 Die schwierige Nachkriegszeit \r\n02 Die UdSSR und der Ostblock \r\n03 Die Konferenz in San Francisco \r\n04 Die Gründung \r\n\r\nIsraels \r\n05 Ein neues Europa \r\n06 Die Potsdamer Konferenz \r\n07 Der Orient \r\n08 Die Vereinigten Staaten \r\n09 Südamerika \r\n10 \r\n\r\nGesellschaft, Kultur und Sport \r\n11 Wissenschaft und Technik \r\n\r\nKapitel 9: Die 50er Jahre \r\n01 Die Kriege von Korea und Indochina \r\n02 \r\n\r\nDie Gesellschaft in den Vereinigten Staaten \r\n03 Europa \r\n04 Das Leben in der UdSSR \r\n05 Der Vordere Orient \r\n06 Die Situation in Südamerika \r\n\r\n\r\n07 Die schwierige Situation im Mittleren Orient \r\n08 Der Wettlauf im Weltraum \r\n09 Gesellschaft und Kunst \r\n\r\nKapitel 10: Die \r\n\r\nEntspannung \r\n01 Kennedys Amerika \r\n02 Das demokratische Deutschland \r\n03 Die Welt am Rande des 3. Weltkrieges \r\n04 Die Größe Kennedys \r\r\n\r\n\n05 Das Attentat auf Martin Luther King \r\n06 Vietnam: der Wahnsinn \r\n07 Verhaftung und Hinrichtung von Ché Guevara \r\n08 Die komplizierte \r\n\r\nSituation in Südamerika \r\n09 Politische Schwankungen in Europa \r\n10 UdSSR und China \r\n11 Der Mittlere Orient \r\n12 Die Situation in Afrika \r\n\r\n\r\n13 Gesellschaft, Kultur und Sport \r\n14 Wissenschaft und Technik \r\n\r\nDVD 5:\r\n\r\nKapitel 11: Das Ende der Krise rückt näher \r\n01 Eine \r\n\r\nneue Epoche \r\n02 Allgemeine soziale Situation \r\n03 Europa \r\n04 Der Mittlere Orient \r\n05 Afrika \r\n06 Die Vereinigten Staaten \r\n07 Die \r\n\r\nUdSSR nach Chruschtschow \r\n08 Das Leben in Südamerika \r\n09 Der Staatsstreich in Chile \r\n10 Wissenschaft und Technik \r\n11 Gesellschaft, \r\n\r\nKultur und Sport \r\n\r\nKapitel 12: Unsicherheit und Veränderung \r\n01 Allgemeine Situation \r\n02 Die UdSSR und der sozialistische Block \r\n03 \r\n\r\nDie Vereinigten Staaten \r\n04 Europa \r\n05 Der Mauerfall \r\n06 Afrika \r\n07 Der Mittlere Orient \r\n08 Südamerika \r\n09 China \r\n10 \r\n\r\nWissenschaft und Technik \r\n11 Gesellschaft, Kultur und Sport \r\n\r\nKapitel 13: Auf dem Weg zu einer neuen Weltordnung \r\n01 Die Spaltung der \r\n\r\nUdSSR \r\n02 Der Krieg im ehemaligen Jugoslawien \r\n03 Europa \r\n04 Die Vereinigten Staaten \r\n05 Südamerika \r\n06 Krieg am Persischen Golf \r\r\n\r\n\n07 Der Mittlere Orient \r\n08 Afrika \r\n09 Gesellschaft, Kultur und Sport \r\n10 Wissenschaft und Technik ',0,'23',2,'2008-10-04 09:03:20',342,1,'n/a','n/a','n/a','PAL - (4:3)','Audio: English, German, French, Italian, Spanish, Polish / (DD 5.1)'), (271,1,'Auf Anfang [: Reprise] [OT: Reprise]',2006,'1. Cast (in credits order) \r\nAnders Danielsen Lie ... Phillip Reisnes \r\nEspen Klouman-\r\n\r\nHøiner ... Erik \r\nViktoria Winge ... Kari Brekke \r\nHenrik Elvestad ... Henning \r\nChristian Rubeck ... Lars Etterstad AKA Porno Lars \r\r\n\r\n\nOdd Magnus Williamson ... Morten \r\nRebekka Karijord ... Johanne \r\nHenrik Mestad ... Jan Eivind \r\nPål Stokka ... Geir \r\nSigmund Sæverud \r\n\r\n... Sten Egil Dahl \r\nrest of cast listed alphabetically: \r\nCecilie Bertran de Lis ... Sykesøster \r\nAnders Borchgrevink ... Joy Division \r\n\r\njogger \r\nTone Danielsen ... Inger, Phillip\'s mother \r\nEindride Eidsvold ... Narrator (voice) \r\nKari Feilberg-Jacobsen ... Guest at party \r\n\r\n\r\nHege Serine Golf ... Geirs jente på fest (as Hege Golf) \r\nSilje Hagen ... Lillian \r\nThorbjørn Harr ... Mathis Wergeland \r\nDargny Holter \r\n\r\n... Frodes mor \r\nJohn Sigurd Kristensen ... Jon (as John S. Kristensen) \r\nIvar Lykke ... Telesalgsjef \r\nElisabeth Sand ... Hanne, Erik\'s \r\n\r\nmother \r\nAnne Sandvik Lindmo ... Programleder \r\nAndreas Tylden ... Rune \r\nBjørn Tore Hansen ... Teleselger (uncredited) \r\n\r\n2. Writing \r\n\r\ncredits\r\n(in alphabetical order) \r\nJoachim Trier writer \r\nEskil Vogt writer \r\n\r\n3. Original Music by \r\nOla Fløttum \r\nKnut \r\n\r\nSchreiner ',0,'2',2,'2008-11-22 12:34:31',102,1,'Joachim Trier','Joachim Trier, Eskil Vogt','Ola Fløttum, Knut Schreiner','PAL - \r\n\r\nAnamorphic Widescreen (1,85:1)','Audio: Norvegian (DD 5.1) - Subtitles: German'), (272,1,'Leningrad Cowboys Go America [OT: Leningrad Cowboys Go America]',1989,'1. Cast (in credits order) complete, awaiting verification\r\r\n\r\n\nMatti Pellonpää ... Vladimir (Manager) \r\nKari Väänänen ... Igor (Village Idiot) \r\nSakke Järvenpää ... The Leningrad Cowboys \r\nHeikki \r\n\r\nKeskinen ... The Leningrad Cowboys \r\nPimme Korhonen ... The Leningrad Cowboys \r\nSakari Kuosmanen ... The Leningrad Cowboys \r\nPuka Oinonen \r\n\r\n... The Leningrad Cowboys \r\nSilu Seppälä ... The Leningrad Cowboys \r\nMauri Sumén ... The Leningrad Cowboys \r\nMato Valtonen ... The \r\n\r\nLeningrad Cowboys \r\nPekka Virtanen ... The Leningrad Cowboys \r\nNicky Tesco ... Lost Cousin \r\nOlli Tuominen ... Siberian Svengali \r\nKari \r\n\r\nLaine ... Siberian Chauffeur \r\nJatimatic Ohlstrom ... Father of the Cowboys \r\nRichard Boes ... Rockpromotor \r\nJim Jarmusch ... Car Dealer \r\n\r\n/ New York \r\nGeorge M. Kunkle ... Banjo Player \r\nWilliam W. Robertson ... Barber \r\nMr. Morris ... Bartender / Memphis \r\nMs. Morris ... \r\n\r\nBartender / Memphis \r\nMarty Olavarrieta ... Police Officer \r\nEarl Howard Jr. ... Bar Owner \r\nAlbert Gonzales ... Prison Warden \r\nDuke \r\n\r\nRobillard ... Nightclub Owner \r\nFrank Johnson ... Car Dealer / Houston \r\nErnie Wright ... Bartender / Houston \r\nPhillip Linson ... \r\n\r\nNightclub Customer (as Phil Linson) \r\nRock ... Engine Thief \r\nTerry ... Engine Thief \r\nSpeed ... Engine Thief \r\nCarlton ... Engine Thief \r\n\r\n\r\nJudge Felix Barrera ... Bride\'s Father \r\nLaura Barrera ... Bride \r\nJohn Martinez ... Groom \r\nJose G. Salas ... Mexican Singer \r\n\r\r\n\r\n\n2. Writing credits\r\n(in alphabetical order) \r\nSakke Järvenpää story \r\nAki Kaurismäki screenplay \r\nAki Kaurismäki story \r\nMato \r\n\r\nValtonen story \r\n\r\n3. Original Music by \r\nMauri Sumén \r\n',0,'5',2,'2008-11-22 12:39:48',76,1,'Aki Kaurismäki','Sakke Järvenpää, \r\n\r\nAki Kaurismäki, Mato Valtonen','Mauri Sumén, Leningrad Cowboys','PAL - Anamorphic Widescreen (16:9)','Audio: English/Finnish (DD 2.0) - \r\n\r\nSubtitles: German, French'), (273,1,'Leningrad Cowboys Meet Moses [OT: Leningrad Cowboys Meet Moses]',1994,'1. Cast (in credits order) \r\nTwist-Twist Erkinharju ... \r\n\r\nLeningrad Cowboy \r\nBen Granfelt ... Leningrad Cowboy \r\nSakke Järvenpää ... Leningrad Cowboy \r\nJore Marjaranta ... Leningrad Cowboy \r\nEkke \r\n\r\nNiiva ... Leningrad Cowboy \r\nJyri Närvänen ... Leningrad Cowboy (as Lyle Närvänen) \r\nPemo Ojala ... Leningrad Cowboy \r\nSilu Seppälä ... \r\n\r\nLeningrad Cowboy \r\nMauri Sumén ... Leningrad Cowboy \r\nMato Valtonen ... Leningrad Cowboy \r\nMatti Pellonpää ... Moses / Vladimir \r\nKari \r\n\r\nVäänänen ... The Mute \r\nAndré Wilms ... Lazar / Johnson / Elijah \r\nNicky Tesco ... American Cousin \r\nJacques Blanc ... Owner of Bingo \r\n\r\nParlour \r\nNicole Helies ... Bingo Hostess \r\nKirsi Tykkyläinen ... Singer of Babylon \r\nrest of cast listed alphabetically: \r\nAki Kaurismäki \r\n\r\n... Factory Worker imitating Chaplin (uncredited) \r\n\r\n2. Writing credits\r\n(in alphabetical order) \r\nSakke Järvenpää story \r\nAki \r\n\r\nKaurismäki story \r\nMato Valtonen story \r\n\r\n3. Original Music by \r\nMauri Sumén ',0,'5',2,'2008-11-22 12:43:31',90,1,'Aki \r\n\r\nKaurismäki','Sakke Järvenpää, Aki Kaurismäki, Mato Valtonen','Mauri Sumén, Leningrad Cowboys','PAL - Anamorphic Widescreen (16:9)','Audio: \r\n\r\nEnglish (DD 2.0) - Subtitles: German'), (274,1,'Boston Legal (Season One) [OT: Boston Legal (Season One)]',2004,'1. Series Cast\r\nJames Spader ... Alan Shore (97 episodes, 2004-2008) \r\n\r\n\r\nWilliam Shatner ... Denny Crane (97 episodes, 2004-2008) \r\nCandice Bergen ... Shirley Schmidt (87 episodes, 2005-2008) \r\nMark Valley ... \r\n\r\nBrad Chase / ... (70 episodes, 2004-2007) \r\nRene Auberjonois ... Paul Lewiston / ... (70 episodes, 2004-2008) \r\nJulie Bowen ... Denise Bauer \r\n\r\n(53 episodes, 2005-2008) \r\nChristian Clemenson ... Jerry Espenson / ... (46 episodes, 2005-2008) \r\nGary Anthony Williams ... Clarence / ... \r\n\r\n(36 episodes, 2006-2008) \r\nJohn Larroquette ... Carl Sack (29 episodes, 2007-2008) \r\nTara Summers ... Katie Lloyd (29 episodes, 2007-2008) \r\r\n\r\n\nConstance Zimmer ... Claire Simms (23 episodes, 2006-2007) \r\nHenry Gibson ... Judge Clark Brown (23 episodes, 2004-2008) \r\nMonica Potter ... \r\n\r\n Lori Colson (21 episodes, 2004-2005) \r\nRhona Mitra ... Tara Wilson (20 episodes, 2004-2005) \r\nSaffron Burrows ... Lorraine Weller (20 \r\n\r\nepisodes, 2007-2008) \r\nMeredith Eaton ... Bethany Horowitz (18 episodes, 2006-2008) \r\nTaraji P. Henson ... Whitney Rome (17 episodes, 2007-\r\n\r\n2008) \r\nJustin Mentell ... Garrett Wells (16 episodes, 2005-2006) \r\nRyan Michelle Bathe ... Sara Holt (16 episodes, 2005-2006) \r\nBetty White \r\n\r\n... Catherine Piper (15 episodes, 2005-2008) \r\nCraig Bierko ... Jeffrey Coho (14 episodes, 2006-2007) \r\nLake Bell ... Sally Heep (14 \r\n\r\nepisodes, 2004-2006) \r\nJill Brennan ... Gracie Jane (14 episodes, 2005-2007) \r\nMarisa Coughlan ... Melissa Hughes (12 episodes, 2005-2006) \r\r\n\r\n\nShelley Berman ... Judge Robert Sanders (11 episodes, 2006-2008) \r\nMichael Ensign ... Judge Paul Resnick (10 episodes, 2004-2008) \r\nCurrie \r\n\r\nGraham ... A.D.A. Frank Ginsberg (9 episodes, 2005-2008) \r\nDavid Dean Bottrell ... Lincoln Meyer (8 episodes, 2006) \r\nAnthony Heald ... Judge \r\n\r\nHarvey Cooper (8 episodes, 2005-2008) \r\nRon Canada ... Judge Willard Reese (8 episodes, 2006-2008) \r\nTakayo Fischer ... Clerk / ... (8 \r\n\r\nepisodes, 2005-2007) \r\nArmin Shimerman ... Judge Brian Hooper (7 episodes, 2006) \r\nGail O\'Grady ... Judge Gloria Weldon (7 episodes, 2007) \r\n\r\n\r\nMark L. Taylor ... Attorney Adam Jovanka (7 episodes, 2006-2008) \r\nRoma Maffia ... Judge Victoria Peyton (7 episodes, 2007-2008) \r\nMichael \r\n\r\nJ. Fox ... Daniel Post (6 episodes, 2006) \r\nLeslie Jordan ... Bernard Ferrion (6 episodes, 2005) \r\nLou Beatty Jr. ... Judge Gordon Kolodny (6 \r\n\r\nepisodes, 2004-2008) \r\nLaura Henry ... Clerk / ... (6 episodes, 2004-2007) \r\nKonstantina Mallios ... Receptionist / ... (6 episodes, 2005-\r\n\r\n2006) \r\nKurt Scholler ... Bailiff (6 episodes, 2006-2007) \r\nAshton Holmes ... Scott Little (5 episodes, 2006) \r\nCurtis Armstrong ... Dr. \r\n\r\nZachary Simon (5 episodes, 2006) \r\nJoanna Cassidy ... Beverly Bridge (5 episodes, 2006) \r\nJohn Thaddeus ... Detective John Stephenson (5 \r\n\r\nepisodes, 2005-2006) \r\nDelta Burke ... Bella Horowitz (5 episodes, 2006-2007) \r\nKatey Sagal ... Barbara Little (5 episodes, 2006) \r\nJayne \r\n\r\nBrook ... Rachel Lewiston (5 episodes, 2006) \r\nTyler Labine ... A.D.A. Jonathan Winant / ... (5 episodes, 2006) \r\nFrancesca Roberts ... Judge \r\n\r\nJamie Atkinson (5 episodes, 2005-2008) \r\nKerry Washington ... Chelina Hall (5 episodes, 2005-2006) \r\nDon McManus ... A.D.A. John Lennox / ... \r\n\r\n(5 episodes, 2004-2008) \r\nWilliam Russ ... Attorney Christopher Palmer / ... (5 episodes, 2005-2008) \r\nChristopher Rich ... Attorney Melvin \r\n\r\nPalmer (5 episodes, 2005-2008) \r\nChuck McCann ... Judge Byron Fudd (5 episodes, 2007-2008) \r\nGlen Walker ... Anchorman / ... (5 episodes, \r\n\r\n2004-2007) \r\nRebecca Lin ... Receptionist (5 episodes, 2004-2006) \r\nZylan Brooks ... Clerk / ... (5 episodes, 2005-2006) \r\nPamela Adlon ... \r\n\r\nAttorney Emma Path / ... (5 episodes, 2007-2008) \r\nKaren Lew ... Clerk / ... (5 episodes, 2007-2008) \r\nTom Selleck ... Ivan Tiggs (4 episodes, \r\n\r\n2006) \r\nParker Posey ... Marlene Stanger / ... (4 episodes, 2006) \r\nAna Ortiz ... A.D.A. Holly Raines (4 episodes, 2006) \r\nVic Polizos ... \r\n\r\nDetective Frank Richmond (4 episodes, 2005-2006) \r\nMeredith Patterson ... Missy Tiggs / ... (4 episodes, 2006-2008) \r\nDebra Mooney ... Judge \r\n\r\nPatrice Webb (4 episodes, 2007-2008) \r\nErica Gimpel ... Attorney Samantha Fried (4 episodes, 2006-2007) \r\nJane Lynch ... Joanna Monroe (4 \r\n\r\nepisodes, 2006-2008) \r\nPatrick Renna ... Warren Peters / ... (4 episodes, 2005-2007) \r\nRichard Portnow ... Judge Peter Harding (4 episodes, \r\n\r\n2004-2006) \r\nEric Payne ... Sam Halpern / ... (4 episodes, 2004-2006) \r\nRichard V. Licata ... Judge Dale Melman (4 episodes, 2005-2006) \r\r\n\r\n\nMark Edward Smith ... Bailiff (4 episodes, 2005-2007) \r\nSteven Anderson ... Walter Seymore / ... (4 episodes, 2004-2008) \r\nLeyna Nguyen ... \r\n\r\nReporter / ... (4 episodes, 2005-2008) \r\nTed Garcia ... Reporter #1 / ... (4 episodes, 2006-2008) \r\nDeena Dill ... Female Server (4 episodes, \r\n\r\n2006) \r\nApril Rios ... Fiona (4 episodes, 2006) \r\nAshley Rios ... Fiona (4 episodes, 2006) \r\nNicole J. Butler ... Clerk / ... (4 episodes, \r\n\r\n2007-2008) \r\nMary Gross ... Leigh Swift (4 episodes, 2007-2008) \r\nNorma Jean Riddick ... Juror / ... (4 episodes, 2007-2008) \r\nJohn Robert \r\n\r\n... Attorney\'s client / ... (4 episodes, 2007) \r\nAndy Umberger ... Attorney Morrison (3 episodes, 2005-2006) \r\nHoward Hesseman ... Judge \r\n\r\nRobert Thompson (3 episodes, 2006-2007) \r\nNia Long ... Vanessa Walker (3 episodes, 2007) \r\nPatrick Breen ... A.D.A. Otto Beedle (3 episodes, \r\n\r\n2006-2007) \r\nShawn Christian ... Tim Bauer (3 episodes, 2005) \r\nKurt Fuller ... Reverend Donald Diddum (3 episodes, 2005) \r\nAdam Arkin ... \r\n\r\nA.D.A. Douglas Kupfer (3 episodes, 2006) \r\nRandy Thompson ... Officer Carl Ralston (3 episodes, 2006-2007) \r\nEthan Phillips ... Michael \r\n\r\nSchiller (3 episodes, 2006) \r\nEd Begley Jr. ... Clifford Cabot (3 episodes, 2006-2007) \r\nFreddie Prinze Jr. ... Donny Crane (3 episodes, 2004\r\n\r\n-2006) \r\nMissi Pyle ... Renee Winger (3 episodes, 2006-2008) \r\nMark Derwin ... Attorney Michael Eaves (3 episodes, 2005-2007) \r\nH. Richard \r\n\r\nGreene ... Judge Harry Hingham (3 episodes, 2004-2005) \r\nJason Blicker ... A.D.A. Duncan Jones / ... (3 episodes, 2005-2006) \r\nPat Skipper ... \r\n\r\n Attorney Michael Roker (3 episodes, 2005-2008) \r\nThom Gossom Jr. ... Judge Blake Winters (3 episodes, 2005-2006) \r\nLisa Kaminir ... D.A. \r\n\r\nValerie Murrow / ... (3 episodes, 2005) \r\nPatricia Belcher ... Judge Leslie Bishop (3 episodes, 2004-2007) \r\nLarry Miller ... Edwin Poole (3 \r\n\r\nepisodes, 2004-2006) \r\nNigel Gibbs ... Detective Wade Spindle / ... (3 episodes, 2004-2006) \r\nFrank Birney ... Judge William Howe (3 episodes, \r\n\r\n2004-2007) \r\nHildy Brooks ... Judge Nora Lang / ... (3 episodes, 2004-2007) \r\nMichael C. Alexander ... Officer Lawrence Michaels (3 episodes, \r\n\r\n2004-2006) \r\nMary Boucher ... Judge Rose Olsheim (3 episodes, 2004-2006) \r\nChristopher Carroll ... Judge Stephen Bickel / ... (3 episodes, \r\n\r\n2004-2006) \r\nJodi Lyn O\'Keefe ... Nora Jacobs (3 episodes, 2004-2005) \r\nJack Impellizzeri ... Officer Jones / ... (3 episodes, 2005-2007) \r\r\n\r\n\nMarcus Folmar ... Bailiff (3 episodes, 2006-2008) \r\nDavid Mehl ... Court Reporter / ... (3 episodes, 2006) \r\nPeter Onorati ... A.D.A. \r\n\r\nStewart Betts (3 episodes, 2007-2008) \r\nRosemary Garris ... Juror #1 / ... (3 episodes, 2007) \r\nCraig muMs Grant ... Joseph Washington (3 \r\n\r\nepisodes, 2007) \r\nBrett Hunt ... Reporter (3 episodes, 2008) \r\nRachelle Lefevre ... Dana Strickland (3 episodes, 2008) \r\nJeri Ryan ... \r\n\r\nCourtney Reese (2 episodes, 2006) \r\nKevin Dunn ... Attorney Jonathan Weiner (2 episodes, 2006-2007) \r\nTamara Feldman ... Cassie (2 episodes, \r\n\r\n2005) \r\nLaura Leighton ... Erica Dolenz (2 episodes, 2006) \r\nLisa Vidal ... Irma Levine (2 episodes, 2006) \r\nAllan Louis ... Ande Mkeba (2 \r\n\r\nepisodes, 2006) \r\nRupert Everett ... Malcolm Holmes (2 episodes, 2005) \r\nLindsay Frost ... Beth Guttman (2 episodes, 2006) \r\nZach Grenier \r\n\r\n... U.S. Attorney Chris Randolph / ... (2 episodes, 2005-2007) \r\nRichard Fancy ... Father Michael Ryan (2 episodes, 2005) \r\nHeather Locklear \r\n\r\n... Kelly Nolan (2 episodes, 2005) \r\nEmily Montague ... Hannah Guttman (2 episodes, 2006) \r\nDavid Burke ... D.A. Casey Mathias (2 episodes, \r\n\r\n2005-2006) \r\nCameron Daddo ... Sean Wilkes (2 episodes, 2006) \r\nRobin Riker ... Candi Springtime / ... (2 episodes, 2006) \r\nDianna Miranda \r\n\r\n... Helena Perez (2 episodes, 2005) \r\nBilly Mayo ... Detective Sean Wilkins (2 episodes, 2005-2007) \r\nMarc Vann ... D.A. Scott Berger / ... \r\n\r\n(2 episodes, 2005-2006) \r\nSteve Valentine ... Dan Rice (2 episodes, 2006) \r\nGregory Itzin ... A.D.A. Todd Milken (2 episodes, 2005) \r\nKelly \r\n\r\nConnell ... Attorney John Hoberg (2 episodes, 2006) \r\nRobert Wagner ... Barry Goal (2 episodes, 2006) \r\nJesse D. Goins ... Dr. Anyar Marks / \r\n\r\n... (2 episodes, 2005-2006) \r\nDavid Pearl ... Bailiff (2 episodes, 2007) \r\nEllen Crawford ... Frances Stadler (2 episodes, 2005) \r\nLoretta \r\n\r\nDevine ... Annabelle Carruthers / ... (2 episodes, 2006-2007) \r\nRay Abruzzo ... John Sciarra / ... (2 episodes, 2007-2008) \r\nAlly Walker ... \r\n\r\nAttorney Phoebe Prentice / ... (2 episodes, 2008) \r\nAnne Betancourt ... Judge Isabel Hernandez (2 episodes, 2004-2006) \r\nRobert Joy ... A.D.A. \r\n\r\nNicholas Preston / ... (2 episodes, 2004-2005) \r\nJim Jansen ... Marshall Kennedy (2 episodes, 2007-2008) \r\nLorna Raver ... Judge Katherine \r\n\r\nTaylor (2 episodes, 2004-2006) \r\nLawrence Pressman ... Judge Floyd Hurwitz (2 episodes, 2007-2008) \r\nChristine Tucci ... D.A. Mary Ann Huff (2 \r\n\r\nepisodes, 2004-2007) \r\nVictor McCay ... Dr. Malcolm Freemont (2 episodes, 2005-2007) \r\nJere Burns ... A.D.A. Joe Isaacs / ... (2 episodes, \r\n\r\n2006-2008) \r\nAllan Wasserman ... A.D.A. Oliver Goldberg / ... (2 episodes, 2004-2006) \r\nChristine Dunford ... Attorney Shelley Ford (2 \r\n\r\nepisodes, 2006-2007) \r\nJim Ortlieb ... Dr. George Murrow (2 episodes, 2006) \r\nMarshall Manesh ... George Keene (2 episodes, 2004-2006) \r\r\n\r\n\nMichael Kostroff ... Dr. David Cannon (2 episodes, 2005-2006) \r\nButch Hammett ... George Tanner (2 episodes, 2006) \r\nDennis Cockrum ... \r\n\r\nDetective Gary Jacobs / ... (2 episodes, 2004-2006) \r\nEllen Bry ... Attorney Shelby Morris (2 episodes, 2006) \r\nMichael Patrick McGill ... \r\n\r\nOfficer Brian Whistler (2 episodes, 2007) \r\nHelen Eigenberg ... Atty. Tompkins (2 episodes, 2004-2005) \r\nMarty Lodge ... Rick Guttman (2 \r\n\r\nepisodes, 2006) \r\nTed Lyde ... Foreman / ... (2 episodes, 2006) \r\nDavid Clennon ... Attorney Braxton Mason (2 episodes, 2004-2008) \r\nAaron \r\n\r\nLustig ... Dr. Herbert Waylon / ... (2 episodes, 2004-2008) \r\nPaul Schackman ... Attorney Pepper Minkin / ... (2 episodes, 2004-2008) \r\nJack \r\n\r\nShearer ... Justice Antonin Scalia / ... (2 episodes, 2004-2008) \r\nHeidi Heller ... Clerk (2 episodes, 2004-2007) \r\nThomas Knickerbocker ... \r\n\r\nDr. Mahoney / ... (2 episodes, 2004-2007) \r\nKarl T. Wright ... A.D.A. George Martin / ... (2 episodes, 2004-2007) \r\nBlair Bess ... Detective / \r\n\r\n... (2 episodes, 2004-2006) \r\nDamien Leake ... Referee / ... (2 episodes, 2004-2006) \r\nNina Avetisova ... Paralegal (2 episodes, 2004-2005) \r\n\r\n\r\nDerrick McMillon ... Security Guard (2 episodes, 2004-2005) \r\nDavid Starzyk ... Attorney Daniel Gellman / ... (2 episodes, 2004-2005) \r\r\n\r\n\nNicole Bilderback ... Crane\'s Secretary / ... (2 episodes, 2004) \r\nAnita Finlay ... Helen Poole (2 episodes, 2004) \r\nJohn Michael Higgins \r\n\r\n... Jerry Austin (2 episodes, 2004) \r\nAnthony S. Johnson ... Judge / ... (2 episodes, 2004) \r\nThomas Kopache ... Judge Dale Wallace / ... (2 \r\n\r\nepisodes, 2004) \r\nElizabeth Mitchell ... Christine Pauley (2 episodes, 2004) \r\nAl Sharpton ... Himself (2 episodes, 2004) \r\nJ.J. Boone ... \r\n\r\nJacqueline Ross / ... (2 episodes, 2005-2008) \r\nRon Ostrow ... Atty. Everett Cone (2 episodes, 2005-2007) \r\nBarry Sigismondi ... Lieutenant \r\n\r\nJames (2 episodes, 2005-2007) \r\nBrad Wilson ... Clerk #1 / ... (2 episodes, 2005-2007) \r\nMichael Wiseman ... D.A. Bret Haber (2 episodes, \r\n\r\n2005-2007) \r\nJason Brooks ... Justin Murray (2 episodes, 2005) \r\nRhomeyn Johnson ... Detective Willet (2 episodes, 2005) \r\nDiane Kim ... \r\n\r\nMarcia Allen / ... (2 episodes, 2005) \r\nAramis Knight ... Tito Perez (2 episodes, 2005) \r\nRay Laska ... Judge James Billmeyer (2 episodes, \r\n\r\n2005) \r\nPhillip Palmer ... Anchor / ... (2 episodes, 2005) \r\nBob Rumnock ... Foreman / ... (2 episodes, 2005) \r\nDavid Saxa ... Dewey (2 \r\n\r\nepisodes, 2005) \r\nTim McFadyen ... Clerk / ... (2 episodes, 2006-2008) \r\nMichael Ray Reed ... Juror / ... (2 episodes, 2006-2007) \r\nMichelle \r\n\r\nRusso ... Beautiful lady / ... (2 episodes, 2006-2007) \r\nSean Blodgett ... Reporter #1 (2 episodes, 2006) \r\nPeter Breitmayer ... Joel Landson \r\n\r\n(2 episodes, 2006) \r\nJim Dalton ... George Gering / ... (2 episodes, 2006) \r\nKathleen Davis ... Wedding Guest (2 episodes, 2006) \r\nKevin \r\n\r\nIsola ... Michael Reisz / ... (2 episodes, 2006) \r\nMarco Martinez ... Foreman (2 episodes, 2006) \r\nCraig Barnett ... M.E. Simmons / ... (2 \r\n\r\nepisodes, 2007-2008) \r\nNora Dunn ... Attorney Cynthia Rhodes (2 episodes, 2007-2008) \r\nJenifer Lewis ... Judge Isabel Fisher (2 episodes, \r\n\r\n2007-2008) \r\nMichael Loeffelholz ... Reverend Kurt Joyner (2 episodes, 2007-2008) \r\nAllison Miller ... Marlena Hoffman (2 episodes, 2007-2008) \r\n\r\n\r\nMark Moses ... A.D.A. George McDougal / ... (2 episodes, 2007-2008) \r\nChristie Lynn Smith ... Maureen Janely (2 episodes, 2007-2008) \r\r\n\r\n\nObba Babatundé ... Dr. Stanley Rivers / ... (2 episodes, 2007) \r\nMary Elizabeth Barrett ... Clerk / ... (2 episodes, 2007) \r\nC. Stephen \r\n\r\nBrowder ... Bailiff (2 episodes, 2007) \r\nRob Brownstein ... Dr. Timothy Wood (2 episodes, 2007) \r\nYvette Nicole Brown ... Doris Thumper (2 \r\n\r\nepisodes, 2007) \r\nLauri Johnson ... Sister Catherine (2 episodes, 2007) \r\nKhali Macintyre ... Nancy Wilding (2 episodes, 2007) \r\nRolando \r\n\r\nMolina ... Miguel Obisbo (2 episodes, 2007) \r\nMare Winningham ... Patrice Kelly (2 episodes, 2007) \r\nAlison La Placa ... Andrea Michele (2 \r\n\r\nepisodes, 2008) \r\nAnnie Potts ... Joy Espenson (2 episodes, 2008) \r\nJames Rebhorn ... Attorney Wade Mathis / ... (2 episodes, 2008) \r\nRenee \r\n\r\nTaglia ... Attorney (2 episodes, 2008) \r\nNed Vaughn ... Joel Beavis / ... (2 episodes, 2008) \r\n\r\n2. Series Writing credits \r\nDavid E. \r\n\r\nKelley (97 episodes, 2004-2008) \r\nLawrence Broch (16 episodes, 2005-2008) \r\nJanet Leahy (11 episodes, 2005-2007) \r\nMichael Reisz (10 \r\n\r\nepisodes, 2005-2007) \r\nSanford Golden (10 episodes, 2006-2008) \r\nKaren Wyscarver (10 episodes, 2006-2008) \r\nPhoef Sutton (9 episodes, \r\n\r\n2005-2007) \r\nSusan Dickes (9 episodes, 2006-2008) \r\nAndrew Kreisberg (8 episodes, 2005-2007) \r\nCorinne Brinkerhoff (8 episodes, 2006-\r\n\r\n2008) \r\nJonathan Shapiro (7 episodes, 2004-2008) \r\nCraig Turk (4 episodes, 2007-2008) \r\nJill Goldsmith (4 episodes, 2008) \r\nScott \r\n\r\nKaufer (2 episodes, 2004) \r\nPeter Ocko (2 episodes, 2004) \r\nJeff Rake (2 episodes, 2004) \r\n\r\n3. Series Original Music by \r\nDanny Lux \r\n\r\n (26 episodes, 2004-2008)',0,'25',2,'2008-11-22 12:55:24',700,1,'Mike Listo (and others)','David E. Kelley (and others)','Danny Lux','PAL \r\n\r\n- Anamorphic Widescreen (1,78:1)','Audio: German (DD 2.0), English (DD 2.0) - Subtitles: German, English'); /*!40000 ALTER TABLE `movie` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `region` -- DROP TABLE IF EXISTS `region`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `region` ( `code` char(2) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', KEY `code` (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `region` -- LOCK TABLES `region` WRITE; /*!40000 ALTER TABLE `region` DISABLE KEYS */; INSERT INTO `region` VALUES ('VB','Vorarlberg'), ('T','Tirol'), ('S','Salzburg'), ('OÖ','Oberösterreich'), ('NÖ','Niederösterreich'), ('BL','Burgenland'), ('K','Kärnten'), ('ST','Steiermark'), ('W','Wien'); /*!40000 ALTER TABLE `region` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `email` varchar(255) NOT NULL DEFAULT '', `password` varchar(32) NOT NULL DEFAULT '', `fname` varchar(255) NOT NULL DEFAULT '', `lname` varchar(255) NOT NULL DEFAULT '', `city` varchar(255) NOT NULL DEFAULT '', `regioncode` char(2) NOT NULL DEFAULT '', `countrycode` char(2) NOT NULL DEFAULT '', `enabled` tinyint(1) NOT NULL DEFAULT 0, `admin` tinyint(1) NOT NULL DEFAULT 0, `lastvisit` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lastcheck` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user` -- LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; INSERT INTO `user` VALUES (1,'mam@heimam.at','5a9361b28ee51795f1e82d9054919034','Markus','Mascelli','Wien','W','AT',1,1,'2025-10-18 14:09:05','2008-10-04 20:23:49'), (2,'rossama@yahoo.com','fb26dff8e956559ffe58cfd6a9103a00','Martha','Rossa','Wien','W','AT',1,0,'2008-10-04 20:24:16','2008-10-04 20:24:16'), (3,'angelika.unterholzner@gmx.at','e2140d8326c048036b7baffcef7d4827','Angelika','Unterholzner','Wien','W','AT',1,0,'2008-12-03 02:02:35','2005-05-11 13:43:12'), (4,'dailylama23@yahoo.de','44c9f7f6e218c86101fac88274d44c15','Claudio','Ruggieri','Salzburg','S','AT',1,0,'2004-10-22 16:57:23','0000-00-00 00:00:00'), (5,'guenther.schmidt@gmail.com','78918cecf8926d0cada4c5bc31af87a3','Günther','Schmidt','Wien','W','AT',1,0,'2006-11-01 07:21:25','0000-00-00 00:00:00'), (6,'christian.zeichmann@inode.at','f4ca04c03b59ca8cdddc7adc0e17bf70','Christian','Zeichmann','Wien','W','AT',1,0,'2005-02-01 13:43:42','2005-02-01 12:35:59'), (8,'christian.elmer@gmx.at','8488d8d38289f98b4e6e9bdc6727299c','Christian','Elmer','Wien','W','AT',1,0,'2005-05-03 22:42:26','2005-05-03 20:35:45'), (9,'rot.schopf@hotmail.com','d2e634849dbb46c82eab070e8079cc7b','Zlata','Vopatova','Wien','W','AT',1,0,'2007-01-09 14:24:02','2007-01-06 10:19:22'), (11,'joh.mar@gmx.net','10d011cc1d5d9efa0fe485e6c32d2ac1','haemma','haemma','Wien','W','AT',1,0,'2009-07-06 21:55:41','2009-07-06 14:07:18'), (12,'alexander.fabozzi@atosorigin.com','71a6723b9c92809fd9b5eee1b4323239','Alexander','Fabozzi','Wien','W','AT',1,0,'2010-06-14 12:56:46','2010-06-14 12:52:19'), (13,'cornelia.gass@kapsch.net','eebeb5de3f5c39a6d06eabd0fde35c17','Cornelia','Gass','Wien','W','AT',1,0,'2016-03-23 08:24:38','2014-09-20 08:29:17'); /*!40000 ALTER TABLE `user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userprefs` -- DROP TABLE IF EXISTS `userprefs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userprefs` ( `userid` int(11) NOT NULL DEFAULT 0, `item` varchar(255) NOT NULL DEFAULT '', `value` varchar(255) NOT NULL DEFAULT '', KEY `userid` (`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userprefs` -- LOCK TABLES `userprefs` WRITE; /*!40000 ALTER TABLE `userprefs` DISABLE KEYS */; INSERT INTO `userprefs` VALUES (2,'movienav','3'), (2,'theme','indusiv'), (2,'defregion','2'), (2,'defmedia','1'), (2,'movcolumns','2047'), (1,'movienav','3'), (1,'theme','indusiv'), (1,'defregion','2'), (1,'defmedia','1'), (1,'movcolumns','2047'), (4,'movienav','3'), (4,'theme','indusiv'), (4,'defregion','2'), (4,'defmedia','1'), (4,'movcolumns','2047'), (5,'movienav','3'), (5,'theme','indusiv'), (5,'defregion','2'), (5,'defmedia','1'), (5,'movcolumns','2047'); /*!40000 ALTER TABLE `userprefs` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `extcalendar_mamcal` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `extcalendar_mamcal` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */; USE `extcalendar_mamcal`; -- -- Table structure for table `mamcal_categories` -- DROP TABLE IF EXISTS `mamcal_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_categories` ( `cat_id` int(11) NOT NULL AUTO_INCREMENT, `cat_parent` int(11) NOT NULL DEFAULT 0, `cat_name` varchar(150) NOT NULL DEFAULT '', `description` text NOT NULL, `color` varchar(10) DEFAULT '#000000', `bgcolor` varchar(10) DEFAULT '#EEF0F0', `options` tinyint(4) DEFAULT 0, `enabled` tinyint(4) DEFAULT 0, PRIMARY KEY (`cat_id`), UNIQUE KEY `cat_id` (`cat_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Table for event categories'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_categories` -- LOCK TABLES `mamcal_categories` WRITE; /*!40000 ALTER TABLE `mamcal_categories` DISABLE KEYS */; INSERT INTO `mamcal_categories` VALUES (1,0,'General','This is the default category','#000000','#EEF0F0',0,1); /*!40000 ALTER TABLE `mamcal_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamcal_config` -- DROP TABLE IF EXISTS `mamcal_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_config` ( `name` varchar(40) NOT NULL DEFAULT '', `value` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Table for configurable parameters'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_config` -- LOCK TABLES `mamcal_config` WRITE; /*!40000 ALTER TABLE `mamcal_config` DISABLE KEYS */; INSERT INTO `mamcal_config` VALUES ('allowed_file_extensions','GIF/PNG/JPG/JPEG'), ('max_upl_size','20000'), ('cookie_name','ext20'), ('cookie_path','/'), ('debug_mode','0'), ('events_per_page','10'), ('calendar_name','mamCAL'), ('calendar_admin_email','mam@heimam.at'), ('calendar_description','mam\'s online calendar'), ('lang','english'), ('charset','language-file'), ('main_table_width','650'), ('max_tabs','12'), ('theme','default'), ('time_format_24hours','1'), ('auto_daylight_saving','1'), ('default_view','2'), ('popup_event_mode','0'), ('popup_event_width','550'), ('popup_event_height','300'), ('add_event_view','1'), ('cats_view','1'), ('daily_view','1'), ('weekly_view','1'), ('monthly_view','1'), ('flyer_view','1'), ('search_view','1'), ('day_start','1'), ('archive','1'), ('flyer_show_picture','1'), ('addevent_allow_html','0'), ('addevent_allow_contact','1'), ('addevent_allow_email','1'), ('addevent_allow_url','1'), ('addevent_allow_picture','1'), ('new_post_notification','1'), ('cal_view_max_chars','100'), ('flyer_view_max_chars','100'), ('weekly_view_max_chars','100'), ('daily_view_max_chars','100'), ('cats_view_max_chars','100'), ('mini_cal_def_picture','def_pic.gif'), ('mini_cal_diplay_options','default'), ('release_name','2.0 Beta 2'), ('release_version','200.26'), ('release_type','beta'), ('sort_order','ta'), ('picture_chmod','0644'), ('max_upl_dim','450'), ('allow_user_registration','1'), ('reg_email_verify','1'), ('reg_duplicate_emails','0'), ('calendar_status','1'), ('show_recurrent_events','1'), ('multi_day_events','all'), ('cal_view_show_week','1'), ('mail_method','mail'), ('mail_smtp_host','mgate.telekabel.at'), ('mail_smtp_auth','0'), ('mail_smtp_username',''), ('mail_smtp_password',''), ('legend_cat_columns','4'), ('timezone','1'); /*!40000 ALTER TABLE `mamcal_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamcal_events` -- DROP TABLE IF EXISTS `mamcal_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_events` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL DEFAULT '', `description` text NOT NULL, `contact` text NOT NULL, `url` varchar(100) NOT NULL DEFAULT '', `email` varchar(120) NOT NULL DEFAULT '', `picture` varchar(100) NOT NULL DEFAULT '', `cat` tinyint(2) NOT NULL DEFAULT 0, `day` tinyint(2) NOT NULL DEFAULT 0, `month` smallint(2) NOT NULL DEFAULT 0, `year` smallint(4) NOT NULL DEFAULT 0, `approved` tinyint(1) NOT NULL DEFAULT 0, `start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `end_date` datetime DEFAULT '0000-00-00 00:00:00', `recur_type` varchar(16) DEFAULT NULL, `recur_val` tinyint(4) DEFAULT 0, `recur_end_type` tinyint(1) unsigned NOT NULL DEFAULT 0, `recur_count` tinyint(3) unsigned NOT NULL DEFAULT 0, `recur_until` date DEFAULT '0000-00-00', PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), KEY `start_date` (`start_date`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Table holding events and their attributes'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_events` -- LOCK TABLES `mamcal_events` WRITE; /*!40000 ALTER TABLE `mamcal_events` DISABLE KEYS */; INSERT INTO `mamcal_events` VALUES (1,'ExtCalendar Installed','Congratulations! ExtCalendar is installed and ready to kick !','','','','',1,5,6,2006,1,'2006-06-05 18:13:13','2006-06-05 18:13:13',NULL,0,0,0,'0000-00-00'); /*!40000 ALTER TABLE `mamcal_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamcal_groups` -- DROP TABLE IF EXISTS `mamcal_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_groups` ( `group_id` int(11) NOT NULL AUTO_INCREMENT, `group_name` varchar(255) NOT NULL DEFAULT '', `description` varchar(255) NOT NULL DEFAULT '', `has_admin_access` tinyint(1) NOT NULL DEFAULT 0, `can_manage_accounts` tinyint(1) NOT NULL DEFAULT 0, `can_change_settings` tinyint(1) NOT NULL DEFAULT 0, `can_manage_cats` tinyint(1) NOT NULL DEFAULT 0, `upl_need_approval` tinyint(1) NOT NULL DEFAULT 1, `locked` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`group_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Table holding user groups'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_groups` -- LOCK TABLES `mamcal_groups` WRITE; /*!40000 ALTER TABLE `mamcal_groups` DISABLE KEYS */; INSERT INTO `mamcal_groups` VALUES (1,'Administrators','Members of this group have the absolute power.',1,1,1,1,0,1), (2,'Moderators','Moderators can manage content of the calendar',1,0,0,1,0,0), (3,'Anonymous','Group of anonymous users',0,0,0,0,1,1), (4,'Banned','The damned group.',0,0,0,0,1,1); /*!40000 ALTER TABLE `mamcal_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamcal_plugins` -- DROP TABLE IF EXISTS `mamcal_plugins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_plugins` ( `plugin_id` int(11) NOT NULL AUTO_INCREMENT, `plugin_name` varchar(64) NOT NULL DEFAULT '', `plugin_priority` tinyint(2) unsigned NOT NULL DEFAULT 50, `plugin_path` varchar(255) DEFAULT NULL, PRIMARY KEY (`plugin_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Table holding installed plugins'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_plugins` -- LOCK TABLES `mamcal_plugins` WRITE; /*!40000 ALTER TABLE `mamcal_plugins` DISABLE KEYS */; /*!40000 ALTER TABLE `mamcal_plugins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamcal_templates` -- DROP TABLE IF EXISTS `mamcal_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_templates` ( `template_id` int(11) NOT NULL AUTO_INCREMENT, `template_type` varchar(16) NOT NULL DEFAULT '', `template_description` varchar(255) DEFAULT NULL, `template_status` tinyint(1) NOT NULL DEFAULT 0, `template_value` text DEFAULT NULL, `last_access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`template_id`), UNIQUE KEY `template_type` (`template_type`), KEY `template_status` (`template_status`), FULLTEXT KEY `template_value` (`template_value`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Table for custom interface template'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_templates` -- LOCK TABLES `mamcal_templates` WRITE; /*!40000 ALTER TABLE `mamcal_templates` DISABLE KEYS */; INSERT INTO `mamcal_templates` VALUES (1,'header','Custom header structure to display on top',0,'\r\n
\r\n
{CAL_NAME}
\r\n
{CAL_DESCRIPTION}
\r\n
\r\n {ADMIN_MENU}\r\n
\r\n {MAIN_MENU} \r\n
\r\n
\r\r\n\r\n\n','2006-06-05 20:13:13'), (2,'footer','Custom footer structure to display at the bottom',0,'
\r\n
\r\n','2006-06-05 20:13:13'), (3,'meta','Space to hold meta tags and other browser related information',1,'','2006-06-05 20:13:13'); /*!40000 ALTER TABLE `mamcal_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamcal_users` -- DROP TABLE IF EXISTS `mamcal_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_users` ( `user_id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(30) NOT NULL DEFAULT '', `password` varchar(64) NOT NULL DEFAULT '', `firstname` varchar(64) DEFAULT '', `lastname` varchar(64) DEFAULT '', `group_id` int(11) NOT NULL DEFAULT 2, `lastvisit` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `email` varchar(255) NOT NULL DEFAULT '', `user_regdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_lang` varchar(255) NOT NULL DEFAULT '', `user_website` varchar(255) NOT NULL DEFAULT '', `user_location` varchar(255) NOT NULL DEFAULT '', `user_occupation` varchar(255) NOT NULL DEFAULT '', `reg_key` varchar(64) DEFAULT NULL, `user_status` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`user_id`), UNIQUE KEY `username` (`username`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Table for calendar users'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_users` -- LOCK TABLES `mamcal_users` WRITE; /*!40000 ALTER TABLE `mamcal_users` DISABLE KEYS */; INSERT INTO `mamcal_users` VALUES (1,'admin','5a9361b28ee51795f1e82d9054919034','Mr.','Administrator',1,'2006-10-26 23:47:48','mam@heimam.at','2006-06-05 20:13:13','','','','',NULL,1); /*!40000 ALTER TABLE `mamcal_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `horde` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `horde` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */; USE `horde`; -- -- Table structure for table `content_schema_info` -- DROP TABLE IF EXISTS `content_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `content_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `content_schema_info` -- LOCK TABLES `content_schema_info` WRITE; /*!40000 ALTER TABLE `content_schema_info` DISABLE KEYS */; INSERT INTO `content_schema_info` VALUES (2); /*!40000 ALTER TABLE `content_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_activesync_cache` -- DROP TABLE IF EXISTS `horde_activesync_cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_activesync_cache` ( `cache_devid` varchar(255) DEFAULT NULL, `cache_user` varchar(255) DEFAULT NULL, `cache_data` mediumtext DEFAULT NULL, KEY `index_horde_activesync_cache_on_cache_devid` (`cache_devid`), KEY `index_horde_activesync_cache_on_cache_user` (`cache_user`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_activesync_cache` -- LOCK TABLES `horde_activesync_cache` WRITE; /*!40000 ALTER TABLE `horde_activesync_cache` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_activesync_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_activesync_device` -- DROP TABLE IF EXISTS `horde_activesync_device`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_activesync_device` ( `device_id` varchar(255) NOT NULL, `device_type` varchar(255) NOT NULL, `device_agent` varchar(255) NOT NULL, `device_supported` text DEFAULT NULL, `device_rwstatus` int(11) DEFAULT NULL, `device_properties` text DEFAULT NULL, PRIMARY KEY (`device_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_activesync_device` -- LOCK TABLES `horde_activesync_device` WRITE; /*!40000 ALTER TABLE `horde_activesync_device` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_activesync_device` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_activesync_device_users` -- DROP TABLE IF EXISTS `horde_activesync_device_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_activesync_device_users` ( `device_id` varchar(255) NOT NULL, `device_user` varchar(255) NOT NULL, `device_policykey` bigint(20) DEFAULT 0, KEY `index_horde_activesync_device_users_on_device_user` (`device_user`), KEY `index_horde_activesync_device_users_on_device_id` (`device_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_activesync_device_users` -- LOCK TABLES `horde_activesync_device_users` WRITE; /*!40000 ALTER TABLE `horde_activesync_device_users` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_activesync_device_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_activesync_mailmap` -- DROP TABLE IF EXISTS `horde_activesync_mailmap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_activesync_mailmap` ( `message_uid` int(11) NOT NULL DEFAULT 0, `sync_key` varchar(255) NOT NULL, `sync_devid` varchar(255) NOT NULL, `sync_folderid` varchar(255) NOT NULL, `sync_user` varchar(255) DEFAULT NULL, `sync_read` tinyint(1) DEFAULT NULL, `sync_deleted` tinyint(1) DEFAULT NULL, `sync_flagged` tinyint(1) DEFAULT NULL, `sync_changed` tinyint(1) DEFAULT NULL, `sync_category` varchar(255) DEFAULT NULL, KEY `index_horde_activesync_mailmap_on_message_uid` (`message_uid`), KEY `index_horde_activesync_mailmap_on_sync_devid` (`sync_devid`), KEY `index_horde_activesync_mailmap_on_sync_folderid` (`sync_folderid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_activesync_mailmap` -- LOCK TABLES `horde_activesync_mailmap` WRITE; /*!40000 ALTER TABLE `horde_activesync_mailmap` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_activesync_mailmap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_activesync_map` -- DROP TABLE IF EXISTS `horde_activesync_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_activesync_map` ( `message_uid` varchar(255) NOT NULL, `sync_modtime` int(11) DEFAULT NULL, `sync_key` varchar(255) NOT NULL, `sync_devid` varchar(255) NOT NULL, `sync_folderid` varchar(255) NOT NULL, `sync_user` varchar(255) DEFAULT NULL, `sync_clientid` varchar(255) DEFAULT NULL, `sync_deleted` tinyint(1) DEFAULT NULL, KEY `index_horde_activesync_map_on_sync_devid` (`sync_devid`), KEY `index_horde_activesync_map_on_message_uid` (`message_uid`), KEY `index_horde_activesync_map_on_sync_user` (`sync_user`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_activesync_map` -- LOCK TABLES `horde_activesync_map` WRITE; /*!40000 ALTER TABLE `horde_activesync_map` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_activesync_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_activesync_schema_info` -- DROP TABLE IF EXISTS `horde_activesync_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_activesync_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_activesync_schema_info` -- LOCK TABLES `horde_activesync_schema_info` WRITE; /*!40000 ALTER TABLE `horde_activesync_schema_info` DISABLE KEYS */; INSERT INTO `horde_activesync_schema_info` VALUES (22); /*!40000 ALTER TABLE `horde_activesync_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_activesync_state` -- DROP TABLE IF EXISTS `horde_activesync_state`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_activesync_state` ( `sync_mod` int(11) DEFAULT NULL, `sync_key` varchar(255) NOT NULL, `sync_data` longblob DEFAULT NULL, `sync_devid` varchar(255) DEFAULT NULL, `sync_folderid` varchar(255) DEFAULT NULL, `sync_user` varchar(255) DEFAULT NULL, `sync_pending` mediumtext DEFAULT NULL, `sync_timestamp` int(11) DEFAULT NULL, PRIMARY KEY (`sync_key`), KEY `index_horde_activesync_state_on_sync_folderid` (`sync_folderid`), KEY `index_horde_activesync_state_on_sync_devid` (`sync_devid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_activesync_state` -- LOCK TABLES `horde_activesync_state` WRITE; /*!40000 ALTER TABLE `horde_activesync_state` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_activesync_state` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_alarm_schema_info` -- DROP TABLE IF EXISTS `horde_alarm_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_alarm_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_alarm_schema_info` -- LOCK TABLES `horde_alarm_schema_info` WRITE; /*!40000 ALTER TABLE `horde_alarm_schema_info` DISABLE KEYS */; INSERT INTO `horde_alarm_schema_info` VALUES (2); /*!40000 ALTER TABLE `horde_alarm_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_alarms` -- DROP TABLE IF EXISTS `horde_alarms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_alarms` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `alarm_id` varchar(255) NOT NULL, `alarm_uid` varchar(255) DEFAULT NULL, `alarm_start` datetime NOT NULL, `alarm_end` datetime DEFAULT NULL, `alarm_methods` varchar(255) DEFAULT NULL, `alarm_params` text DEFAULT NULL, `alarm_title` varchar(255) NOT NULL, `alarm_text` text DEFAULT NULL, `alarm_snooze` datetime DEFAULT NULL, `alarm_dismissed` int(1) NOT NULL DEFAULT 0, `alarm_internal` text DEFAULT NULL, `alarm_instanceid` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `index_horde_alarms_on_alarm_id` (`alarm_id`), KEY `index_horde_alarms_on_alarm_uid` (`alarm_uid`), KEY `index_horde_alarms_on_alarm_start` (`alarm_start`), KEY `index_horde_alarms_on_alarm_end` (`alarm_end`), KEY `index_horde_alarms_on_alarm_snooze` (`alarm_snooze`), KEY `index_horde_alarms_on_alarm_dismissed` (`alarm_dismissed`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_alarms` -- LOCK TABLES `horde_alarms` WRITE; /*!40000 ALTER TABLE `horde_alarms` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_alarms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_auth_schema_info` -- DROP TABLE IF EXISTS `horde_auth_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_auth_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_auth_schema_info` -- LOCK TABLES `horde_auth_schema_info` WRITE; /*!40000 ALTER TABLE `horde_auth_schema_info` DISABLE KEYS */; INSERT INTO `horde_auth_schema_info` VALUES (1); /*!40000 ALTER TABLE `horde_auth_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_cache` -- DROP TABLE IF EXISTS `horde_cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_cache` ( `cache_id` varchar(32) NOT NULL, `cache_timestamp` bigint(20) NOT NULL, `cache_expiration` bigint(20) NOT NULL, `cache_data` longblob DEFAULT NULL, PRIMARY KEY (`cache_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_cache` -- LOCK TABLES `horde_cache` WRITE; /*!40000 ALTER TABLE `horde_cache` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_cache_schema_info` -- DROP TABLE IF EXISTS `horde_cache_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_cache_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_cache_schema_info` -- LOCK TABLES `horde_cache_schema_info` WRITE; /*!40000 ALTER TABLE `horde_cache_schema_info` DISABLE KEYS */; INSERT INTO `horde_cache_schema_info` VALUES (2); /*!40000 ALTER TABLE `horde_cache_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_core_schema_info` -- DROP TABLE IF EXISTS `horde_core_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_core_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_core_schema_info` -- LOCK TABLES `horde_core_schema_info` WRITE; /*!40000 ALTER TABLE `horde_core_schema_info` DISABLE KEYS */; INSERT INTO `horde_core_schema_info` VALUES (1); /*!40000 ALTER TABLE `horde_core_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_dav_collections` -- DROP TABLE IF EXISTS `horde_dav_collections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_dav_collections` ( `id_interface` varchar(255) NOT NULL, `id_internal` varchar(255) NOT NULL, `id_external` varchar(255) NOT NULL, UNIQUE KEY `index_horde_dav_collections_on_id_external` (`id_external`), KEY `index_horde_dav_collections_on_id_interface` (`id_interface`), KEY `index_horde_dav_collections_on_id_internal` (`id_internal`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_dav_collections` -- LOCK TABLES `horde_dav_collections` WRITE; /*!40000 ALTER TABLE `horde_dav_collections` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_dav_collections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_dav_objects` -- DROP TABLE IF EXISTS `horde_dav_objects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_dav_objects` ( `id_collection` varchar(255) NOT NULL, `id_internal` varchar(255) NOT NULL, `id_external` varchar(255) NOT NULL, UNIQUE KEY `index_horde_dav_objects_on_id_internal` (`id_internal`), UNIQUE KEY `index_horde_dav_objects_on_id_external_and_id_collection` (`id_external`,`id_collection`), KEY `index_horde_dav_objects_on_id_collection` (`id_collection`), KEY `index_horde_dav_objects_on_id_external` (`id_external`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_dav_objects` -- LOCK TABLES `horde_dav_objects` WRITE; /*!40000 ALTER TABLE `horde_dav_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_dav_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_dav_schema_info` -- DROP TABLE IF EXISTS `horde_dav_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_dav_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_dav_schema_info` -- LOCK TABLES `horde_dav_schema_info` WRITE; /*!40000 ALTER TABLE `horde_dav_schema_info` DISABLE KEYS */; INSERT INTO `horde_dav_schema_info` VALUES (2); /*!40000 ALTER TABLE `horde_dav_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_group_schema_info` -- DROP TABLE IF EXISTS `horde_group_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_group_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_group_schema_info` -- LOCK TABLES `horde_group_schema_info` WRITE; /*!40000 ALTER TABLE `horde_group_schema_info` DISABLE KEYS */; INSERT INTO `horde_group_schema_info` VALUES (3); /*!40000 ALTER TABLE `horde_group_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_groups` -- DROP TABLE IF EXISTS `horde_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_groups` ( `group_uid` int(10) unsigned NOT NULL AUTO_INCREMENT, `group_name` varchar(255) NOT NULL, `group_parents` varchar(255) DEFAULT NULL, `group_email` varchar(255) DEFAULT NULL, PRIMARY KEY (`group_uid`), UNIQUE KEY `index_horde_groups_on_group_name` (`group_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_groups` -- LOCK TABLES `horde_groups` WRITE; /*!40000 ALTER TABLE `horde_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_groups_members` -- DROP TABLE IF EXISTS `horde_groups_members`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_groups_members` ( `group_uid` int(10) unsigned NOT NULL, `user_uid` varchar(255) NOT NULL, KEY `index_horde_groups_members_on_group_uid` (`group_uid`), KEY `index_horde_groups_members_on_user_uid` (`user_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_groups_members` -- LOCK TABLES `horde_groups_members` WRITE; /*!40000 ALTER TABLE `horde_groups_members` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_groups_members` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_histories` -- DROP TABLE IF EXISTS `horde_histories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_histories` ( `history_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `object_uid` varchar(255) NOT NULL, `history_action` varchar(32) NOT NULL, `history_ts` bigint(20) NOT NULL, `history_desc` text DEFAULT NULL, `history_who` varchar(255) DEFAULT NULL, `history_extra` text DEFAULT NULL, `history_modseq` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`history_id`), KEY `index_horde_histories_on_history_action` (`history_action`), KEY `index_horde_histories_on_history_ts` (`history_ts`), KEY `index_horde_histories_on_history_modseq` (`history_modseq`), KEY `index_horde_histories_on_object_uid` (`object_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_histories` -- LOCK TABLES `horde_histories` WRITE; /*!40000 ALTER TABLE `horde_histories` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_histories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_histories_modseq` -- DROP TABLE IF EXISTS `horde_histories_modseq`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_histories_modseq` ( `history_modseq` int(10) unsigned NOT NULL AUTO_INCREMENT, `history_modseqempty` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`history_modseq`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_histories_modseq` -- LOCK TABLES `horde_histories_modseq` WRITE; /*!40000 ALTER TABLE `horde_histories_modseq` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_histories_modseq` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_history_schema_info` -- DROP TABLE IF EXISTS `horde_history_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_history_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_history_schema_info` -- LOCK TABLES `horde_history_schema_info` WRITE; /*!40000 ALTER TABLE `horde_history_schema_info` DISABLE KEYS */; INSERT INTO `horde_history_schema_info` VALUES (6); /*!40000 ALTER TABLE `horde_history_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_imap_client_data` -- DROP TABLE IF EXISTS `horde_imap_client_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_imap_client_data` ( `messageid` int(10) unsigned NOT NULL AUTO_INCREMENT, `hostspec` varchar(255) NOT NULL, `mailbox` varchar(255) NOT NULL, `modified` bigint(20) DEFAULT NULL, `port` int(11) NOT NULL, `username` varchar(255) NOT NULL, PRIMARY KEY (`messageid`), KEY `index_horde_imap_client_data_on_hostspec_and_mailbox_and_port_an` (`hostspec`,`mailbox`,`port`,`username`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_imap_client_data` -- LOCK TABLES `horde_imap_client_data` WRITE; /*!40000 ALTER TABLE `horde_imap_client_data` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_imap_client_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_imap_client_message` -- DROP TABLE IF EXISTS `horde_imap_client_message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_imap_client_message` ( `data` longblob DEFAULT NULL, `msguid` varchar(255) NOT NULL, `messageid` bigint(20) NOT NULL, KEY `index_horde_imap_client_message_on_msguid_and_messageid` (`msguid`,`messageid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_imap_client_message` -- LOCK TABLES `horde_imap_client_message` WRITE; /*!40000 ALTER TABLE `horde_imap_client_message` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_imap_client_message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_imap_client_metadata` -- DROP TABLE IF EXISTS `horde_imap_client_metadata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_imap_client_metadata` ( `data` longblob DEFAULT NULL, `field` varchar(255) NOT NULL, `messageid` bigint(20) NOT NULL, KEY `index_horde_imap_client_metadata_on_messageid` (`messageid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_imap_client_metadata` -- LOCK TABLES `horde_imap_client_metadata` WRITE; /*!40000 ALTER TABLE `horde_imap_client_metadata` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_imap_client_metadata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_imap_client_schema_info` -- DROP TABLE IF EXISTS `horde_imap_client_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_imap_client_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_imap_client_schema_info` -- LOCK TABLES `horde_imap_client_schema_info` WRITE; /*!40000 ALTER TABLE `horde_imap_client_schema_info` DISABLE KEYS */; INSERT INTO `horde_imap_client_schema_info` VALUES (2); /*!40000 ALTER TABLE `horde_imap_client_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_lock_schema_info` -- DROP TABLE IF EXISTS `horde_lock_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_lock_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_lock_schema_info` -- LOCK TABLES `horde_lock_schema_info` WRITE; /*!40000 ALTER TABLE `horde_lock_schema_info` DISABLE KEYS */; INSERT INTO `horde_lock_schema_info` VALUES (3); /*!40000 ALTER TABLE `horde_lock_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_locks` -- DROP TABLE IF EXISTS `horde_locks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_locks` ( `lock_id` varchar(36) NOT NULL, `lock_owner` varchar(255) NOT NULL, `lock_scope` varchar(32) NOT NULL, `lock_principal` varchar(255) NOT NULL, `lock_origin_timestamp` bigint(20) NOT NULL, `lock_update_timestamp` bigint(20) NOT NULL, `lock_expiry_timestamp` bigint(20) NOT NULL, `lock_type` smallint(5) unsigned NOT NULL, PRIMARY KEY (`lock_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_locks` -- LOCK TABLES `horde_locks` WRITE; /*!40000 ALTER TABLE `horde_locks` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_locks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_muvfs` -- DROP TABLE IF EXISTS `horde_muvfs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_muvfs` ( `vfs_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `vfs_type` smallint(5) unsigned NOT NULL, `vfs_path` varchar(255) DEFAULT NULL, `vfs_name` varchar(255) NOT NULL, `vfs_modified` bigint(20) NOT NULL, `vfs_owner` varchar(255) DEFAULT NULL, `vfs_perms` smallint(5) unsigned NOT NULL, `vfs_data` longblob DEFAULT NULL, PRIMARY KEY (`vfs_id`), KEY `index_horde_muvfs_on_vfs_path` (`vfs_path`), KEY `index_horde_muvfs_on_vfs_name` (`vfs_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_muvfs` -- LOCK TABLES `horde_muvfs` WRITE; /*!40000 ALTER TABLE `horde_muvfs` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_muvfs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_perms` -- DROP TABLE IF EXISTS `horde_perms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_perms` ( `perm_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `perm_name` varchar(255) NOT NULL, `perm_parents` varchar(255) DEFAULT NULL, `perm_data` text DEFAULT NULL, PRIMARY KEY (`perm_id`), UNIQUE KEY `index_horde_perms_on_perm_name` (`perm_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_perms` -- LOCK TABLES `horde_perms` WRITE; /*!40000 ALTER TABLE `horde_perms` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_perms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_perms_schema_info` -- DROP TABLE IF EXISTS `horde_perms_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_perms_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_perms_schema_info` -- LOCK TABLES `horde_perms_schema_info` WRITE; /*!40000 ALTER TABLE `horde_perms_schema_info` DISABLE KEYS */; INSERT INTO `horde_perms_schema_info` VALUES (3); /*!40000 ALTER TABLE `horde_perms_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_prefs` -- DROP TABLE IF EXISTS `horde_prefs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_prefs` ( `pref_uid` varchar(255) NOT NULL, `pref_scope` varchar(16) NOT NULL DEFAULT '', `pref_name` varchar(32) NOT NULL, `pref_value` longblob DEFAULT NULL, PRIMARY KEY (`pref_uid`,`pref_scope`,`pref_name`), KEY `index_horde_prefs_on_pref_uid` (`pref_uid`), KEY `index_horde_prefs_on_pref_scope` (`pref_scope`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_prefs` -- LOCK TABLES `horde_prefs` WRITE; /*!40000 ALTER TABLE `horde_prefs` DISABLE KEYS */; INSERT INTO `horde_prefs` VALUES ('admin@mamweb.at','horde','last_login','a:2:{s:4:\"host\";s:12:\"84.114.41.55\";s:4:\"time\";i:1519859646;}'), ('admin@mamweb.at','horde','last_logintasks','a:2:{s:5:\"horde\";i:1519859646;s:3:\"imp\";i:1519859654;}'), ('admin@mamweb.at','horde','upgrade_tasks','a:3:{s:5:\"horde\";s:6:\"5.2.11\";s:3:\"imp\";s:6:\"6.2.15\";s:8:\"imp_auth\";s:6:\"6.2.15\";}'), ('admin@mamweb.at','kronolith','default_share','Jht_k6EFldr7VHYevuWYmi5'), ('admin@mamweb.at','kronolith','display_cals','a:1:{i:0;s:23:\"Jht_k6EFldr7VHYevuWYmi5\";}'), ('admin@mamweb.at','kronolith','display_external_cals','a:1:{i:0;s:29:\"tasks/D-q3ToyE5p2HHZaZ-_wLdf1\";}'), ('admin@mamweb.at','mnemo','default_notepad','UOI2jEa0YQwnsQaqDtmhcCk'), ('admin@mamweb.at','mnemo','display_notepads','a:1:{i:0;s:23:\"UOI2jEa0YQwnsQaqDtmhcCk\";}'), ('admin@mamweb.at','nag','default_tasklist','D-q3ToyE5p2HHZaZ-_wLdf1'), ('admin@mamweb.at','nag','display_tasklists','a:1:{i:0;s:23:\"D-q3ToyE5p2HHZaZ-_wLdf1\";}'), ('admin@mamweb.at','turba','default_dir','SZQgIc4oasIk8URcbneDUOA'); /*!40000 ALTER TABLE `horde_prefs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_prefs_schema_info` -- DROP TABLE IF EXISTS `horde_prefs_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_prefs_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_prefs_schema_info` -- LOCK TABLES `horde_prefs_schema_info` WRITE; /*!40000 ALTER TABLE `horde_prefs_schema_info` DISABLE KEYS */; INSERT INTO `horde_prefs_schema_info` VALUES (3); /*!40000 ALTER TABLE `horde_prefs_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_queue_schema_info` -- DROP TABLE IF EXISTS `horde_queue_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_queue_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_queue_schema_info` -- LOCK TABLES `horde_queue_schema_info` WRITE; /*!40000 ALTER TABLE `horde_queue_schema_info` DISABLE KEYS */; INSERT INTO `horde_queue_schema_info` VALUES (1); /*!40000 ALTER TABLE `horde_queue_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_queue_tasks` -- DROP TABLE IF EXISTS `horde_queue_tasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_queue_tasks` ( `task_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `task_queue` varchar(255) NOT NULL, `task_fields` text NOT NULL, PRIMARY KEY (`task_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_queue_tasks` -- LOCK TABLES `horde_queue_tasks` WRITE; /*!40000 ALTER TABLE `horde_queue_tasks` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_queue_tasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_sessionhandler` -- DROP TABLE IF EXISTS `horde_sessionhandler`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_sessionhandler` ( `session_id` varchar(32) NOT NULL, `session_lastmodified` int(11) NOT NULL, `session_data` longblob DEFAULT NULL, PRIMARY KEY (`session_id`), KEY `index_horde_sessionhandler_on_session_lastmodified` (`session_lastmodified`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_sessionhandler` -- LOCK TABLES `horde_sessionhandler` WRITE; /*!40000 ALTER TABLE `horde_sessionhandler` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_sessionhandler` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_sessionhandler_schema_info` -- DROP TABLE IF EXISTS `horde_sessionhandler_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_sessionhandler_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_sessionhandler_schema_info` -- LOCK TABLES `horde_sessionhandler_schema_info` WRITE; /*!40000 ALTER TABLE `horde_sessionhandler_schema_info` DISABLE KEYS */; INSERT INTO `horde_sessionhandler_schema_info` VALUES (2); /*!40000 ALTER TABLE `horde_sessionhandler_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_signups` -- DROP TABLE IF EXISTS `horde_signups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_signups` ( `user_name` varchar(255) NOT NULL, `signup_date` int(11) NOT NULL, `signup_host` varchar(255) NOT NULL, `signup_data` text NOT NULL, PRIMARY KEY (`user_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_signups` -- LOCK TABLES `horde_signups` WRITE; /*!40000 ALTER TABLE `horde_signups` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_signups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_syncml_anchors` -- DROP TABLE IF EXISTS `horde_syncml_anchors`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_syncml_anchors` ( `syncml_syncpartner` varchar(255) NOT NULL, `syncml_db` varchar(255) NOT NULL, `syncml_uid` varchar(255) NOT NULL, `syncml_clientanchor` varchar(255) DEFAULT NULL, `syncml_serveranchor` varchar(255) DEFAULT NULL, KEY `index_horde_syncml_anchors_on_syncml_syncpartner` (`syncml_syncpartner`), KEY `index_horde_syncml_anchors_on_syncml_db` (`syncml_db`), KEY `index_horde_syncml_anchors_on_syncml_uid` (`syncml_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_syncml_anchors` -- LOCK TABLES `horde_syncml_anchors` WRITE; /*!40000 ALTER TABLE `horde_syncml_anchors` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_syncml_anchors` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_syncml_map` -- DROP TABLE IF EXISTS `horde_syncml_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_syncml_map` ( `syncml_syncpartner` varchar(255) NOT NULL, `syncml_db` varchar(255) NOT NULL, `syncml_uid` varchar(255) NOT NULL, `syncml_cuid` varchar(255) DEFAULT NULL, `syncml_suid` varchar(255) DEFAULT NULL, `syncml_timestamp` int(11) DEFAULT NULL, KEY `index_horde_syncml_map_on_syncml_syncpartner` (`syncml_syncpartner`), KEY `index_horde_syncml_map_on_syncml_db` (`syncml_db`), KEY `index_horde_syncml_map_on_syncml_uid` (`syncml_uid`), KEY `index_horde_syncml_map_on_syncml_cuid` (`syncml_cuid`), KEY `index_horde_syncml_map_on_syncml_suid` (`syncml_suid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_syncml_map` -- LOCK TABLES `horde_syncml_map` WRITE; /*!40000 ALTER TABLE `horde_syncml_map` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_syncml_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_syncml_schema_info` -- DROP TABLE IF EXISTS `horde_syncml_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_syncml_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_syncml_schema_info` -- LOCK TABLES `horde_syncml_schema_info` WRITE; /*!40000 ALTER TABLE `horde_syncml_schema_info` DISABLE KEYS */; INSERT INTO `horde_syncml_schema_info` VALUES (1); /*!40000 ALTER TABLE `horde_syncml_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_token_schema_info` -- DROP TABLE IF EXISTS `horde_token_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_token_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_token_schema_info` -- LOCK TABLES `horde_token_schema_info` WRITE; /*!40000 ALTER TABLE `horde_token_schema_info` DISABLE KEYS */; INSERT INTO `horde_token_schema_info` VALUES (1); /*!40000 ALTER TABLE `horde_token_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_tokens` -- DROP TABLE IF EXISTS `horde_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_tokens` ( `token_address` varchar(100) NOT NULL, `token_id` varchar(32) NOT NULL, `token_timestamp` bigint(20) NOT NULL, PRIMARY KEY (`token_address`,`token_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_tokens` -- LOCK TABLES `horde_tokens` WRITE; /*!40000 ALTER TABLE `horde_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_users` -- DROP TABLE IF EXISTS `horde_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_users` ( `user_uid` varchar(255) NOT NULL, `user_pass` varchar(255) NOT NULL, `user_soft_expiration_date` int(11) DEFAULT NULL, `user_hard_expiration_date` int(11) DEFAULT NULL, PRIMARY KEY (`user_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_users` -- LOCK TABLES `horde_users` WRITE; /*!40000 ALTER TABLE `horde_users` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_vfs` -- DROP TABLE IF EXISTS `horde_vfs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_vfs` ( `vfs_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `vfs_type` smallint(5) unsigned NOT NULL, `vfs_path` varchar(255) DEFAULT NULL, `vfs_name` varchar(255) NOT NULL, `vfs_modified` bigint(20) NOT NULL, `vfs_owner` varchar(255) DEFAULT NULL, `vfs_data` longblob DEFAULT NULL, PRIMARY KEY (`vfs_id`), KEY `index_horde_vfs_on_vfs_path` (`vfs_path`), KEY `index_horde_vfs_on_vfs_name` (`vfs_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_vfs` -- LOCK TABLES `horde_vfs` WRITE; /*!40000 ALTER TABLE `horde_vfs` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_vfs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_vfs_schema_info` -- DROP TABLE IF EXISTS `horde_vfs_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_vfs_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_vfs_schema_info` -- LOCK TABLES `horde_vfs_schema_info` WRITE; /*!40000 ALTER TABLE `horde_vfs_schema_info` DISABLE KEYS */; INSERT INTO `horde_vfs_schema_info` VALUES (4); /*!40000 ALTER TABLE `horde_vfs_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `imp_schema_info` -- DROP TABLE IF EXISTS `imp_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `imp_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `imp_schema_info` -- LOCK TABLES `imp_schema_info` WRITE; /*!40000 ALTER TABLE `imp_schema_info` DISABLE KEYS */; INSERT INTO `imp_schema_info` VALUES (3); /*!40000 ALTER TABLE `imp_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `imp_sentmail` -- DROP TABLE IF EXISTS `imp_sentmail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `imp_sentmail` ( `sentmail_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `sentmail_who` varchar(255) NOT NULL, `sentmail_ts` bigint(20) NOT NULL, `sentmail_messageid` varchar(255) NOT NULL, `sentmail_action` varchar(32) NOT NULL, `sentmail_recipient` varchar(255) NOT NULL, `sentmail_success` int(11) NOT NULL, PRIMARY KEY (`sentmail_id`), KEY `index_imp_sentmail_on_sentmail_ts` (`sentmail_ts`), KEY `index_imp_sentmail_on_sentmail_who` (`sentmail_who`), KEY `index_imp_sentmail_on_sentmail_success` (`sentmail_success`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `imp_sentmail` -- LOCK TABLES `imp_sentmail` WRITE; /*!40000 ALTER TABLE `imp_sentmail` DISABLE KEYS */; /*!40000 ALTER TABLE `imp_sentmail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_forwards` -- DROP TABLE IF EXISTS `ingo_forwards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_forwards` ( `forward_owner` varchar(255) NOT NULL, `forward_addresses` text DEFAULT NULL, `forward_keep` int(11) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_forwards` -- LOCK TABLES `ingo_forwards` WRITE; /*!40000 ALTER TABLE `ingo_forwards` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_forwards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_lists` -- DROP TABLE IF EXISTS `ingo_lists`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_lists` ( `list_owner` varchar(255) NOT NULL, `list_blacklist` int(11) DEFAULT 0, `list_address` varchar(255) NOT NULL, KEY `index_ingo_lists_on_list_owner_and_list_blacklist` (`list_owner`,`list_blacklist`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_lists` -- LOCK TABLES `ingo_lists` WRITE; /*!40000 ALTER TABLE `ingo_lists` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_lists` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_rules` -- DROP TABLE IF EXISTS `ingo_rules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_rules` ( `rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `rule_owner` varchar(255) NOT NULL, `rule_name` varchar(255) NOT NULL, `rule_action` int(11) NOT NULL, `rule_value` varchar(255) DEFAULT NULL, `rule_flags` int(11) DEFAULT NULL, `rule_conditions` text DEFAULT NULL, `rule_combine` int(11) DEFAULT NULL, `rule_stop` int(11) DEFAULT NULL, `rule_active` int(11) NOT NULL DEFAULT 1, `rule_order` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`rule_id`), KEY `index_ingo_rules_on_rule_owner` (`rule_owner`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_rules` -- LOCK TABLES `ingo_rules` WRITE; /*!40000 ALTER TABLE `ingo_rules` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_rules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_schema_info` -- DROP TABLE IF EXISTS `ingo_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_schema_info` -- LOCK TABLES `ingo_schema_info` WRITE; /*!40000 ALTER TABLE `ingo_schema_info` DISABLE KEYS */; INSERT INTO `ingo_schema_info` VALUES (7); /*!40000 ALTER TABLE `ingo_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_shares` -- DROP TABLE IF EXISTS `ingo_shares`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_shares` ( `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) NOT NULL, `share_flags` int(11) NOT NULL DEFAULT 0, `perm_creator` int(11) NOT NULL DEFAULT 0, `perm_default` int(11) NOT NULL DEFAULT 0, `perm_guest` int(11) NOT NULL DEFAULT 0, `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, `share_parents` varchar(4000) DEFAULT NULL, PRIMARY KEY (`share_id`), KEY `index_ingo_shares_on_share_name` (`share_name`), KEY `index_ingo_shares_on_share_owner` (`share_owner`), KEY `index_ingo_shares_on_perm_creator` (`perm_creator`), KEY `index_ingo_shares_on_perm_default` (`perm_default`), KEY `index_ingo_shares_on_perm_guest` (`perm_guest`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_shares` -- LOCK TABLES `ingo_shares` WRITE; /*!40000 ALTER TABLE `ingo_shares` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_shares` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_shares_groups` -- DROP TABLE IF EXISTS `ingo_shares_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_shares_groups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `index_ingo_shares_groups_on_share_id` (`share_id`), KEY `index_ingo_shares_groups_on_group_uid` (`group_uid`), KEY `index_ingo_shares_groups_on_perm` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_shares_groups` -- LOCK TABLES `ingo_shares_groups` WRITE; /*!40000 ALTER TABLE `ingo_shares_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_shares_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_shares_users` -- DROP TABLE IF EXISTS `ingo_shares_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_shares_users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `index_ingo_shares_users_on_share_id` (`share_id`), KEY `index_ingo_shares_users_on_user_uid` (`user_uid`), KEY `index_ingo_shares_users_on_perm` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_shares_users` -- LOCK TABLES `ingo_shares_users` WRITE; /*!40000 ALTER TABLE `ingo_shares_users` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_shares_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_sharesng` -- DROP TABLE IF EXISTS `ingo_sharesng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_sharesng` ( `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) DEFAULT NULL, `share_flags` int(11) NOT NULL DEFAULT 0, `perm_creator_2` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_4` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_8` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_16` tinyint(1) NOT NULL DEFAULT 0, `perm_default_2` tinyint(1) NOT NULL DEFAULT 0, `perm_default_4` tinyint(1) NOT NULL DEFAULT 0, `perm_default_8` tinyint(1) NOT NULL DEFAULT 0, `perm_default_16` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_2` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_4` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_8` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_16` tinyint(1) NOT NULL DEFAULT 0, `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, `share_parents` varchar(4000) DEFAULT NULL, PRIMARY KEY (`share_id`), KEY `index_ingo_sharesng_on_share_name` (`share_name`), KEY `index_ingo_sharesng_on_share_owner` (`share_owner`), KEY `index_ingo_sharesng_on_perm_creator_2` (`perm_creator_2`), KEY `index_ingo_sharesng_on_perm_creator_4` (`perm_creator_4`), KEY `index_ingo_sharesng_on_perm_creator_8` (`perm_creator_8`), KEY `index_ingo_sharesng_on_perm_creator_16` (`perm_creator_16`), KEY `index_ingo_sharesng_on_perm_default_2` (`perm_default_2`), KEY `index_ingo_sharesng_on_perm_default_4` (`perm_default_4`), KEY `index_ingo_sharesng_on_perm_default_8` (`perm_default_8`), KEY `index_ingo_sharesng_on_perm_default_16` (`perm_default_16`), KEY `index_ingo_sharesng_on_perm_guest_2` (`perm_guest_2`), KEY `index_ingo_sharesng_on_perm_guest_4` (`perm_guest_4`), KEY `index_ingo_sharesng_on_perm_guest_8` (`perm_guest_8`), KEY `index_ingo_sharesng_on_perm_guest_16` (`perm_guest_16`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_sharesng` -- LOCK TABLES `ingo_sharesng` WRITE; /*!40000 ALTER TABLE `ingo_sharesng` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_sharesng` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_sharesng_groups` -- DROP TABLE IF EXISTS `ingo_sharesng_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_sharesng_groups` ( `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm_2` tinyint(1) NOT NULL DEFAULT 0, `perm_4` tinyint(1) NOT NULL DEFAULT 0, `perm_8` tinyint(1) NOT NULL DEFAULT 0, `perm_16` tinyint(1) NOT NULL DEFAULT 0, KEY `index_ingo_sharesng_groups_on_share_id` (`share_id`), KEY `index_ingo_sharesng_groups_on_group_uid` (`group_uid`), KEY `index_ingo_sharesng_groups_on_perm_2` (`perm_2`), KEY `index_ingo_sharesng_groups_on_perm_4` (`perm_4`), KEY `index_ingo_sharesng_groups_on_perm_8` (`perm_8`), KEY `index_ingo_sharesng_groups_on_perm_16` (`perm_16`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_sharesng_groups` -- LOCK TABLES `ingo_sharesng_groups` WRITE; /*!40000 ALTER TABLE `ingo_sharesng_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_sharesng_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_sharesng_users` -- DROP TABLE IF EXISTS `ingo_sharesng_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_sharesng_users` ( `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm_2` tinyint(1) NOT NULL DEFAULT 0, `perm_4` tinyint(1) NOT NULL DEFAULT 0, `perm_8` tinyint(1) NOT NULL DEFAULT 0, `perm_16` tinyint(1) NOT NULL DEFAULT 0, KEY `index_ingo_sharesng_users_on_share_id` (`share_id`), KEY `index_ingo_sharesng_users_on_user_uid` (`user_uid`), KEY `index_ingo_sharesng_users_on_perm_2` (`perm_2`), KEY `index_ingo_sharesng_users_on_perm_4` (`perm_4`), KEY `index_ingo_sharesng_users_on_perm_8` (`perm_8`), KEY `index_ingo_sharesng_users_on_perm_16` (`perm_16`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_sharesng_users` -- LOCK TABLES `ingo_sharesng_users` WRITE; /*!40000 ALTER TABLE `ingo_sharesng_users` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_sharesng_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_spam` -- DROP TABLE IF EXISTS `ingo_spam`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_spam` ( `spam_owner` varchar(255) NOT NULL, `spam_level` int(11) DEFAULT 5, `spam_folder` varchar(255) DEFAULT NULL, PRIMARY KEY (`spam_owner`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_spam` -- LOCK TABLES `ingo_spam` WRITE; /*!40000 ALTER TABLE `ingo_spam` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_spam` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_vacations` -- DROP TABLE IF EXISTS `ingo_vacations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_vacations` ( `vacation_owner` varchar(255) NOT NULL, `vacation_addresses` text DEFAULT NULL, `vacation_subject` varchar(255) DEFAULT NULL, `vacation_reason` text DEFAULT NULL, `vacation_days` int(11) DEFAULT 7, `vacation_start` int(11) DEFAULT NULL, `vacation_end` int(11) DEFAULT NULL, `vacation_excludes` text DEFAULT NULL, `vacation_ignorelists` int(11) DEFAULT 1, PRIMARY KEY (`vacation_owner`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_vacations` -- LOCK TABLES `ingo_vacations` WRITE; /*!40000 ALTER TABLE `ingo_vacations` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_vacations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_events` -- DROP TABLE IF EXISTS `kronolith_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_events` ( `event_id` varchar(32) NOT NULL, `event_uid` varchar(255) NOT NULL, `calendar_id` varchar(255) NOT NULL, `event_creator_id` varchar(255) NOT NULL, `event_description` text DEFAULT NULL, `event_location` text DEFAULT NULL, `event_status` int(11) DEFAULT 0, `event_attendees` text DEFAULT NULL, `event_keywords` text DEFAULT NULL, `event_exceptions` text DEFAULT NULL, `event_title` varchar(255) DEFAULT NULL, `event_recurtype` int(11) DEFAULT 0, `event_recurinterval` int(11) DEFAULT NULL, `event_recurdays` int(11) DEFAULT NULL, `event_recurenddate` datetime DEFAULT NULL, `event_recurcount` int(11) DEFAULT NULL, `event_start` datetime DEFAULT NULL, `event_end` datetime DEFAULT NULL, `event_alarm` int(11) DEFAULT 0, `event_modified` int(11) DEFAULT 0, `event_private` int(11) NOT NULL DEFAULT 0, `event_allday` int(11) DEFAULT 0, `event_alarm_methods` text DEFAULT NULL, `event_url` text DEFAULT NULL, `event_baseid` varchar(255) DEFAULT '', `event_exceptionoriginaldate` datetime DEFAULT NULL, `event_resources` text DEFAULT NULL, `event_timezone` varchar(50) DEFAULT NULL, PRIMARY KEY (`event_id`), KEY `index_kronolith_events_on_calendar_id` (`calendar_id`), KEY `index_kronolith_events_on_event_uid` (`event_uid`), KEY `index_kronolith_events_on_event_baseid` (`event_baseid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_events` -- LOCK TABLES `kronolith_events` WRITE; /*!40000 ALTER TABLE `kronolith_events` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_events_geo` -- DROP TABLE IF EXISTS `kronolith_events_geo`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_events_geo` ( `event_id` varchar(32) NOT NULL, `event_lat` varchar(32) NOT NULL, `event_lon` varchar(32) NOT NULL, `event_zoom` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`event_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_events_geo` -- LOCK TABLES `kronolith_events_geo` WRITE; /*!40000 ALTER TABLE `kronolith_events_geo` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_events_geo` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_events_mysqlgeo` -- DROP TABLE IF EXISTS `kronolith_events_mysqlgeo`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_events_mysqlgeo` ( `event_id` varchar(32) NOT NULL, `event_coordinates` point NOT NULL, `event_zoom` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`event_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_events_mysqlgeo` -- LOCK TABLES `kronolith_events_mysqlgeo` WRITE; /*!40000 ALTER TABLE `kronolith_events_mysqlgeo` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_events_mysqlgeo` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_resources` -- DROP TABLE IF EXISTS `kronolith_resources`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_resources` ( `resource_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `resource_name` varchar(255) DEFAULT NULL, `resource_calendar` varchar(255) DEFAULT NULL, `resource_description` text DEFAULT NULL, `resource_response_type` int(11) DEFAULT 0, `resource_type` varchar(255) NOT NULL, `resource_members` text DEFAULT NULL, `resource_email` varchar(255) DEFAULT NULL, PRIMARY KEY (`resource_id`), KEY `index_kronolith_resources_on_resource_calendar` (`resource_calendar`), KEY `index_kronolith_resources_on_resource_type` (`resource_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_resources` -- LOCK TABLES `kronolith_resources` WRITE; /*!40000 ALTER TABLE `kronolith_resources` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_resources` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_schema_info` -- DROP TABLE IF EXISTS `kronolith_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_schema_info` -- LOCK TABLES `kronolith_schema_info` WRITE; /*!40000 ALTER TABLE `kronolith_schema_info` DISABLE KEYS */; INSERT INTO `kronolith_schema_info` VALUES (23); /*!40000 ALTER TABLE `kronolith_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_shares` -- DROP TABLE IF EXISTS `kronolith_shares`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_shares` ( `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) DEFAULT NULL, `share_flags` int(11) NOT NULL DEFAULT 0, `perm_creator` int(11) NOT NULL DEFAULT 0, `perm_default` int(11) NOT NULL DEFAULT 0, `perm_guest` int(11) NOT NULL DEFAULT 0, `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, `attribute_color` varchar(7) DEFAULT NULL, `share_parents` varchar(4000) DEFAULT NULL, PRIMARY KEY (`share_id`), KEY `index_kronolith_shares_on_share_name` (`share_name`), KEY `index_kronolith_shares_on_share_owner` (`share_owner`), KEY `index_kronolith_shares_on_perm_creator` (`perm_creator`), KEY `index_kronolith_shares_on_perm_default` (`perm_default`), KEY `index_kronolith_shares_on_perm_guest` (`perm_guest`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_shares` -- LOCK TABLES `kronolith_shares` WRITE; /*!40000 ALTER TABLE `kronolith_shares` DISABLE KEYS */; INSERT INTO `kronolith_shares` VALUES (1,'Jht_k6EFldr7VHYevuWYmi5','admin@mamweb.at',0,0,0,0,'Calendar of admin@mamweb.at',NULL,'#bdc058',NULL); /*!40000 ALTER TABLE `kronolith_shares` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_shares_groups` -- DROP TABLE IF EXISTS `kronolith_shares_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_shares_groups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `index_kronolith_shares_groups_on_share_id` (`share_id`), KEY `index_kronolith_shares_groups_on_group_uid` (`group_uid`), KEY `index_kronolith_shares_groups_on_perm` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_shares_groups` -- LOCK TABLES `kronolith_shares_groups` WRITE; /*!40000 ALTER TABLE `kronolith_shares_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_shares_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_shares_users` -- DROP TABLE IF EXISTS `kronolith_shares_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_shares_users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `index_kronolith_shares_users_on_share_id` (`share_id`), KEY `index_kronolith_shares_users_on_user_uid` (`user_uid`), KEY `index_kronolith_shares_users_on_perm` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_shares_users` -- LOCK TABLES `kronolith_shares_users` WRITE; /*!40000 ALTER TABLE `kronolith_shares_users` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_shares_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_sharesng` -- DROP TABLE IF EXISTS `kronolith_sharesng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_sharesng` ( `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) DEFAULT NULL, `share_flags` int(11) NOT NULL DEFAULT 0, `perm_creator_2` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_4` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_8` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_16` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_1024` tinyint(1) NOT NULL DEFAULT 0, `perm_default_2` tinyint(1) NOT NULL DEFAULT 0, `perm_default_4` tinyint(1) NOT NULL DEFAULT 0, `perm_default_8` tinyint(1) NOT NULL DEFAULT 0, `perm_default_16` tinyint(1) NOT NULL DEFAULT 0, `perm_default_1024` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_2` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_4` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_8` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_16` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_1024` tinyint(1) NOT NULL DEFAULT 0, `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, `attribute_color` varchar(7) DEFAULT NULL, `share_parents` varchar(4000) DEFAULT NULL, PRIMARY KEY (`share_id`), KEY `index_kronolith_sharesng_on_share_name` (`share_name`), KEY `index_kronolith_sharesng_on_share_owner` (`share_owner`), KEY `index_kronolith_sharesng_on_perm_creator_2` (`perm_creator_2`), KEY `index_kronolith_sharesng_on_perm_creator_4` (`perm_creator_4`), KEY `index_kronolith_sharesng_on_perm_creator_8` (`perm_creator_8`), KEY `index_kronolith_sharesng_on_perm_creator_16` (`perm_creator_16`), KEY `index_kronolith_sharesng_on_perm_creator_1024` (`perm_creator_1024`), KEY `index_kronolith_sharesng_on_perm_default_2` (`perm_default_2`), KEY `index_kronolith_sharesng_on_perm_default_4` (`perm_default_4`), KEY `index_kronolith_sharesng_on_perm_default_8` (`perm_default_8`), KEY `index_kronolith_sharesng_on_perm_default_16` (`perm_default_16`), KEY `index_kronolith_sharesng_on_perm_default_1024` (`perm_default_1024`), KEY `index_kronolith_sharesng_on_perm_guest_2` (`perm_guest_2`), KEY `index_kronolith_sharesng_on_perm_guest_4` (`perm_guest_4`), KEY `index_kronolith_sharesng_on_perm_guest_8` (`perm_guest_8`), KEY `index_kronolith_sharesng_on_perm_guest_16` (`perm_guest_16`), KEY `index_kronolith_sharesng_on_perm_guest_1024` (`perm_guest_1024`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_sharesng` -- LOCK TABLES `kronolith_sharesng` WRITE; /*!40000 ALTER TABLE `kronolith_sharesng` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_sharesng` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_sharesng_groups` -- DROP TABLE IF EXISTS `kronolith_sharesng_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_sharesng_groups` ( `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm_2` tinyint(1) NOT NULL DEFAULT 0, `perm_4` tinyint(1) NOT NULL DEFAULT 0, `perm_8` tinyint(1) NOT NULL DEFAULT 0, `perm_16` tinyint(1) NOT NULL DEFAULT 0, `perm_1024` tinyint(1) NOT NULL DEFAULT 0, KEY `index_kronolith_sharesng_groups_on_share_id` (`share_id`), KEY `index_kronolith_sharesng_groups_on_group_uid` (`group_uid`), KEY `index_kronolith_sharesng_groups_on_perm_2` (`perm_2`), KEY `index_kronolith_sharesng_groups_on_perm_4` (`perm_4`), KEY `index_kronolith_sharesng_groups_on_perm_8` (`perm_8`), KEY `index_kronolith_sharesng_groups_on_perm_16` (`perm_16`), KEY `index_kronolith_sharesng_groups_on_perm_1024` (`perm_1024`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_sharesng_groups` -- LOCK TABLES `kronolith_sharesng_groups` WRITE; /*!40000 ALTER TABLE `kronolith_sharesng_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_sharesng_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_sharesng_users` -- DROP TABLE IF EXISTS `kronolith_sharesng_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_sharesng_users` ( `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm_2` tinyint(1) NOT NULL DEFAULT 0, `perm_4` tinyint(1) NOT NULL DEFAULT 0, `perm_8` tinyint(1) NOT NULL DEFAULT 0, `perm_16` tinyint(1) NOT NULL DEFAULT 0, `perm_1024` tinyint(1) NOT NULL DEFAULT 0, KEY `index_kronolith_sharesng_users_on_share_id` (`share_id`), KEY `index_kronolith_sharesng_users_on_user_uid` (`user_uid`), KEY `index_kronolith_sharesng_users_on_perm_2` (`perm_2`), KEY `index_kronolith_sharesng_users_on_perm_4` (`perm_4`), KEY `index_kronolith_sharesng_users_on_perm_8` (`perm_8`), KEY `index_kronolith_sharesng_users_on_perm_16` (`perm_16`), KEY `index_kronolith_sharesng_users_on_perm_1024` (`perm_1024`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_sharesng_users` -- LOCK TABLES `kronolith_sharesng_users` WRITE; /*!40000 ALTER TABLE `kronolith_sharesng_users` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_sharesng_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_storage` -- DROP TABLE IF EXISTS `kronolith_storage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_storage` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `vfb_owner` varchar(255) DEFAULT NULL, `vfb_email` varchar(255) NOT NULL, `vfb_serialized` text NOT NULL, PRIMARY KEY (`id`), KEY `index_kronolith_storage_on_vfb_owner` (`vfb_owner`), KEY `index_kronolith_storage_on_vfb_email` (`vfb_email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_storage` -- LOCK TABLES `kronolith_storage` WRITE; /*!40000 ALTER TABLE `kronolith_storage` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_storage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mnemo_memos` -- DROP TABLE IF EXISTS `mnemo_memos`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mnemo_memos` ( `memo_owner` varchar(255) NOT NULL, `memo_id` varchar(32) NOT NULL, `memo_uid` varchar(255) NOT NULL, `memo_desc` varchar(255) NOT NULL, `memo_body` text DEFAULT NULL, `memo_private` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`memo_owner`,`memo_id`), KEY `index_mnemo_memos_on_memo_owner` (`memo_owner`), KEY `index_mnemo_memos_on_memo_uid` (`memo_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mnemo_memos` -- LOCK TABLES `mnemo_memos` WRITE; /*!40000 ALTER TABLE `mnemo_memos` DISABLE KEYS */; /*!40000 ALTER TABLE `mnemo_memos` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mnemo_schema_info` -- DROP TABLE IF EXISTS `mnemo_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mnemo_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mnemo_schema_info` -- LOCK TABLES `mnemo_schema_info` WRITE; /*!40000 ALTER TABLE `mnemo_schema_info` DISABLE KEYS */; INSERT INTO `mnemo_schema_info` VALUES (8); /*!40000 ALTER TABLE `mnemo_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mnemo_shares` -- DROP TABLE IF EXISTS `mnemo_shares`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mnemo_shares` ( `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) NOT NULL, `share_flags` int(11) NOT NULL DEFAULT 0, `perm_creator` int(11) NOT NULL DEFAULT 0, `perm_default` int(11) NOT NULL DEFAULT 0, `perm_guest` int(11) NOT NULL DEFAULT 0, `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, `share_parents` varchar(4000) DEFAULT NULL, PRIMARY KEY (`share_id`), KEY `index_mnemo_shares_on_share_name` (`share_name`), KEY `index_mnemo_shares_on_share_owner` (`share_owner`), KEY `index_mnemo_shares_on_perm_creator` (`perm_creator`), KEY `index_mnemo_shares_on_perm_default` (`perm_default`), KEY `index_mnemo_shares_on_perm_guest` (`perm_guest`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mnemo_shares` -- LOCK TABLES `mnemo_shares` WRITE; /*!40000 ALTER TABLE `mnemo_shares` DISABLE KEYS */; INSERT INTO `mnemo_shares` VALUES (1,'UOI2jEa0YQwnsQaqDtmhcCk','admin@mamweb.at',0,0,0,0,'Notepad of admin@mamweb.at',NULL,NULL); /*!40000 ALTER TABLE `mnemo_shares` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mnemo_shares_groups` -- DROP TABLE IF EXISTS `mnemo_shares_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mnemo_shares_groups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `index_mnemo_shares_groups_on_share_id` (`share_id`), KEY `index_mnemo_shares_groups_on_group_uid` (`group_uid`), KEY `index_mnemo_shares_groups_on_perm` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mnemo_shares_groups` -- LOCK TABLES `mnemo_shares_groups` WRITE; /*!40000 ALTER TABLE `mnemo_shares_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `mnemo_shares_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mnemo_shares_users` -- DROP TABLE IF EXISTS `mnemo_shares_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mnemo_shares_users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `index_mnemo_shares_users_on_share_id` (`share_id`), KEY `index_mnemo_shares_users_on_user_uid` (`user_uid`), KEY `index_mnemo_shares_users_on_perm` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mnemo_shares_users` -- LOCK TABLES `mnemo_shares_users` WRITE; /*!40000 ALTER TABLE `mnemo_shares_users` DISABLE KEYS */; /*!40000 ALTER TABLE `mnemo_shares_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mnemo_sharesng` -- DROP TABLE IF EXISTS `mnemo_sharesng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mnemo_sharesng` ( `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) DEFAULT NULL, `share_flags` int(11) NOT NULL DEFAULT 0, `perm_creator_2` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_4` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_8` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_16` tinyint(1) NOT NULL DEFAULT 0, `perm_default_2` tinyint(1) NOT NULL DEFAULT 0, `perm_default_4` tinyint(1) NOT NULL DEFAULT 0, `perm_default_8` tinyint(1) NOT NULL DEFAULT 0, `perm_default_16` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_2` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_4` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_8` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_16` tinyint(1) NOT NULL DEFAULT 0, `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, `share_parents` varchar(4000) DEFAULT NULL, PRIMARY KEY (`share_id`), KEY `index_mnemo_sharesng_on_share_name` (`share_name`), KEY `index_mnemo_sharesng_on_share_owner` (`share_owner`), KEY `index_mnemo_sharesng_on_perm_creator_2` (`perm_creator_2`), KEY `index_mnemo_sharesng_on_perm_creator_4` (`perm_creator_4`), KEY `index_mnemo_sharesng_on_perm_creator_8` (`perm_creator_8`), KEY `index_mnemo_sharesng_on_perm_creator_16` (`perm_creator_16`), KEY `index_mnemo_sharesng_on_perm_default_2` (`perm_default_2`), KEY `index_mnemo_sharesng_on_perm_default_4` (`perm_default_4`), KEY `index_mnemo_sharesng_on_perm_default_8` (`perm_default_8`), KEY `index_mnemo_sharesng_on_perm_default_16` (`perm_default_16`), KEY `index_mnemo_sharesng_on_perm_guest_2` (`perm_guest_2`), KEY `index_mnemo_sharesng_on_perm_guest_4` (`perm_guest_4`), KEY `index_mnemo_sharesng_on_perm_guest_8` (`perm_guest_8`), KEY `index_mnemo_sharesng_on_perm_guest_16` (`perm_guest_16`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mnemo_sharesng` -- LOCK TABLES `mnemo_sharesng` WRITE; /*!40000 ALTER TABLE `mnemo_sharesng` DISABLE KEYS */; /*!40000 ALTER TABLE `mnemo_sharesng` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mnemo_sharesng_groups` -- DROP TABLE IF EXISTS `mnemo_sharesng_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mnemo_sharesng_groups` ( `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm_2` tinyint(1) NOT NULL DEFAULT 0, `perm_4` tinyint(1) NOT NULL DEFAULT 0, `perm_8` tinyint(1) NOT NULL DEFAULT 0, `perm_16` tinyint(1) NOT NULL DEFAULT 0, KEY `index_mnemo_sharesng_groups_on_share_id` (`share_id`), KEY `index_mnemo_sharesng_groups_on_group_uid` (`group_uid`), KEY `index_mnemo_sharesng_groups_on_perm_2` (`perm_2`), KEY `index_mnemo_sharesng_groups_on_perm_4` (`perm_4`), KEY `index_mnemo_sharesng_groups_on_perm_8` (`perm_8`), KEY `index_mnemo_sharesng_groups_on_perm_16` (`perm_16`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mnemo_sharesng_groups` -- LOCK TABLES `mnemo_sharesng_groups` WRITE; /*!40000 ALTER TABLE `mnemo_sharesng_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `mnemo_sharesng_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mnemo_sharesng_users` -- DROP TABLE IF EXISTS `mnemo_sharesng_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mnemo_sharesng_users` ( `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm_2` tinyint(1) NOT NULL DEFAULT 0, `perm_4` tinyint(1) NOT NULL DEFAULT 0, `perm_8` tinyint(1) NOT NULL DEFAULT 0, `perm_16` tinyint(1) NOT NULL DEFAULT 0, KEY `index_mnemo_sharesng_users_on_share_id` (`share_id`), KEY `index_mnemo_sharesng_users_on_user_uid` (`user_uid`), KEY `index_mnemo_sharesng_users_on_perm_2` (`perm_2`), KEY `index_mnemo_sharesng_users_on_perm_4` (`perm_4`), KEY `index_mnemo_sharesng_users_on_perm_8` (`perm_8`), KEY `index_mnemo_sharesng_users_on_perm_16` (`perm_16`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mnemo_sharesng_users` -- LOCK TABLES `mnemo_sharesng_users` WRITE; /*!40000 ALTER TABLE `mnemo_sharesng_users` DISABLE KEYS */; /*!40000 ALTER TABLE `mnemo_sharesng_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nag_schema_info` -- DROP TABLE IF EXISTS `nag_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `nag_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nag_schema_info` -- LOCK TABLES `nag_schema_info` WRITE; /*!40000 ALTER TABLE `nag_schema_info` DISABLE KEYS */; INSERT INTO `nag_schema_info` VALUES (14); /*!40000 ALTER TABLE `nag_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nag_shares` -- DROP TABLE IF EXISTS `nag_shares`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `nag_shares` ( `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) DEFAULT NULL, `share_flags` int(2) NOT NULL DEFAULT 0, `perm_creator` int(2) NOT NULL DEFAULT 0, `perm_default` int(2) NOT NULL DEFAULT 0, `perm_guest` int(2) NOT NULL DEFAULT 0, `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, `attribute_color` varchar(7) DEFAULT NULL, `share_parents` varchar(4000) DEFAULT NULL, `attribute_issmart` int(11) DEFAULT 0, `attribute_search` varchar(4000) DEFAULT NULL, PRIMARY KEY (`share_id`), KEY `index_nag_shares_on_share_name` (`share_name`), KEY `index_nag_shares_on_share_owner` (`share_owner`), KEY `index_nag_shares_on_perm_creator` (`perm_creator`), KEY `index_nag_shares_on_perm_default` (`perm_default`), KEY `index_nag_shares_on_perm_guest` (`perm_guest`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nag_shares` -- LOCK TABLES `nag_shares` WRITE; /*!40000 ALTER TABLE `nag_shares` DISABLE KEYS */; INSERT INTO `nag_shares` VALUES (1,'D-q3ToyE5p2HHZaZ-_wLdf1','admin@mamweb.at',0,0,0,0,'Task list of admin@mamweb.at',NULL,'#b6fcf8',NULL,0,NULL); /*!40000 ALTER TABLE `nag_shares` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nag_shares_groups` -- DROP TABLE IF EXISTS `nag_shares_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `nag_shares_groups` ( `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm` int(2) NOT NULL, KEY `index_nag_shares_groups_on_share_id` (`share_id`), KEY `index_nag_shares_groups_on_group_uid` (`group_uid`), KEY `index_nag_shares_groups_on_perm` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nag_shares_groups` -- LOCK TABLES `nag_shares_groups` WRITE; /*!40000 ALTER TABLE `nag_shares_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `nag_shares_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nag_shares_users` -- DROP TABLE IF EXISTS `nag_shares_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `nag_shares_users` ( `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm` int(2) NOT NULL, KEY `index_nag_shares_users_on_share_id` (`share_id`), KEY `index_nag_shares_users_on_user_uid` (`user_uid`), KEY `index_nag_shares_users_on_perm` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nag_shares_users` -- LOCK TABLES `nag_shares_users` WRITE; /*!40000 ALTER TABLE `nag_shares_users` DISABLE KEYS */; /*!40000 ALTER TABLE `nag_shares_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nag_sharesng` -- DROP TABLE IF EXISTS `nag_sharesng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `nag_sharesng` ( `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) DEFAULT NULL, `share_flags` int(11) NOT NULL DEFAULT 0, `perm_creator_2` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_4` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_8` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_16` tinyint(1) NOT NULL DEFAULT 0, `perm_default_2` tinyint(1) NOT NULL DEFAULT 0, `perm_default_4` tinyint(1) NOT NULL DEFAULT 0, `perm_default_8` tinyint(1) NOT NULL DEFAULT 0, `perm_default_16` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_2` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_4` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_8` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_16` tinyint(1) NOT NULL DEFAULT 0, `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, `attribute_color` varchar(7) DEFAULT NULL, `share_parents` varchar(4000) DEFAULT NULL, `attribute_issmart` int(11) DEFAULT 0, `attribute_search` text DEFAULT NULL, PRIMARY KEY (`share_id`), KEY `index_nag_sharesng_on_share_name` (`share_name`), KEY `index_nag_sharesng_on_share_owner` (`share_owner`), KEY `index_nag_sharesng_on_perm_creator_2` (`perm_creator_2`), KEY `index_nag_sharesng_on_perm_creator_4` (`perm_creator_4`), KEY `index_nag_sharesng_on_perm_creator_8` (`perm_creator_8`), KEY `index_nag_sharesng_on_perm_creator_16` (`perm_creator_16`), KEY `index_nag_sharesng_on_perm_default_2` (`perm_default_2`), KEY `index_nag_sharesng_on_perm_default_4` (`perm_default_4`), KEY `index_nag_sharesng_on_perm_default_8` (`perm_default_8`), KEY `index_nag_sharesng_on_perm_default_16` (`perm_default_16`), KEY `index_nag_sharesng_on_perm_guest_2` (`perm_guest_2`), KEY `index_nag_sharesng_on_perm_guest_4` (`perm_guest_4`), KEY `index_nag_sharesng_on_perm_guest_8` (`perm_guest_8`), KEY `index_nag_sharesng_on_perm_guest_16` (`perm_guest_16`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nag_sharesng` -- LOCK TABLES `nag_sharesng` WRITE; /*!40000 ALTER TABLE `nag_sharesng` DISABLE KEYS */; /*!40000 ALTER TABLE `nag_sharesng` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nag_sharesng_groups` -- DROP TABLE IF EXISTS `nag_sharesng_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `nag_sharesng_groups` ( `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm_2` tinyint(1) NOT NULL DEFAULT 0, `perm_4` tinyint(1) NOT NULL DEFAULT 0, `perm_8` tinyint(1) NOT NULL DEFAULT 0, `perm_16` tinyint(1) NOT NULL DEFAULT 0, KEY `index_nag_sharesng_groups_on_share_id` (`share_id`), KEY `index_nag_sharesng_groups_on_group_uid` (`group_uid`), KEY `index_nag_sharesng_groups_on_perm_2` (`perm_2`), KEY `index_nag_sharesng_groups_on_perm_4` (`perm_4`), KEY `index_nag_sharesng_groups_on_perm_8` (`perm_8`), KEY `index_nag_sharesng_groups_on_perm_16` (`perm_16`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nag_sharesng_groups` -- LOCK TABLES `nag_sharesng_groups` WRITE; /*!40000 ALTER TABLE `nag_sharesng_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `nag_sharesng_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nag_sharesng_users` -- DROP TABLE IF EXISTS `nag_sharesng_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `nag_sharesng_users` ( `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm_2` tinyint(1) NOT NULL DEFAULT 0, `perm_4` tinyint(1) NOT NULL DEFAULT 0, `perm_8` tinyint(1) NOT NULL DEFAULT 0, `perm_16` tinyint(1) NOT NULL DEFAULT 0, KEY `index_nag_sharesng_users_on_share_id` (`share_id`), KEY `index_nag_sharesng_users_on_user_uid` (`user_uid`), KEY `index_nag_sharesng_users_on_perm_2` (`perm_2`), KEY `index_nag_sharesng_users_on_perm_4` (`perm_4`), KEY `index_nag_sharesng_users_on_perm_8` (`perm_8`), KEY `index_nag_sharesng_users_on_perm_16` (`perm_16`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nag_sharesng_users` -- LOCK TABLES `nag_sharesng_users` WRITE; /*!40000 ALTER TABLE `nag_sharesng_users` DISABLE KEYS */; /*!40000 ALTER TABLE `nag_sharesng_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nag_tasks` -- DROP TABLE IF EXISTS `nag_tasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `nag_tasks` ( `task_id` varchar(32) NOT NULL, `task_owner` varchar(255) NOT NULL, `task_creator` varchar(255) NOT NULL, `task_parent` varchar(255) DEFAULT NULL, `task_assignee` varchar(255) DEFAULT NULL, `task_name` varchar(255) NOT NULL, `task_uid` varchar(255) NOT NULL, `task_desc` text DEFAULT NULL, `task_start` int(11) DEFAULT NULL, `task_due` int(11) DEFAULT NULL, `task_priority` int(11) NOT NULL DEFAULT 0, `task_estimate` float DEFAULT NULL, `task_completed` int(1) NOT NULL DEFAULT 0, `task_completed_date` int(11) DEFAULT NULL, `task_alarm` int(11) NOT NULL DEFAULT 0, `task_alarm_methods` text DEFAULT NULL, `task_private` int(1) NOT NULL DEFAULT 0, `task_recurtype` int(11) DEFAULT 0, `task_recurinterval` int(11) DEFAULT NULL, `task_recurdays` int(11) DEFAULT NULL, `task_recurenddate` datetime DEFAULT NULL, `task_recurcount` int(11) DEFAULT NULL, `task_exceptions` text DEFAULT NULL, `task_completions` text DEFAULT NULL, PRIMARY KEY (`task_id`), KEY `index_nag_tasks_on_task_owner` (`task_owner`), KEY `index_nag_tasks_on_task_uid` (`task_uid`), KEY `index_nag_tasks_on_task_start` (`task_start`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nag_tasks` -- LOCK TABLES `nag_tasks` WRITE; /*!40000 ALTER TABLE `nag_tasks` DISABLE KEYS */; /*!40000 ALTER TABLE `nag_tasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rampage_objects` -- DROP TABLE IF EXISTS `rampage_objects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rampage_objects` ( `object_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `object_name` varchar(255) NOT NULL, `type_id` int(10) unsigned NOT NULL, PRIMARY KEY (`object_id`), UNIQUE KEY `rampage_objects_type_object_name` (`type_id`,`object_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rampage_objects` -- LOCK TABLES `rampage_objects` WRITE; /*!40000 ALTER TABLE `rampage_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `rampage_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rampage_tag_stats` -- DROP TABLE IF EXISTS `rampage_tag_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rampage_tag_stats` ( `tag_id` int(10) unsigned NOT NULL, `count` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`tag_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rampage_tag_stats` -- LOCK TABLES `rampage_tag_stats` WRITE; /*!40000 ALTER TABLE `rampage_tag_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `rampage_tag_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rampage_tagged` -- DROP TABLE IF EXISTS `rampage_tagged`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rampage_tagged` ( `user_id` int(10) unsigned NOT NULL, `object_id` int(10) unsigned NOT NULL, `tag_id` int(10) unsigned NOT NULL, `created` datetime DEFAULT NULL, PRIMARY KEY (`user_id`,`object_id`,`tag_id`), KEY `rampage_tagged_object_id` (`object_id`), KEY `rampage_tagged_tag_id` (`tag_id`), KEY `rampage_tagged_created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rampage_tagged` -- LOCK TABLES `rampage_tagged` WRITE; /*!40000 ALTER TABLE `rampage_tagged` DISABLE KEYS */; /*!40000 ALTER TABLE `rampage_tagged` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rampage_tags` -- DROP TABLE IF EXISTS `rampage_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rampage_tags` ( `tag_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `tag_name` varchar(255) NOT NULL, PRIMARY KEY (`tag_id`), UNIQUE KEY `rampage_tags_tag_name` (`tag_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rampage_tags` -- LOCK TABLES `rampage_tags` WRITE; /*!40000 ALTER TABLE `rampage_tags` DISABLE KEYS */; /*!40000 ALTER TABLE `rampage_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rampage_types` -- DROP TABLE IF EXISTS `rampage_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rampage_types` ( `type_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `type_name` varchar(255) NOT NULL, PRIMARY KEY (`type_id`), UNIQUE KEY `rampage_objects_type_name` (`type_name`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rampage_types` -- LOCK TABLES `rampage_types` WRITE; /*!40000 ALTER TABLE `rampage_types` DISABLE KEYS */; INSERT INTO `rampage_types` VALUES (1,'calendar'), (3,'contact'), (2,'event'), (5,'note'), (4,'task'); /*!40000 ALTER TABLE `rampage_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rampage_user_tag_stats` -- DROP TABLE IF EXISTS `rampage_user_tag_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rampage_user_tag_stats` ( `user_id` int(10) unsigned NOT NULL, `tag_id` int(10) unsigned NOT NULL, `count` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`user_id`,`tag_id`), KEY `rampage_user_tag_stats_tag_id` (`tag_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rampage_user_tag_stats` -- LOCK TABLES `rampage_user_tag_stats` WRITE; /*!40000 ALTER TABLE `rampage_user_tag_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `rampage_user_tag_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rampage_users` -- DROP TABLE IF EXISTS `rampage_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rampage_users` ( `user_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_name` varchar(255) NOT NULL, PRIMARY KEY (`user_id`), UNIQUE KEY `rampage_users_user_name` (`user_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rampage_users` -- LOCK TABLES `rampage_users` WRITE; /*!40000 ALTER TABLE `rampage_users` DISABLE KEYS */; /*!40000 ALTER TABLE `rampage_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `turba_objects` -- DROP TABLE IF EXISTS `turba_objects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `turba_objects` ( `object_id` varchar(32) NOT NULL, `owner_id` varchar(255) NOT NULL, `object_type` varchar(255) NOT NULL DEFAULT 'Object', `object_uid` varchar(255) DEFAULT NULL, `object_members` text DEFAULT NULL, `object_firstname` varchar(255) DEFAULT NULL, `object_lastname` varchar(255) DEFAULT NULL, `object_middlenames` varchar(255) DEFAULT NULL, `object_nameprefix` varchar(32) DEFAULT NULL, `object_namesuffix` varchar(32) DEFAULT NULL, `object_alias` varchar(32) DEFAULT NULL, `object_photo` longblob DEFAULT NULL, `object_phototype` varchar(10) DEFAULT NULL, `object_bday` varchar(10) DEFAULT NULL, `object_homestreet` varchar(255) DEFAULT NULL, `object_homepob` varchar(10) DEFAULT NULL, `object_homecity` varchar(255) DEFAULT NULL, `object_homeprovince` varchar(255) DEFAULT NULL, `object_homepostalcode` varchar(10) DEFAULT NULL, `object_homecountry` varchar(255) DEFAULT NULL, `object_workstreet` varchar(255) DEFAULT NULL, `object_workpob` varchar(10) DEFAULT NULL, `object_workcity` varchar(255) DEFAULT NULL, `object_workprovince` varchar(255) DEFAULT NULL, `object_workpostalcode` varchar(10) DEFAULT NULL, `object_workcountry` varchar(255) DEFAULT NULL, `object_tz` varchar(32) DEFAULT NULL, `object_geo` varchar(255) DEFAULT NULL, `object_email` varchar(255) DEFAULT NULL, `object_homephone` varchar(25) DEFAULT NULL, `object_workphone` varchar(25) DEFAULT NULL, `object_cellphone` varchar(25) DEFAULT NULL, `object_fax` varchar(25) DEFAULT NULL, `object_pager` varchar(25) DEFAULT NULL, `object_title` varchar(255) DEFAULT NULL, `object_role` varchar(255) DEFAULT NULL, `object_logo` longblob DEFAULT NULL, `object_logotype` varchar(10) DEFAULT NULL, `object_company` varchar(255) DEFAULT NULL, `object_notes` text DEFAULT NULL, `object_url` varchar(255) DEFAULT NULL, `object_freebusyurl` varchar(255) DEFAULT NULL, `object_pgppublickey` text DEFAULT NULL, `object_smimepublickey` text DEFAULT NULL, `object_anniversary` varchar(10) DEFAULT NULL, `object_department` varchar(255) DEFAULT NULL, `object_spouse` varchar(255) DEFAULT NULL, `object_homefax` varchar(25) DEFAULT NULL, `object_nickname` varchar(255) DEFAULT NULL, `object_assistantphone` varchar(25) DEFAULT NULL, `object_imaddress` varchar(255) DEFAULT NULL, `object_imaddress2` varchar(255) DEFAULT NULL, `object_imaddress3` varchar(255) DEFAULT NULL, `object_homephone2` varchar(25) DEFAULT NULL, `object_carphone` varchar(25) DEFAULT NULL, `object_workphone2` varchar(25) DEFAULT NULL, `object_radiophone` varchar(25) DEFAULT NULL, `object_companyphone` varchar(25) DEFAULT NULL, `object_otherstreet` varchar(255) DEFAULT NULL, `object_otherpob` varchar(10) DEFAULT NULL, `object_othercity` varchar(255) DEFAULT NULL, `object_otherprovince` varchar(255) DEFAULT NULL, `object_otherpostalcode` varchar(10) DEFAULT NULL, `object_othercountry` varchar(255) DEFAULT NULL, `object_yomifirstname` varchar(255) DEFAULT NULL, `object_yomilastname` varchar(255) DEFAULT NULL, `object_manager` varchar(255) DEFAULT NULL, `object_assistant` varchar(255) DEFAULT NULL, `object_workemail` varchar(255) DEFAULT NULL, `object_homeemail` varchar(255) DEFAULT NULL, PRIMARY KEY (`object_id`), KEY `index_turba_objects_on_owner_id` (`owner_id`), KEY `index_turba_objects_on_object_email` (`object_email`), KEY `index_turba_objects_on_object_firstname` (`object_firstname`), KEY `index_turba_objects_on_object_lastname` (`object_lastname`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `turba_objects` -- LOCK TABLES `turba_objects` WRITE; /*!40000 ALTER TABLE `turba_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `turba_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `turba_schema_info` -- DROP TABLE IF EXISTS `turba_schema_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `turba_schema_info` ( `version` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `turba_schema_info` -- LOCK TABLES `turba_schema_info` WRITE; /*!40000 ALTER TABLE `turba_schema_info` DISABLE KEYS */; INSERT INTO `turba_schema_info` VALUES (11); /*!40000 ALTER TABLE `turba_schema_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `turba_shares` -- DROP TABLE IF EXISTS `turba_shares`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `turba_shares` ( `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) NOT NULL, `share_flags` int(11) NOT NULL DEFAULT 0, `perm_creator` int(11) NOT NULL DEFAULT 0, `perm_default` int(11) NOT NULL DEFAULT 0, `perm_guest` int(11) NOT NULL DEFAULT 0, `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, `attribute_params` text DEFAULT NULL, `share_parents` varchar(4000) DEFAULT NULL, PRIMARY KEY (`share_id`), KEY `index_turba_shares_on_share_name` (`share_name`), KEY `index_turba_shares_on_share_owner` (`share_owner`), KEY `index_turba_shares_on_perm_creator` (`perm_creator`), KEY `index_turba_shares_on_perm_default` (`perm_default`), KEY `index_turba_shares_on_perm_guest` (`perm_guest`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `turba_shares` -- LOCK TABLES `turba_shares` WRITE; /*!40000 ALTER TABLE `turba_shares` DISABLE KEYS */; INSERT INTO `turba_shares` VALUES (1,'SZQgIc4oasIk8URcbneDUOA','admin@mamweb.at',0,0,0,0,'Address book of admin@mamweb.at',NULL,'a:3:{s:6:\"source\";s:8:\"localsql\";s:7:\"default\";b:1;s:4:\"name\";s:15:\"admin@mamweb.at\";}',NULL); /*!40000 ALTER TABLE `turba_shares` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `turba_shares_groups` -- DROP TABLE IF EXISTS `turba_shares_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `turba_shares_groups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `index_turba_shares_groups_on_share_id` (`share_id`), KEY `index_turba_shares_groups_on_group_uid` (`group_uid`), KEY `index_turba_shares_groups_on_perm` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `turba_shares_groups` -- LOCK TABLES `turba_shares_groups` WRITE; /*!40000 ALTER TABLE `turba_shares_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `turba_shares_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `turba_shares_users` -- DROP TABLE IF EXISTS `turba_shares_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `turba_shares_users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `index_turba_shares_users_on_share_id` (`share_id`), KEY `index_turba_shares_users_on_user_uid` (`user_uid`), KEY `index_turba_shares_users_on_perm` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `turba_shares_users` -- LOCK TABLES `turba_shares_users` WRITE; /*!40000 ALTER TABLE `turba_shares_users` DISABLE KEYS */; /*!40000 ALTER TABLE `turba_shares_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `turba_sharesng` -- DROP TABLE IF EXISTS `turba_sharesng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `turba_sharesng` ( `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) DEFAULT NULL, `share_flags` int(11) NOT NULL DEFAULT 0, `perm_creator_2` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_4` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_8` tinyint(1) NOT NULL DEFAULT 0, `perm_creator_16` tinyint(1) NOT NULL DEFAULT 0, `perm_default_2` tinyint(1) NOT NULL DEFAULT 0, `perm_default_4` tinyint(1) NOT NULL DEFAULT 0, `perm_default_8` tinyint(1) NOT NULL DEFAULT 0, `perm_default_16` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_2` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_4` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_8` tinyint(1) NOT NULL DEFAULT 0, `perm_guest_16` tinyint(1) NOT NULL DEFAULT 0, `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, `attribute_params` text DEFAULT NULL, `share_parents` varchar(4000) DEFAULT NULL, PRIMARY KEY (`share_id`), KEY `index_turba_sharesng_on_share_name` (`share_name`), KEY `index_turba_sharesng_on_share_owner` (`share_owner`), KEY `index_turba_sharesng_on_perm_creator_2` (`perm_creator_2`), KEY `index_turba_sharesng_on_perm_creator_4` (`perm_creator_4`), KEY `index_turba_sharesng_on_perm_creator_8` (`perm_creator_8`), KEY `index_turba_sharesng_on_perm_creator_16` (`perm_creator_16`), KEY `index_turba_sharesng_on_perm_default_2` (`perm_default_2`), KEY `index_turba_sharesng_on_perm_default_4` (`perm_default_4`), KEY `index_turba_sharesng_on_perm_default_8` (`perm_default_8`), KEY `index_turba_sharesng_on_perm_default_16` (`perm_default_16`), KEY `index_turba_sharesng_on_perm_guest_2` (`perm_guest_2`), KEY `index_turba_sharesng_on_perm_guest_4` (`perm_guest_4`), KEY `index_turba_sharesng_on_perm_guest_8` (`perm_guest_8`), KEY `index_turba_sharesng_on_perm_guest_16` (`perm_guest_16`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `turba_sharesng` -- LOCK TABLES `turba_sharesng` WRITE; /*!40000 ALTER TABLE `turba_sharesng` DISABLE KEYS */; /*!40000 ALTER TABLE `turba_sharesng` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `turba_sharesng_groups` -- DROP TABLE IF EXISTS `turba_sharesng_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `turba_sharesng_groups` ( `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm_2` tinyint(1) NOT NULL DEFAULT 0, `perm_4` tinyint(1) NOT NULL DEFAULT 0, `perm_8` tinyint(1) NOT NULL DEFAULT 0, `perm_16` tinyint(1) NOT NULL DEFAULT 0, KEY `index_turba_sharesng_groups_on_share_id` (`share_id`), KEY `index_turba_sharesng_groups_on_group_uid` (`group_uid`), KEY `index_turba_sharesng_groups_on_perm_2` (`perm_2`), KEY `index_turba_sharesng_groups_on_perm_4` (`perm_4`), KEY `index_turba_sharesng_groups_on_perm_8` (`perm_8`), KEY `index_turba_sharesng_groups_on_perm_16` (`perm_16`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `turba_sharesng_groups` -- LOCK TABLES `turba_sharesng_groups` WRITE; /*!40000 ALTER TABLE `turba_sharesng_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `turba_sharesng_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `turba_sharesng_users` -- DROP TABLE IF EXISTS `turba_sharesng_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `turba_sharesng_users` ( `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm_2` tinyint(1) NOT NULL DEFAULT 0, `perm_4` tinyint(1) NOT NULL DEFAULT 0, `perm_8` tinyint(1) NOT NULL DEFAULT 0, `perm_16` tinyint(1) NOT NULL DEFAULT 0, KEY `index_turba_sharesng_users_on_share_id` (`share_id`), KEY `index_turba_sharesng_users_on_user_uid` (`user_uid`), KEY `index_turba_sharesng_users_on_perm_2` (`perm_2`), KEY `index_turba_sharesng_users_on_perm_4` (`perm_4`), KEY `index_turba_sharesng_users_on_perm_8` (`perm_8`), KEY `index_turba_sharesng_users_on_perm_16` (`perm_16`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `turba_sharesng_users` -- LOCK TABLES `turba_sharesng_users` WRITE; /*!40000 ALTER TABLE `turba_sharesng_users` DISABLE KEYS */; /*!40000 ALTER TABLE `turba_sharesng_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `joomla_einstein` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `joomla_einstein` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */; USE `joomla_einstein`; -- -- Table structure for table `einstein_banner` -- DROP TABLE IF EXISTS `einstein_banner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_banner` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT 0, `type` varchar(10) NOT NULL DEFAULT 'banner', `name` varchar(50) NOT NULL DEFAULT '', `imptotal` int(11) NOT NULL DEFAULT 0, `impmade` int(11) NOT NULL DEFAULT 0, `clicks` int(11) NOT NULL DEFAULT 0, `imageurl` varchar(100) NOT NULL DEFAULT '', `clickurl` varchar(200) NOT NULL DEFAULT '', `date` datetime DEFAULT NULL, `showBanner` tinyint(1) NOT NULL DEFAULT 0, `checked_out` tinyint(1) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `custombannercode` text DEFAULT NULL, PRIMARY KEY (`bid`), KEY `viewbanner` (`showBanner`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_banner` -- LOCK TABLES `einstein_banner` WRITE; /*!40000 ALTER TABLE `einstein_banner` DISABLE KEYS */; INSERT INTO `einstein_banner` VALUES (1,1,'banner','OSM 1',0,42,0,'osmbanner1.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL), (2,1,'banner','OSM 2',0,48,0,'osmbanner2.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL); /*!40000 ALTER TABLE `einstein_banner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_bannerclient` -- DROP TABLE IF EXISTS `einstein_bannerclient`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_bannerclient` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL DEFAULT '', `contact` varchar(60) NOT NULL DEFAULT '', `email` varchar(60) NOT NULL DEFAULT '', `extrainfo` text NOT NULL, `checked_out` tinyint(1) NOT NULL DEFAULT 0, `checked_out_time` time DEFAULT NULL, `editor` varchar(50) DEFAULT NULL, PRIMARY KEY (`cid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_bannerclient` -- LOCK TABLES `einstein_bannerclient` WRITE; /*!40000 ALTER TABLE `einstein_bannerclient` DISABLE KEYS */; INSERT INTO `einstein_bannerclient` VALUES (1,'Open \r\n\r\nSource Matters','Administrator','admin@opensourcematters.org','',0,'00:00:00',NULL); /*!40000 ALTER TABLE `einstein_bannerclient` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_bannerfinish` -- DROP TABLE IF EXISTS `einstein_bannerfinish`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_bannerfinish` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT 0, `type` varchar(10) NOT NULL DEFAULT '', `name` varchar(50) NOT NULL DEFAULT '', `impressions` int(11) NOT NULL DEFAULT 0, `clicks` int(11) NOT NULL DEFAULT 0, `imageurl` varchar(50) NOT NULL DEFAULT '', `datestart` datetime DEFAULT NULL, `dateend` datetime DEFAULT NULL, PRIMARY KEY (`bid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_bannerfinish` -- LOCK TABLES `einstein_bannerfinish` WRITE; /*!40000 ALTER TABLE `einstein_bannerfinish` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_bannerfinish` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_categories` -- DROP TABLE IF EXISTS `einstein_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT 0, `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `section` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `ordering` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `count` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `cat_idx` (`section`,`published`,`access`), KEY `idx_section` (`section`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_categories` -- LOCK TABLES `einstein_categories` WRITE; /*!40000 ALTER TABLE `einstein_categories` DISABLE KEYS */; INSERT INTO `einstein_categories` VALUES (1,0,'Latest','Latest News','taking_notes.jpg','1','left','The latest news from the Joomla! Team',1,0,'0000-00-00 00:00:00','',0,0,1,''), (2,0,'Joomla!','Joomla!','clock.jpg','com_weblinks','left','A selection of links that are all related to the Joomla! Project.',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''), (3,0,'Newsflash','Newsflash','','2','left','',1,0,'0000-00-00 00:00:00','',0,0,0,''), (4,0,'Joomla!','Joomla!','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''), (5,0,'Business: general','Business: general','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''), (7,0,'Examples','Example FAQs','key.jpg','3','left','Here you will find an example set of FAQs.',1,0,'0000-00-00 00:00:00',NULL,0,0,2,''), (9,0,'Finance','Finance','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,5,0,0,''), (10,0,'Linux','Linux','','com_newsfeeds','left','
\r\n',1,0,'0000-00-00 00:00:00',NULL,6,0,0,''), (11,0,'Internet','Internet','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,7,0,0,''), (12,0,'Contacts','Contacts','','com_contact_details','left','Contact Details for this website',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''); /*!40000 ALTER TABLE `einstein_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_components` -- DROP TABLE IF EXISTS `einstein_components`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_components` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `link` varchar(255) NOT NULL DEFAULT '', `menuid` int(11) unsigned NOT NULL DEFAULT 0, `parent` int(11) unsigned NOT NULL DEFAULT 0, `admin_menu_link` varchar(255) NOT NULL DEFAULT '', `admin_menu_alt` varchar(255) NOT NULL DEFAULT '', `option` varchar(50) NOT NULL DEFAULT '', `ordering` int(11) NOT NULL DEFAULT 0, `admin_menu_img` varchar(255) NOT NULL DEFAULT '', `iscore` tinyint(4) NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_components` -- LOCK TABLES `einstein_components` WRITE; /*!40000 ALTER TABLE `einstein_components` DISABLE KEYS */; INSERT INTO `einstein_components` VALUES (1,'Banners','',0,0,'','Banner Management','com_banners',0,'js/ThemeOffice/component.png',0,''), (2,'Manage Banners','',0,1,'option=com_banners','Active Banners','com_banners',1,'js/ThemeOffice/edit.png',0,''), (3,'Manage Clients','',0,1,'option=com_banners&task=listclients','Manage Clients','com_banners',2,'js/ThemeOffice/categories.png',0,''), (4,'Web Links','option=com_weblinks',0,0,'','Manage Weblinks','com_weblinks',0,'js/ThemeOffice/globe2.png',0,''), (5,'Weblink Items','',0,4,'option=com_weblinks','View existing weblinks','com_weblinks',1,'js/ThemeOffice/edit.png',0,''), (6,'Weblink Categories','',0,4,'option=categories§ion=com_weblinks','Manage weblink categories','',2,'js/ThemeOffice/categories.png',0,''), (7,'Contacts','option=com_contact',0,0,'','Edit contact details','com_contact',0,'js/ThemeOffice/user.png',1,''), (8,'Manage Contacts','',0,7,'option=com_contact','Edit contact details','com_contact',0,'js/ThemeOffice/edit.png',1,''), (9,'Contact Categories','',0,7,'option=categories§ion=com_contact_details','Manage contact categories','',2,'js/ThemeOffice/categories.png',1,''), (10,'FrontPage','option=com_frontpage',0,0,'','Manage Front Page Items','com_frontpage',0,'js/ThemeOffice/component.png',1,''), (11,'Polls','option=com_poll',0,0,'option=com_poll','Manage Polls','com_poll',0,'js/ThemeOffice/component.png',0,''), (12,'News Feeds','option=com_newsfeeds',0,0,'','News Feeds Management','com_newsfeeds',0,'js/ThemeOffice/component.png',0,''), (13,'Manage News Feeds','',0,12,'option=com_newsfeeds','Manage News Feeds','com_newsfeeds',1,'js/ThemeOffice/edit.png',0,''), (14,'Manage Categories','',0,12,'option=com_categories§ion=com_newsfeeds','Manage Categories','',2,'js/ThemeOffice/categories.png',0,''), (15,'Login','option=com_login',0,0,'','','com_login',0,'',1,''), (16,'Search','option=com_search',0,0,'','','com_search',0,'',1,''), (17,'Syndicate','',0,0,'option=com_syndicate&hidemainmenu=1','Manage Syndication Settings','com_syndicate',0,'js/ThemeOffice/component.png',0,''), (18,'Mass Mail','',0,0,'option=com_massmail&hidemainmenu=1','Send Mass Mail','com_massmail',0,'js/ThemeOffice/mass_email.png',0,''); /*!40000 ALTER TABLE `einstein_components` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_contact_details` -- DROP TABLE IF EXISTS `einstein_contact_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_contact_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `con_position` varchar(50) DEFAULT NULL, `address` text DEFAULT NULL, `suburb` varchar(50) DEFAULT NULL, `state` varchar(20) DEFAULT NULL, `country` varchar(50) DEFAULT NULL, `postcode` varchar(10) DEFAULT NULL, `telephone` varchar(25) DEFAULT NULL, `fax` varchar(25) DEFAULT NULL, `misc` mediumtext DEFAULT NULL, `image` varchar(100) DEFAULT NULL, `imagepos` varchar(20) DEFAULT NULL, `email_to` varchar(100) DEFAULT NULL, `default_con` tinyint(1) unsigned NOT NULL DEFAULT 0, `published` tinyint(1) unsigned NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, `user_id` int(11) NOT NULL DEFAULT 0, `catid` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_contact_details` -- LOCK TABLES `einstein_contact_details` WRITE; /*!40000 ALTER TABLE `einstein_contact_details` DISABLE KEYS */; INSERT INTO `einstein_contact_details` VALUES (1,'Name','Position','Street','Suburb','State','Country','Zip Code','Telephone','Fax','Miscellanous info','asterisk.png','top','email@email.com',1,1,0,'0000-00-00 00:00:00',1,'',0,12,0); /*!40000 ALTER TABLE `einstein_contact_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_content` -- DROP TABLE IF EXISTS `einstein_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_content` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `title_alias` varchar(100) NOT NULL DEFAULT '', `introtext` mediumtext NOT NULL, `fulltext` mediumtext NOT NULL, `state` tinyint(3) NOT NULL DEFAULT 0, `sectionid` int(11) unsigned NOT NULL DEFAULT 0, `mask` int(11) unsigned NOT NULL DEFAULT 0, `catid` int(11) unsigned NOT NULL DEFAULT 0, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(11) unsigned NOT NULL DEFAULT 0, `created_by_alias` varchar(100) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(11) unsigned NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `images` text NOT NULL, `urls` text NOT NULL, `attribs` text NOT NULL, `version` int(11) unsigned NOT NULL DEFAULT 1, `parentid` int(11) unsigned NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, `metakey` text NOT NULL, `metadesc` text NOT NULL, `access` int(11) unsigned NOT NULL DEFAULT 0, `hits` int(11) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `idx_section` (`sectionid`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`state`), KEY `idx_catid` (`catid`), KEY `idx_mask` (`mask`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_content` -- LOCK TABLES `einstein_content` WRITE; /*!40000 ALTER TABLE `einstein_content` DISABLE KEYS */; INSERT INTO `einstein_content` VALUES (1,'Welcome to Joomla!','Welcome','If you\'ve read \r\n\r\nanything at all about Content Management Systems (CMS), you\'ll probably know at least three things: CMS are the most exciting way to do business, \r\n\r\nCMS can be really, I mean really, complicated and lastly Portals are absolutely, outrageously, often unaffordably expensive.

{mosimage}Joomla! is set to change all that ... Joomla! is different from the normal models for portal software. For a start, it\'s not \r\n\r\ncomplicated. Joomla! has been developed for the masses. It\'s licensed under the GNU/GPL license, easy to install and administer and reliable. \r\n\r\nJoomla! doesn\'t even require the user or administrator of the system to know HTML to operate it once it\'s up and running.','

Joomla! features:

\r\n\r\r\n\r\n\n

Extensive Administration:

\r\n',1,1,0,1,'2004-06-12 11:54:06',62,'Web Master','2004-06-12 12:33:27',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','asterisk.png|left|Joomla! Logo|1|Example Caption|bottom|center|120','','',1,0,1,'','',0,0), (2,'Newsflash 1','','Joomla! 1.0 - \'Experience the Freedom\'!. It has never been easier to create\r\nyour own dynamic site. Manage all your \r\n\r\ncontent from the best CMS admin\r\ninterface.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,1,'','',0,0), (3,'Newsflash 2','','Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the \r\n\r\nneed for better RAM was due to some fool increasing the front-side bus speed. In future, busses will be told to slow down in residential \r\n\r\nmotherboards.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,2,'','',0,0), (4,'Newsflash 3','','Aoccdrnig to a rscheearch at an Elingsh uinervtisy, it deosn\'t mttaer in waht oredr the ltteers in a wrod are, the olny \r\n\r\niprmoetnt tihng is taht frist and lsat ltteer is at the rghit pclae. The rset can be a toatl mses and you can sitll raed it wouthit porbelm. Tihs is \r\n\r\nbcuseae we do not raed ervey lteter by itslef but the wrod as a wlohe.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,3,'','',0,1), (5,'Joomla! License Guidelines','','

This website is powered by Joomla! The software and default \r\n\r\ntemplates on which it runs are Copyright 2005 Open Source Matters. All other content and data, \r\n\r\nincluding data entered into this website and templates added after installation, are copyrighted by their respective copyright owners.

If you \r\n\r\nwant to distribute, copy or modify Joomla!, you are welcome to do so under the terms of the GNU \r\n\r\nGeneral Public License. If you are unfamiliar with this license, you might want to read \'How To Apply These Terms To Your Program\' and the \'GNU General Public License FAQ\'.

','',1,0,0,0,'2004-08-19 20:11:07',62,'','2004-08-19 20:14:49',62,0,'0000-00-00 00:00:00','2004-08-19 00:00:00','0000-00-00 00:00:00','','','menu_image=\nitem_title=1\npageclass_sfx=\nback_button=\nrating=\nauthor=\r\n\r\n\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=',1,0,11,'','',0,11), (6,'Example News Item 1','News1','{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no \r\n\r\nsea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum.','

{mosimage}\r\n\r\nDuis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero \r\n\r\neros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum \r\n\r\ndolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n\r\n\r\n

Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\r\n\r\n\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et \r\n\r\naccumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

Nam \r\n\r\nliber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit \r\n\r\namet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\n\r\n\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum \r\n\r\niriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et \r\n\r\njusto duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, \r\n\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et \r\n\r\naccusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor \r\n\r\nsit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt \r\n\r\njusto labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem \r\n\r\nipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\r\n\r\n\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\r\n\r\n\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum \r\n\r\ndolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam \r\n\r\nvoluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor \r\n\r\nsit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam \r\n\r\nerat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem \r\n\r\nipsum dolor sit amet.

',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:05:05',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/coffee.jpg|left||0\r\nfood/bread.jpg|right||0','','',1,0,2,'','',0,4), (7,'Example News Item 2','News2','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no \r\n\r\nsea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd \r\n\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy \r\n\r\neirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet \r\n\r\nclita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:11:30',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/bun.jpg|right||0','','',1,0,3,'','',0,2), (8,'Example News Item 3','News3','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no \r\n\r\nsea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd \r\n\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy \r\n\r\neirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet \r\n\r\nclita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,1,0,1,'2004-04-12 11:54:06',62,'','2004-07-07 18:08:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/pears.jpg|right||0','','',1,0,4,'','',0,1), (9,'Example News Item 4','News4','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et \r\n\r\ndolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, \r\n\r\nno sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse \r\n\r\nmolestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\r\n\r\n\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh \r\n\r\neuismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n{mospagebreak}

{mosimage}Ut wisi enim ad minim veniam, quis nostrud \r\n\r\nexerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate \r\n\r\nvelit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit \r\n\r\npraesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend \r\n\r\noption congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed \r\n\r\ndiam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation \r\n\r\nullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\r\n\r\n\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita \r\n\r\nkasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam \r\n\r\nnonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea \r\n\r\nrebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing \r\n\r\nelitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et \r\n\r\ngubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\r\n\r\n\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n{mospagebreak}\r\n\r\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos \r\n\r\net accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor \r\n\r\nsit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At \r\n\r\nvero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem \r\n\r\nipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam \r\n\r\nvoluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor \r\n\r\nsit amet.

',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/strawberry.jpg|left||0\r\nfruit/pears.jpg|right||0\r\nfruit/cherry.jpg|left||0','','',1,0,5,'','',0,6), (10,'Example FAQ Item 1','FAQ1','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et \r\n\r\ndolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, \r\n\r\nno sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,3,0,7,'2004-05-12 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','','','',1,0,5,'','',0,8), (11,'Example FAQ Item 2','FAQ2','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et \r\n\r\ndolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, \r\n\r\nno sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse \r\n\r\nmolestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\r\n\r\n\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh \r\n\r\neuismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n

{mosimage}Ut wisi enim ad minim veniam, quis nostrud exerci \r\n\r\ntation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit \r\n\r\nesse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent \r\n\r\nluptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend option \r\n\r\ncongue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam \r\n\r\nnonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation \r\n\r\nullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\r\n\r\n\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita \r\n\r\nkasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam \r\n\r\nnonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea \r\n\r\nrebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing \r\n\r\nelitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et \r\n\r\ngubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\r\n\r\n\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n

Consetetur \r\n\r\nsadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et \r\n\r\njusto duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, \r\n\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et \r\n\r\naccusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor \r\n\r\nsit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At \r\n\r\nvero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',1,3,0,7,'2004-05-12 11:54:06',62,'Web master','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','fruit/cherry.jpg|left||0\r\nfruit/peas.jpg|right||0\r\nfood/milk.jpg|left||0','','',1,0,5,'','',0,10); /*!40000 ALTER TABLE `einstein_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_content_frontpage` -- DROP TABLE IF EXISTS `einstein_content_frontpage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_content_frontpage` ( `content_id` int(11) NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_content_frontpage` -- LOCK TABLES `einstein_content_frontpage` WRITE; /*!40000 ALTER TABLE `einstein_content_frontpage` DISABLE KEYS */; INSERT INTO `einstein_content_frontpage` VALUES (1,1), (2,2), (3,3), (4,4), (5,5); /*!40000 ALTER TABLE `einstein_content_frontpage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_content_rating` -- DROP TABLE IF EXISTS `einstein_content_rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_content_rating` ( `content_id` int(11) NOT NULL DEFAULT 0, `rating_sum` int(11) unsigned NOT NULL DEFAULT 0, `rating_count` int(11) unsigned NOT NULL DEFAULT 0, `lastip` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_content_rating` -- LOCK TABLES `einstein_content_rating` WRITE; /*!40000 ALTER TABLE `einstein_content_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_content_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_core_acl_aro` -- DROP TABLE IF EXISTS `einstein_core_acl_aro`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_core_acl_aro` ( `aro_id` int(11) NOT NULL AUTO_INCREMENT, `section_value` varchar(240) NOT NULL DEFAULT '0', `value` varchar(240) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT 0, `name` varchar(255) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`aro_id`), UNIQUE KEY `einstein_gacl_section_value_value_aro` (`section_value`(100),`value`(100)), KEY `einstein_gacl_hidden_aro` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_core_acl_aro` -- LOCK TABLES `einstein_core_acl_aro` WRITE; /*!40000 ALTER TABLE `einstein_core_acl_aro` DISABLE KEYS */; INSERT INTO `einstein_core_acl_aro` VALUES (10,'users','62',0,'Administrator',0); /*!40000 ALTER TABLE `einstein_core_acl_aro` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_core_acl_aro_groups` -- DROP TABLE IF EXISTS `einstein_core_acl_aro_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_core_acl_aro_groups` ( `group_id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT 0, `name` varchar(255) NOT NULL DEFAULT '', `lft` int(11) NOT NULL DEFAULT 0, `rgt` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`group_id`), KEY `parent_id_aro_groups` (`parent_id`), KEY `einstein_gacl_parent_id_aro_groups` (`parent_id`), KEY `einstein_gacl_lft_rgt_aro_groups` (`lft`,`rgt`) ) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_core_acl_aro_groups` -- LOCK TABLES `einstein_core_acl_aro_groups` WRITE; /*!40000 ALTER TABLE `einstein_core_acl_aro_groups` DISABLE KEYS */; INSERT INTO `einstein_core_acl_aro_groups` VALUES (17,0,'ROOT',1,22), (28,17,'USERS',2,21), (29,28,'Public Frontend',3,12), (18,29,'Registered',4,11), (19,18,'Author',5,10), (20,19,'Editor',6,9), (21,20,'Publisher',7,8), (30,28,'Public Backend',13,20), (23,30,'Manager',14,19), (24,23,'Administrator',15,18), (25,24,'Super Administrator',16,17); /*!40000 ALTER TABLE `einstein_core_acl_aro_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_core_acl_aro_sections` -- DROP TABLE IF EXISTS `einstein_core_acl_aro_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_core_acl_aro_sections` ( `section_id` int(11) NOT NULL AUTO_INCREMENT, `value` varchar(230) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT 0, `name` varchar(230) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`section_id`), UNIQUE KEY `value_aro_sections` (`value`), UNIQUE KEY `einstein_gacl_value_aro_sections` (`value`), KEY `hidden_aro_sections` (`hidden`), KEY `einstein_gacl_hidden_aro_sections` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_core_acl_aro_sections` -- LOCK TABLES `einstein_core_acl_aro_sections` WRITE; /*!40000 ALTER TABLE `einstein_core_acl_aro_sections` DISABLE KEYS */; INSERT INTO `einstein_core_acl_aro_sections` VALUES (10,'users',1,'Users',0); /*!40000 ALTER TABLE `einstein_core_acl_aro_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_core_acl_groups_aro_map` -- DROP TABLE IF EXISTS `einstein_core_acl_groups_aro_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_core_acl_groups_aro_map` ( `group_id` int(11) NOT NULL DEFAULT 0, `section_value` varchar(240) NOT NULL DEFAULT '', `aro_id` int(11) NOT NULL DEFAULT 0, UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_core_acl_groups_aro_map` -- LOCK TABLES `einstein_core_acl_groups_aro_map` WRITE; /*!40000 ALTER TABLE `einstein_core_acl_groups_aro_map` DISABLE KEYS */; INSERT INTO `einstein_core_acl_groups_aro_map` VALUES (25,'',10); /*!40000 ALTER TABLE `einstein_core_acl_groups_aro_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_core_log_items` -- DROP TABLE IF EXISTS `einstein_core_log_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_core_log_items` ( `time_stamp` date NOT NULL DEFAULT '0000-00-00', `item_table` varchar(50) NOT NULL DEFAULT '', `item_id` int(11) unsigned NOT NULL DEFAULT 0, `hits` int(11) unsigned NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_core_log_items` -- LOCK TABLES `einstein_core_log_items` WRITE; /*!40000 ALTER TABLE `einstein_core_log_items` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_core_log_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_core_log_searches` -- DROP TABLE IF EXISTS `einstein_core_log_searches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_core_log_searches` ( `search_term` varchar(128) NOT NULL DEFAULT '', `hits` int(11) unsigned NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_core_log_searches` -- LOCK TABLES `einstein_core_log_searches` WRITE; /*!40000 ALTER TABLE `einstein_core_log_searches` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_core_log_searches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_groups` -- DROP TABLE IF EXISTS `einstein_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_groups` ( `id` tinyint(3) unsigned NOT NULL DEFAULT 0, `name` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_groups` -- LOCK TABLES `einstein_groups` WRITE; /*!40000 ALTER TABLE `einstein_groups` DISABLE KEYS */; INSERT INTO `einstein_groups` VALUES (0,'Public'), (1,'Registered'), (2,'Special'); /*!40000 ALTER TABLE `einstein_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_mambots` -- DROP TABLE IF EXISTS `einstein_mambots`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_mambots` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `element` varchar(100) NOT NULL DEFAULT '', `folder` varchar(100) NOT NULL DEFAULT '', `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, `published` tinyint(3) NOT NULL DEFAULT 0, `iscore` tinyint(3) NOT NULL DEFAULT 0, `client_id` tinyint(3) NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_folder` (`published`,`client_id`,`access`,`folder`) ) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_mambots` -- LOCK TABLES `einstein_mambots` WRITE; /*!40000 ALTER TABLE `einstein_mambots` DISABLE KEYS */; INSERT INTO `einstein_mambots` VALUES (1,'MOS Image','mosimage','content',0,-10000,1,1,0,0,'0000-00-00 00:00:00',''), (2,'MOS Pagination','mospaging','content',0,10000,1,1,0,0,'0000-00-00 00:00:00',''), (3,'Legacy Mambot Includer','legacybots','content',0,1,0,1,0,0,'0000-00-00 00:00:00',''), (4,'SEF','mossef','content',0,3,1,0,0,0,'0000-00-00 00:00:00',''), (5,'MOS Rating','mosvote','content',0,4,1,1,0,0,'0000-00-00 00:00:00',''), (6,'Search Content','content.searchbot','search',0,1,1,1,0,0,'0000-00-00 00:00:00',''), (7,'Search Weblinks','weblinks.searchbot','search',0,2,1,1,0,0,'0000-00-00 00:00:00',''), (8,'Code support','moscode','content',0,2,0,0,0,0,'0000-00-00 00:00:00',''), (9,'No WYSIWYG Editor','none','editors',0,0,1,1,0,0,'0000-00-00 00:00:00',''), (10,'TinyMCE WYSIWYG Editor','tinymce','editors',0,0,1,1,0,0,'0000-00-00 00:00:00','theme=advanced'), (11,'MOS Image Editor Button','mosimage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''), (12,'MOS Pagebreak Editor Button','mospage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''), (13,'Search Contacts','contacts.searchbot','search',0,3,1,1,0,0,'0000-00-00 00:00:00',''), (14,'Search Categories','categories.searchbot','search',0,4,1,0,0,0,'0000-00-00 00:00:00',''), (15,'Search Sections','sections.searchbot','search',0,5,1,0,0,0,'0000-00-00 00:00:00',''), (16,'Email Cloaking','mosemailcloak','content',0,5,1,0,0,0,'0000-00-00 00:00:00',''), (17,'GeSHi','geshi','content',0,5,0,0,0,0,'0000-00-00 00:00:00',''), (18,'Search Newsfeeds','newsfeeds.searchbot','search',0,6,1,0,0,0,'0000-00-00 00:00:00',''), (19,'Load Module Positions','mosloadposition','content',0,6,1,0,0,0,'0000-00-00 00:00:00',''); /*!40000 ALTER TABLE `einstein_mambots` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_menu` -- DROP TABLE IF EXISTS `einstein_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `menutype` varchar(25) DEFAULT NULL, `name` varchar(100) DEFAULT NULL, `link` text DEFAULT NULL, `type` varchar(50) NOT NULL DEFAULT '', `published` tinyint(1) NOT NULL DEFAULT 0, `parent` int(11) unsigned NOT NULL DEFAULT 0, `componentid` int(11) unsigned NOT NULL DEFAULT 0, `sublevel` int(11) DEFAULT 0, `ordering` int(11) DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `pollid` int(11) NOT NULL DEFAULT 0, `browserNav` tinyint(4) DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `utaccess` tinyint(3) unsigned NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `componentid` (`componentid`,`menutype`,`published`,`access`), KEY `menutype` (`menutype`) ) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_menu` -- LOCK TABLES `einstein_menu` WRITE; /*!40000 ALTER TABLE `einstein_menu` DISABLE KEYS */; INSERT INTO `einstein_menu` VALUES (1,'mainmenu','Home','index.php?option=com_frontpage','components',1,0,10,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'leading=1\r\nintro=2\r\nlink=1\r\nimage=1\r\npage_title=0\r\nheader=Welcome to \r\n\r\nthe Frontpage\r\norderby_sec=front\r\nprint=0\r\npdf=0\r\nemail=0\r\nback_button=0'), (2,'mainmenu','News','index.php?option=com_content&task=section&id=1','content_section',1,0,1,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''), (3,'mainmenu','Contact Us','index.php?option=com_contact','components',1,0,7,0,6,0,'0000-00-00 00:00:00',0,0,0,3,''), (23,'mainmenu','Links','index.php?option=com_weblinks','components',1,0,4,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=web_links.jpg\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nheadings=1\nhits=\r\n\r\n\nitem_description=1\nother_cat=1\ndescription=1\ndescription_text=\nimage=-1\nimage_align=right\nweblink_icons='), (5,'mainmenu','Search','index.php?option=com_search','components',1,0,16,0,7,0,'0000-00-00 00:00:00',0,0,0,3,''), (6,'mainmenu','Joomla! License','index.php?option=com_content&task=view&id=5','content_typed',1,0,11,0,2,0,'0000-00-00 00:00:00',0,0,0,0,''), (7,'mainmenu','News Feeds','index.php?option=com_newsfeeds','components',1,0,12,0,8,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-\r\n\r\n1\npageclass_sfx=\nback_button=\npage_title=1\nheader='), (8,'mainmenu','Wrapper','index.php?option=com_wrapper','wrapper',1,0,0,0,10,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-\r\n\r\n1\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nscrolling=auto\nwidth=100%\nheight=600\nheight_auto=0\nurl=www.joomla.org'), (9,'mainmenu','Blog','index.php?option=com_content&task=blogsection&id=0','content_blog_section',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=A blog of all section with no images\r\n\r\n\npage_title=1\nleading=0\nintro=6\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\r\n\r\n\npagination=2\npagination_results=1\nimage=0\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\r\n\r\n\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nsectionid='), (10,'othermenu','Joomla! Home','http://www.joomla.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''), (11,'othermenu','Joomla! Forums','http://forum.joomla.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''), (12,'othermenu','OSM Home','http://www.opensourcematters.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''), (24,'othermenu','Administrator','administrator/','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'), (21,'usermenu','Your Details','index.php?option=com_user&task=UserDetails','url',1,0,0,0,1,0,'2000-00-00 00:00:00',0,0,1,3,''), (13,'usermenu','Submit News','index.php?option=com_content&task=new§ionid=1&Itemid=0','url',1,0,0,0,2,0,'2000-00-00 00:00:00',0,0,1,2,''), (14,'usermenu','Submit WebLink','index.php?option=com_weblinks&task=new','url',1,0,0,0,4,0,'2000-00-00 00:00:00',0,0,1,2,''), (15,'usermenu','Check-In My Items','index.php?option=com_user&task=CheckIn','url',1,0,0,0,5,0,'0000-00-00 00:00:00',0,0,1,2,''), (16,'usermenu','Logout','index.php?option=com_login','components',1,0,15,0,5,0,'0000-00-00 00:00:00',0,0,1,3,''), (17,'topmenu','Home','index.php','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''), (18,'topmenu','Contact Us','index.php?option=com_contact&Itemid=3','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''), (19,'topmenu','News','index.php?option=com_content&task=section&id=1&Itemid=2','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''), (20,'topmenu','Links','index.php?option=com_weblinks&Itemid=23','url',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'), (25,'mainmenu','FAQs','index.php?option=com_content&task=category§ionid=3&id=7','content_category',1,0,7,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npage_title=1\npageclass_sfx=\nback_button=\norderby=\ndate_format=\ndate=\nauthor=\ntitle=1\nhits=\r\n\r\n\nheadings=1\nnavigation=1\norder_select=1\ndisplay=1\ndisplay_num=50\nfilter=1\nfilter_type=title\r\n\r\n\nother_cat=1\nempty_cat=0\ncat_items=1\ncat_description=1'); /*!40000 ALTER TABLE `einstein_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_messages` -- DROP TABLE IF EXISTS `einstein_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_messages` ( `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id_from` int(10) unsigned NOT NULL DEFAULT 0, `user_id_to` int(10) unsigned NOT NULL DEFAULT 0, `folder_id` int(10) unsigned NOT NULL DEFAULT 0, `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `state` int(11) NOT NULL DEFAULT 0, `priority` int(1) unsigned NOT NULL DEFAULT 0, `subject` varchar(230) NOT NULL DEFAULT '', `message` text NOT NULL, PRIMARY KEY (`message_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_messages` -- LOCK TABLES `einstein_messages` WRITE; /*!40000 ALTER TABLE `einstein_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_messages_cfg` -- DROP TABLE IF EXISTS `einstein_messages_cfg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_messages_cfg` ( `user_id` int(10) unsigned NOT NULL DEFAULT 0, `cfg_name` varchar(100) NOT NULL DEFAULT '', `cfg_value` varchar(255) NOT NULL DEFAULT '', UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_messages_cfg` -- LOCK TABLES `einstein_messages_cfg` WRITE; /*!40000 ALTER TABLE `einstein_messages_cfg` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_messages_cfg` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_modules` -- DROP TABLE IF EXISTS `einstein_modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_modules` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, `content` text NOT NULL, `ordering` int(11) NOT NULL DEFAULT 0, `position` varchar(10) DEFAULT NULL, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT 0, `module` varchar(50) DEFAULT NULL, `numnews` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `showtitle` tinyint(3) unsigned NOT NULL DEFAULT 1, `params` text NOT NULL, `iscore` tinyint(4) NOT NULL DEFAULT 0, `client_id` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `published` (`published`,`access`), KEY `newsfeeds` (`module`,`published`) ) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_modules` -- LOCK TABLES `einstein_modules` WRITE; /*!40000 ALTER TABLE `einstein_modules` DISABLE KEYS */; INSERT INTO `einstein_modules` VALUES (1,'Polls','',1,'right',0,'0000-00-00 00:00:00',1,'mod_poll',0,0,1,'',0,0), (2,'User Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,1,1,'menutype=usermenu',1,0), (3,'Main Menu','',1,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=mainmenu',1,0), (4,'Login Form','',3,'left',0,'0000-00-00 00:00:00',1,'mod_login',0,0,1,'',1,0), (5,'Syndicate','',4,'left',0,'0000-00-00 00:00:00',1,'mod_rssfeed',0,0,1,'',1,0), (6,'Latest News','',4,'user1',0,'0000-00-00 00:00:00',1,'mod_latestnews',0,0,1,'',1,0), (7,'Statistics','',4,'left',0,'0000-00-00 00:00:00',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0), (8,'Who\'s Online','',1,'right',0,'0000-00-00 00:00:00',1,'mod_whosonline',0,0,1,'online=1\nusers=1\nmoduleclass_sfx=',0,0), (9,'Popular','',6,'user2',0,'0000-00-00 00:00:00',1,'mod_mostread',0,0,1,'',0,0), (10,'Template Chooser','',6,'left',0,'0000-00-00 00:00:00',0,'mod_templatechooser',0,0,1,'show_preview=1',0,0), (11,'Archive','',7,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'',1,0), (12,'Sections','',8,'left',0,'0000-00-00 00:00:00',0,'mod_sections',0,0,1,'',1,0), (13,'Newsflash','',1,'top',0,'0000-00-00 00:00:00',1,'mod_newsflash',0,0,1,'catid=3\r\nstyle=random\r\nitems=\r\nmoduleclass_sfx=',0,0), (14,'Related Items','',9,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0), (15,'Search','',1,'user4',0,'0000-00-00 00:00:00',1,'mod_search',0,0,0,'',0,0), (16,'Random Image','',9,'right',0,'0000-00-00 00:00:00',1,'mod_random_image',0,0,1,'',0,0), (17,'Top Menu','',1,'user3',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=topmenu\nmenu_style=list_flat\nmenu_images=n\r\n\r\n\nmenu_images_align=left\nexpand_menu=n\nclass_sfx=-nav\nmoduleclass_sfx=\r\n\r\n\nindent_image1=0\nindent_image2=0\nindent_image3=0\nindent_image4=0\nindent_image5=0\nindent_image6=0',1,0), (18,'Banners','',1,'banner',0,'0000-00-00 00:00:00',1,'mod_banners',0,0,0,'banner_cids=\nmoduleclass_sfx=\n',1,0), (19,'Components','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_components',0,99,1,'',1,1), (20,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,99,1,'',0,1), (21,'Latest Items','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,99,1,'',0,1), (22,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,99,1,'',0,1), (23,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,99,1,'',1,1), (24,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,99,1,'',1,1), (25,'Full Menu','',1,'top',0,'0000-00-00 00:00:00',1,'mod_fullmenu',0,99,1,'',1,1), (26,'Pathway','',1,'pathway',0,'0000-00-00 00:00:00',1,'mod_pathway',0,99,1,'',1,1), (27,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,99,1,'',1,1), (28,'System Message','',1,'inset',0,'0000-00-00 00:00:00',1,'mod_mosmsg',0,99,1,'',1,1), (29,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,99,1,'',1,1), (30,'Other Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=othermenu\nmenu_style=vert_indent\r\n\r\n\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nclass_sfx=\nmoduleclass_sfx=\nindent_image=0\nindent_image1=\nindent_image2=\r\n\r\n\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=',0,0), (31,'Wrapper','',10,'left',0,'0000-00-00 00:00:00',0,'mod_wrapper',0,0,1,'',0,0), (32,'Logged','',0,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,99,1,'',0,1); /*!40000 ALTER TABLE `einstein_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_modules_menu` -- DROP TABLE IF EXISTS `einstein_modules_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_modules_menu` ( `moduleid` int(11) NOT NULL DEFAULT 0, `menuid` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`moduleid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_modules_menu` -- LOCK TABLES `einstein_modules_menu` WRITE; /*!40000 ALTER TABLE `einstein_modules_menu` DISABLE KEYS */; INSERT INTO `einstein_modules_menu` VALUES (1,1), (2,0), (3,0), (4,1), (5,1), (6,1), (6,2), (6,4), (6,27), (6,36), (8,1), (9,1), (9,2), (9,4), (9,27), (9,36), (10,1), (13,0), (15,0), (17,0), (18,0), (30,0); /*!40000 ALTER TABLE `einstein_modules_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_newsfeeds` -- DROP TABLE IF EXISTS `einstein_newsfeeds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_newsfeeds` ( `catid` int(11) NOT NULL DEFAULT 0, `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `link` text NOT NULL, `filename` varchar(200) DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `numarticles` int(11) unsigned NOT NULL DEFAULT 1, `cache_time` int(11) unsigned NOT NULL DEFAULT 3600, `checked_out` tinyint(3) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `published` (`published`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_newsfeeds` -- LOCK TABLES `einstein_newsfeeds` WRITE; /*!40000 ALTER TABLE `einstein_newsfeeds` DISABLE KEYS */; INSERT INTO `einstein_newsfeeds` VALUES (4,1,'Joomla! - Official News','http://www.joomla.org/index.php?\r\n\r\noption=com_rss_xtd&feed=RSS2.0&type=com_frontpage&Itemid=1','',1,5,3600,0,'0000-00-00 00:00:00',8), (4,2,'Joomla! - Community News','http://www.joomla.org/index.php?\r\n\r\noption=com_rss_xtd&feed=RSS2.0&type=com_content&task=blogcategory&id=0&Itemid=33','',1,5,3600,0,'0000-00-00 00:00:00',9), (4,3,'OpenSourceMatters','http://www.opensourcematters.org/index2.php?option=com_rss&feed=RSS2.0&no_html=1','',1,5,3600,0,'0000-00-00 00:00:00',10), (10,4,'Linux Today','http://linuxtoday.com/backend/my-netscape.rdf','',1,3,3600,0,'0000-00-00 00:00:00',1), (5,5,'Business News','http://headlines.internet.com/internetnews/bus-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',2), (11,6,'Web Developer News','http://headlines.internet.com/internetnews/wd-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',3), (10,7,'Linux Central:New Products','http://linuxcentral.com/backend/lcnew.rdf','',1,3,3600,0,'0000-00-00 00:00:00',4), (10,8,'Linux Central:Best Selling','http://linuxcentral.com/backend/lcbestns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',5), (10,9,'Linux Central:Daily Specials','http://linuxcentral.com/backend/lcspecialns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',6), (9,10,'Internet:Finance News','http://headlines.internet.com/internetnews/fina-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',7); /*!40000 ALTER TABLE `einstein_newsfeeds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_poll_data` -- DROP TABLE IF EXISTS `einstein_poll_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_poll_data` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pollid` int(4) NOT NULL DEFAULT 0, `text` text NOT NULL, `hits` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `pollid` (`pollid`,`text`(1)) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_poll_data` -- LOCK TABLES `einstein_poll_data` WRITE; /*!40000 ALTER TABLE `einstein_poll_data` DISABLE KEYS */; INSERT INTO `einstein_poll_data` VALUES (1,14,'Absolutely simple',1), (2,14,'Reasonably easy',0), (3,14,'Not straight-forward but I worked it out',0), (4,14,'I had to install extra server stuff',0), (5,14,'I had no idea and got my friend to do it',0), (6,14,'My dog ran away with the README ...',0), (7,14,'',0), (8,14,'',0), (9,14,'',0), (10,14,'',0), (11,14,'',0), (12,14,'',0); /*!40000 ALTER TABLE `einstein_poll_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_poll_date` -- DROP TABLE IF EXISTS `einstein_poll_date`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_poll_date` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `vote_id` int(11) NOT NULL DEFAULT 0, `poll_id` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_poll_date` -- LOCK TABLES `einstein_poll_date` WRITE; /*!40000 ALTER TABLE `einstein_poll_date` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_poll_date` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_poll_menu` -- DROP TABLE IF EXISTS `einstein_poll_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_poll_menu` ( `pollid` int(11) NOT NULL DEFAULT 0, `menuid` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`pollid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_poll_menu` -- LOCK TABLES `einstein_poll_menu` WRITE; /*!40000 ALTER TABLE `einstein_poll_menu` DISABLE KEYS */; INSERT INTO `einstein_poll_menu` VALUES (14,1); /*!40000 ALTER TABLE `einstein_poll_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_polls` -- DROP TABLE IF EXISTS `einstein_polls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_polls` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `voters` int(9) NOT NULL DEFAULT 0, `checked_out` int(11) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT 0, `access` int(11) NOT NULL DEFAULT 0, `lag` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_polls` -- LOCK TABLES `einstein_polls` WRITE; /*!40000 ALTER TABLE `einstein_polls` DISABLE KEYS */; INSERT INTO `einstein_polls` VALUES (14,'This Joomla! \r\n\r\ninstallation was ....',0,0,'2000-00-00 00:00:00',1,0,86400); /*!40000 ALTER TABLE `einstein_polls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_sections` -- DROP TABLE IF EXISTS `einstein_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_sections` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `scope` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `count` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_scope` (`scope`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_sections` -- LOCK TABLES `einstein_sections` WRITE; /*!40000 ALTER TABLE `einstein_sections` DISABLE KEYS */; INSERT INTO `einstein_sections` VALUES (1,'News','The News','articles.jpg','content','right','Select a news topic \r\n\r\nfrom the list below, then select a news article to read.',1,0,'0000-00-00 00:00:00',1,0,1,''), (2,'Newsflashes','Newsflashes','','content','left','',1,0,'0000-00-00 00:00:00',2,0,1,''), (3,'FAQs','Frequently Asked Questions','pastarchives.jpg','content','left','From the list below choose one of our FAQs topics, then select an \r\n\r\nFAQ to read. If you have a question which is not in this section, please contact us.',1,0,'0000-00-00 00:00:00',2,0,1,''); /*!40000 ALTER TABLE `einstein_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_session` -- DROP TABLE IF EXISTS `einstein_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_session` ( `username` varchar(50) DEFAULT '', `time` varchar(14) DEFAULT '', `session_id` varchar(200) NOT NULL DEFAULT '0', `guest` tinyint(4) DEFAULT 1, `userid` int(11) DEFAULT 0, `usertype` varchar(50) DEFAULT '', `gid` tinyint(3) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`session_id`), KEY `whosonline` (`guest`,`usertype`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_session` -- LOCK TABLES `einstein_session` WRITE; /*!40000 ALTER TABLE `einstein_session` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_stats_agents` -- DROP TABLE IF EXISTS `einstein_stats_agents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_stats_agents` ( `agent` varchar(255) NOT NULL DEFAULT '', `type` tinyint(1) unsigned NOT NULL DEFAULT 0, `hits` int(11) unsigned NOT NULL DEFAULT 1 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_stats_agents` -- LOCK TABLES `einstein_stats_agents` WRITE; /*!40000 ALTER TABLE `einstein_stats_agents` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_stats_agents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_template_positions` -- DROP TABLE IF EXISTS `einstein_template_positions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_template_positions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `position` varchar(10) NOT NULL DEFAULT '', `description` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_template_positions` -- LOCK TABLES `einstein_template_positions` WRITE; /*!40000 ALTER TABLE `einstein_template_positions` DISABLE KEYS */; INSERT INTO `einstein_template_positions` VALUES (1,'left',''), (2,'right',''), (3,'top',''), (4,'bottom',''), (5,'inset',''), (6,'banner',''), (7,'header',''), (8,'footer',''), (9,'newsflash',''), (10,'legals',''), (11,'pathway',''), (12,'toolbar',''), (13,'cpanel',''), (14,'user1',''), (15,'user2',''), (16,'user3',''), (17,'user4',''), (18,'user5',''), (19,'user6',''), (20,'user7',''), (21,'user8',''), (22,'user9',''), (23,'advert1',''), (24,'advert2',''), (25,'advert3',''), (26,'icon',''), (27,'debug',''); /*!40000 ALTER TABLE `einstein_template_positions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_templates_menu` -- DROP TABLE IF EXISTS `einstein_templates_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_templates_menu` ( `template` varchar(50) NOT NULL DEFAULT '', `menuid` int(11) NOT NULL DEFAULT 0, `client_id` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`template`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_templates_menu` -- LOCK TABLES `einstein_templates_menu` WRITE; /*!40000 ALTER TABLE `einstein_templates_menu` DISABLE KEYS */; INSERT INTO `einstein_templates_menu` VALUES ('owtweb_einstein',0,0), ('joomla_admin',0,1); /*!40000 ALTER TABLE `einstein_templates_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_users` -- DROP TABLE IF EXISTS `einstein_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `username` varchar(25) NOT NULL DEFAULT '', `email` varchar(100) NOT NULL DEFAULT '', `password` varchar(100) NOT NULL DEFAULT '', `usertype` varchar(25) NOT NULL DEFAULT '', `block` tinyint(4) NOT NULL DEFAULT 0, `sendEmail` tinyint(4) DEFAULT 0, `gid` tinyint(3) unsigned NOT NULL DEFAULT 1, `registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `activation` varchar(100) NOT NULL DEFAULT '', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `usertype` (`usertype`), KEY `idx_name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=63 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_users` -- LOCK TABLES `einstein_users` WRITE; /*!40000 ALTER TABLE `einstein_users` DISABLE KEYS */; INSERT INTO `einstein_users` VALUES (62,'Administrator','admin','mam@heimam.at','5a9361b28ee51795f1e82d9054919034','Super \r\n\r\nAdministrator',0,1,25,'2006-06-04 21:35:31','2007-04-04 21:09:14','',''); /*!40000 ALTER TABLE `einstein_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_usertypes` -- DROP TABLE IF EXISTS `einstein_usertypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_usertypes` ( `id` tinyint(3) unsigned NOT NULL DEFAULT 0, `name` varchar(50) NOT NULL DEFAULT '', `mask` varchar(11) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_usertypes` -- LOCK TABLES `einstein_usertypes` WRITE; /*!40000 ALTER TABLE `einstein_usertypes` DISABLE KEYS */; INSERT INTO `einstein_usertypes` VALUES (0,'superadministrator',''), (1,'administrator',''), (2,'editor',''), (3,'user',''), (4,'author',''), (5,'publisher',''), (6,'manager',''); /*!40000 ALTER TABLE `einstein_usertypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_weblinks` -- DROP TABLE IF EXISTS `einstein_weblinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_weblinks` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `catid` int(11) NOT NULL DEFAULT 0, `sid` int(11) NOT NULL DEFAULT 0, `title` varchar(250) NOT NULL DEFAULT '', `url` varchar(250) NOT NULL DEFAULT '', `description` varchar(250) NOT NULL DEFAULT '', `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `hits` int(11) NOT NULL DEFAULT 0, `published` tinyint(1) NOT NULL DEFAULT 0, `checked_out` int(11) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `archived` tinyint(1) NOT NULL DEFAULT 0, `approved` tinyint(1) NOT NULL DEFAULT 1, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `catid` (`catid`,`published`,`archived`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_weblinks` -- LOCK TABLES `einstein_weblinks` WRITE; /*!40000 ALTER TABLE `einstein_weblinks` DISABLE KEYS */; INSERT INTO `einstein_weblinks` VALUES (1,2,0,'Joomla!','http://www.joomla.org','Home of Joomla!','0000-00-00 00:00:00',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'), (2,2,0,'php.net','http://www.php.net','The language that Joomla! is developed in','2004-07-07 11:33:24',0,1,0,'0000-00-00 00:00:00',3,0,1,''), (3,2,0,'MySQL','http://www.mysql.com','The database that Joomla! uses','2004-07-07 10:18:31',0,1,0,'0000-00-00 00:00:00',5,0,1,''), (4,2,0,'OpenSourceMatters','http://www.opensourcematters.org','Home of OSM','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'), (5,2,0,'Joomla! - Forums','http://forum.joomla.org','Joomla! Forums','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'); /*!40000 ALTER TABLE `einstein_weblinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `joomla_mamfm` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `joomla_mamfm` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */; USE `joomla_mamfm`; -- -- Table structure for table `mamfm_banner` -- DROP TABLE IF EXISTS `mamfm_banner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_banner` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT 0, `type` varchar(10) NOT NULL DEFAULT 'banner', `name` varchar(50) NOT NULL DEFAULT '', `imptotal` int(11) NOT NULL DEFAULT 0, `impmade` int(11) NOT NULL DEFAULT 0, `clicks` int(11) NOT NULL DEFAULT 0, `imageurl` varchar(100) NOT NULL DEFAULT '', `clickurl` varchar(200) NOT NULL DEFAULT '', `date` datetime DEFAULT NULL, `showBanner` tinyint(1) NOT NULL DEFAULT 0, `checked_out` tinyint(1) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `custombannercode` text DEFAULT NULL, PRIMARY KEY (`bid`), KEY `viewbanner` (`showBanner`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_banner` -- LOCK TABLES `mamfm_banner` WRITE; /*!40000 ALTER TABLE `mamfm_banner` DISABLE KEYS */; INSERT INTO `mamfm_banner` VALUES (1,1,'banner','OSM 1',0,42,0,'osmbanner1.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL), (2,1,'banner','OSM 2',0,49,0,'osmbanner2.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL); /*!40000 ALTER TABLE `mamfm_banner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_bannerclient` -- DROP TABLE IF EXISTS `mamfm_bannerclient`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_bannerclient` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL DEFAULT '', `contact` varchar(60) NOT NULL DEFAULT '', `email` varchar(60) NOT NULL DEFAULT '', `extrainfo` text NOT NULL, `checked_out` tinyint(1) NOT NULL DEFAULT 0, `checked_out_time` time DEFAULT NULL, `editor` varchar(50) DEFAULT NULL, PRIMARY KEY (`cid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_bannerclient` -- LOCK TABLES `mamfm_bannerclient` WRITE; /*!40000 ALTER TABLE `mamfm_bannerclient` DISABLE KEYS */; INSERT INTO `mamfm_bannerclient` VALUES (1,'Open \r\n\r\nSource Matters','Administrator','admin@opensourcematters.org','',0,'00:00:00',NULL); /*!40000 ALTER TABLE `mamfm_bannerclient` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_bannerfinish` -- DROP TABLE IF EXISTS `mamfm_bannerfinish`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_bannerfinish` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT 0, `type` varchar(10) NOT NULL DEFAULT '', `name` varchar(50) NOT NULL DEFAULT '', `impressions` int(11) NOT NULL DEFAULT 0, `clicks` int(11) NOT NULL DEFAULT 0, `imageurl` varchar(50) NOT NULL DEFAULT '', `datestart` datetime DEFAULT NULL, `dateend` datetime DEFAULT NULL, PRIMARY KEY (`bid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_bannerfinish` -- LOCK TABLES `mamfm_bannerfinish` WRITE; /*!40000 ALTER TABLE `mamfm_bannerfinish` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_bannerfinish` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_categories` -- DROP TABLE IF EXISTS `mamfm_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT 0, `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `section` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `ordering` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `count` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `cat_idx` (`section`,`published`,`access`), KEY `idx_section` (`section`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_categories` -- LOCK TABLES `mamfm_categories` WRITE; /*!40000 ALTER TABLE `mamfm_categories` DISABLE KEYS */; INSERT INTO `mamfm_categories` VALUES (1,0,'Latest','Latest News','taking_notes.jpg','1','left','The \r\n\r\nlatest news from the Joomla! Team',1,0,'0000-00-00 00:00:00','',0,0,1,''), (2,0,'Joomla!','Joomla!','clock.jpg','com_weblinks','left','A selection of links that are all related to the Joomla! Project.',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''), (3,0,'Newsflash','Newsflash','','2','left','',1,0,'0000-00-00 00:00:00','',0,0,0,''), (4,0,'Joomla!','Joomla!','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''), (5,0,'Business: general','Business: general','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''), (7,0,'Examples','Example FAQs','key.jpg','3','left','Here you will find an example set of FAQs.',1,0,'0000-00-00 00:00:00',NULL,0,0,2,''), (9,0,'Finance','Finance','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,5,0,0,''), (10,0,'Linux','Linux','','com_newsfeeds','left','
\r\n',1,0,'0000-00-00 00:00:00',NULL,6,0,0,''), (11,0,'Internet','Internet','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,7,0,0,''), (12,0,'Contacts','Contacts','','com_contact_details','left','Contact Details for this website',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''); /*!40000 ALTER TABLE `mamfm_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_components` -- DROP TABLE IF EXISTS `mamfm_components`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_components` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `link` varchar(255) NOT NULL DEFAULT '', `menuid` int(11) unsigned NOT NULL DEFAULT 0, `parent` int(11) unsigned NOT NULL DEFAULT 0, `admin_menu_link` varchar(255) NOT NULL DEFAULT '', `admin_menu_alt` varchar(255) NOT NULL DEFAULT '', `option` varchar(50) NOT NULL DEFAULT '', `ordering` int(11) NOT NULL DEFAULT 0, `admin_menu_img` varchar(255) NOT NULL DEFAULT '', `iscore` tinyint(4) NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_components` -- LOCK TABLES `mamfm_components` WRITE; /*!40000 ALTER TABLE `mamfm_components` DISABLE KEYS */; INSERT INTO `mamfm_components` VALUES (1,'Banners','',0,0,'','Banner Management','com_banners',0,'js/ThemeOffice/component.png',0,''), (2,'Manage Banners','',0,1,'option=com_banners','Active Banners','com_banners',1,'js/ThemeOffice/edit.png',0,''), (3,'Manage Clients','',0,1,'option=com_banners&task=listclients','Manage Clients','com_banners',2,'js/ThemeOffice/categories.png',0,''), (4,'Web Links','option=com_weblinks',0,0,'','Manage Weblinks','com_weblinks',0,'js/ThemeOffice/globe2.png',0,''), (5,'Weblink Items','',0,4,'option=com_weblinks','View existing weblinks','com_weblinks',1,'js/ThemeOffice/edit.png',0,''), (6,'Weblink Categories','',0,4,'option=categories§ion=com_weblinks','Manage weblink categories','',2,'js/ThemeOffice/categories.png',0,''), (7,'Contacts','option=com_contact',0,0,'','Edit contact details','com_contact',0,'js/ThemeOffice/user.png',1,''), (8,'Manage Contacts','',0,7,'option=com_contact','Edit contact details','com_contact',0,'js/ThemeOffice/edit.png',1,''), (9,'Contact Categories','',0,7,'option=categories§ion=com_contact_details','Manage contact categories','',2,'js/ThemeOffice/categories.png',1,''), (10,'FrontPage','option=com_frontpage',0,0,'','Manage Front Page Items','com_frontpage',0,'js/ThemeOffice/component.png',1,''), (11,'Polls','option=com_poll',0,0,'option=com_poll','Manage Polls','com_poll',0,'js/ThemeOffice/component.png',0,''), (12,'News Feeds','option=com_newsfeeds',0,0,'','News Feeds Management','com_newsfeeds',0,'js/ThemeOffice/component.png',0,''), (13,'Manage News Feeds','',0,12,'option=com_newsfeeds','Manage News Feeds','com_newsfeeds',1,'js/ThemeOffice/edit.png',0,''), (14,'Manage Categories','',0,12,'option=com_categories§ion=com_newsfeeds','Manage Categories','',2,'js/ThemeOffice/categories.png',0,''), (15,'Login','option=com_login',0,0,'','','com_login',0,'',1,''), (16,'Search','option=com_search',0,0,'','','com_search',0,'',1,''), (17,'Syndicate','',0,0,'option=com_syndicate&hidemainmenu=1','Manage Syndication Settings','com_syndicate',0,'js/ThemeOffice/component.png',0,''), (18,'Mass Mail','',0,0,'option=com_massmail&hidemainmenu=1','Send Mass Mail','com_massmail',0,'js/ThemeOffice/mass_email.png',0,''); /*!40000 ALTER TABLE `mamfm_components` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_contact_details` -- DROP TABLE IF EXISTS `mamfm_contact_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_contact_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `con_position` varchar(50) DEFAULT NULL, `address` text DEFAULT NULL, `suburb` varchar(50) DEFAULT NULL, `state` varchar(20) DEFAULT NULL, `country` varchar(50) DEFAULT NULL, `postcode` varchar(10) DEFAULT NULL, `telephone` varchar(25) DEFAULT NULL, `fax` varchar(25) DEFAULT NULL, `misc` mediumtext DEFAULT NULL, `image` varchar(100) DEFAULT NULL, `imagepos` varchar(20) DEFAULT NULL, `email_to` varchar(100) DEFAULT NULL, `default_con` tinyint(1) unsigned NOT NULL DEFAULT 0, `published` tinyint(1) unsigned NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, `user_id` int(11) NOT NULL DEFAULT 0, `catid` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_contact_details` -- LOCK TABLES `mamfm_contact_details` WRITE; /*!40000 ALTER TABLE `mamfm_contact_details` DISABLE KEYS */; INSERT INTO `mamfm_contact_details` VALUES (1,'Name','Position','Street','Suburb','State','Country','Zip Code','Telephone','Fax','Miscellanous info','asterisk.png','top','email@email.com',1,1,0,'0000-00-00 00:00:00',1,'',0,12,0); /*!40000 ALTER TABLE `mamfm_contact_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_content` -- DROP TABLE IF EXISTS `mamfm_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_content` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `title_alias` varchar(100) NOT NULL DEFAULT '', `introtext` mediumtext NOT NULL, `fulltext` mediumtext NOT NULL, `state` tinyint(3) NOT NULL DEFAULT 0, `sectionid` int(11) unsigned NOT NULL DEFAULT 0, `mask` int(11) unsigned NOT NULL DEFAULT 0, `catid` int(11) unsigned NOT NULL DEFAULT 0, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(11) unsigned NOT NULL DEFAULT 0, `created_by_alias` varchar(100) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(11) unsigned NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `images` text NOT NULL, `urls` text NOT NULL, `attribs` text NOT NULL, `version` int(11) unsigned NOT NULL DEFAULT 1, `parentid` int(11) unsigned NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, `metakey` text NOT NULL, `metadesc` text NOT NULL, `access` int(11) unsigned NOT NULL DEFAULT 0, `hits` int(11) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `idx_section` (`sectionid`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`state`), KEY `idx_catid` (`catid`), KEY `idx_mask` (`mask`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_content` -- LOCK TABLES `mamfm_content` WRITE; /*!40000 ALTER TABLE `mamfm_content` DISABLE KEYS */; INSERT INTO `mamfm_content` VALUES (1,'Welcome to Joomla!','Welcome','If you\'ve read anything at \r\n\r\nall about Content Management Systems (CMS), you\'ll probably know at least three things: CMS are the most exciting way to do business, CMS can be \r\n\r\nreally, I mean really, complicated and lastly Portals are absolutely, outrageously, often unaffordably expensive.

\r\n\r\n{mosimage}Joomla! is set to change all that ... Joomla! is different from the normal models for portal software. For a start, it\'s not complicated. \r\n\r\nJoomla! has been developed for the masses. It\'s licensed under the GNU/GPL license, easy to install and administer and reliable. Joomla! doesn\'t \r\n\r\neven require the user or administrator of the system to know HTML to operate it once it\'s up and running.','

Joomla! \r\n\r\nfeatures:

\r\n\r\n

Extensive Administration:

\r\r\n\r\n\n',1,1,0,1,'2004-06-12 11:54:06',62,'Web Master','2004-06-12 12:33:27',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','asterisk.png|left|Joomla! Logo|1|Example Caption|bottom|center|120','','',1,0,1,'','',0,0), (2,'Newsflash 1','','Joomla! 1.0 - \'Experience the Freedom\'!. It has never been easier to create\r\nyour own dynamic site. Manage all your \r\n\r\ncontent from the best CMS admin\r\ninterface.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,1,'','',0,0), (3,'Newsflash 2','','Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the \r\n\r\nneed for better RAM was due to some fool increasing the front-side bus speed. In future, busses will be told to slow down in residential \r\n\r\nmotherboards.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,2,'','',0,0), (4,'Newsflash 3','','Aoccdrnig to a rscheearch at an Elingsh uinervtisy, it deosn\'t mttaer in waht oredr the ltteers in a wrod are, the olny \r\n\r\niprmoetnt tihng is taht frist and lsat ltteer is at the rghit pclae. The rset can be a toatl mses and you can sitll raed it wouthit porbelm. Tihs is \r\n\r\nbcuseae we do not raed ervey lteter by itslef but the wrod as a wlohe.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,3,'','',0,1), (5,'Joomla! License Guidelines','','

This website is powered by Joomla! The software and default \r\n\r\ntemplates on which it runs are Copyright 2005 Open Source Matters. All other content and data, \r\n\r\nincluding data entered into this website and templates added after installation, are copyrighted by their respective copyright owners.

If you \r\n\r\nwant to distribute, copy or modify Joomla!, you are welcome to do so under the terms of the GNU \r\n\r\nGeneral Public License. If you are unfamiliar with this license, you might want to read \'How To Apply These Terms To Your Program\' and the \'GNU General Public License FAQ\'.

','',1,0,0,0,'2004-08-19 20:11:07',62,'','2004-08-19 20:14:49',62,0,'0000-00-00 00:00:00','2004-08-19 00:00:00','0000-00-00 00:00:00','','','menu_image=\nitem_title=1\npageclass_sfx=\nback_button=\nrating=\nauthor=\r\n\r\n\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=',1,0,11,'','',0,10), (6,'Example News Item 1','News1','{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no \r\n\r\nsea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum.','

{mosimage}\r\n\r\nDuis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero \r\n\r\neros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum \r\n\r\ndolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n\r\n\r\n

Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\r\n\r\n\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et \r\n\r\naccumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

Nam \r\n\r\nliber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit \r\n\r\namet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\n\r\n\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum \r\n\r\niriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et \r\n\r\njusto duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, \r\n\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et \r\n\r\naccusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor \r\n\r\nsit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt \r\n\r\njusto labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem \r\n\r\nipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\r\n\r\n\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\r\n\r\n\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum \r\n\r\ndolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam \r\n\r\nvoluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor \r\n\r\nsit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam \r\n\r\nerat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem \r\n\r\nipsum dolor sit amet.

',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:05:05',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/coffee.jpg|left||0\r\nfood/bread.jpg|right||0','','',1,0,2,'','',0,4), (7,'Example News Item 2','News2','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no \r\n\r\nsea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd \r\n\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy \r\n\r\neirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet \r\n\r\nclita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:11:30',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/bun.jpg|right||0','','',1,0,3,'','',0,2), (8,'Example News Item 3','News3','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no \r\n\r\nsea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd \r\n\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy \r\n\r\neirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet \r\n\r\nclita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,1,0,1,'2004-04-12 11:54:06',62,'','2004-07-07 18:08:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/pears.jpg|right||0','','',1,0,4,'','',0,1), (9,'Example News Item 4','News4','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et \r\n\r\ndolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, \r\n\r\nno sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse \r\n\r\nmolestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\r\n\r\n\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh \r\n\r\neuismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n{mospagebreak}

{mosimage}Ut wisi enim ad minim veniam, quis nostrud \r\n\r\nexerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate \r\n\r\nvelit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit \r\n\r\npraesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend \r\n\r\noption congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed \r\n\r\ndiam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation \r\n\r\nullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\r\n\r\n\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita \r\n\r\nkasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam \r\n\r\nnonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea \r\n\r\nrebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing \r\n\r\nelitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et \r\n\r\ngubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\r\n\r\n\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n{mospagebreak}\r\n\r\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos \r\n\r\net accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor \r\n\r\nsit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At \r\n\r\nvero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem \r\n\r\nipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam \r\n\r\nvoluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor \r\n\r\nsit amet.

',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/strawberry.jpg|left||0\r\nfruit/pears.jpg|right||0\r\nfruit/cherry.jpg|left||0','','',1,0,5,'','',0,6), (10,'Example FAQ Item 1','FAQ1','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et \r\n\r\ndolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, \r\n\r\nno sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,3,0,7,'2004-05-12 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','','','',1,0,5,'','',0,8), (11,'Example FAQ Item 2','FAQ2','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et \r\n\r\ndolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, \r\n\r\nno sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse \r\n\r\nmolestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\r\n\r\n\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh \r\n\r\neuismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n

{mosimage}Ut wisi enim ad minim veniam, quis nostrud exerci \r\n\r\ntation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit \r\n\r\nesse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent \r\n\r\nluptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend option \r\n\r\ncongue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam \r\n\r\nnonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation \r\n\r\nullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\r\n\r\n\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita \r\n\r\nkasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam \r\n\r\nnonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea \r\n\r\nrebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing \r\n\r\nelitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et \r\n\r\ngubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\r\n\r\n\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n

Consetetur \r\n\r\nsadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et \r\n\r\njusto duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, \r\n\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et \r\n\r\naccusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor \r\n\r\nsit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At \r\n\r\nvero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',1,3,0,7,'2004-05-12 11:54:06',62,'Web master','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','fruit/cherry.jpg|left||0\r\nfruit/peas.jpg|right||0\r\nfood/milk.jpg|left||0','','',1,0,5,'','',0,10); /*!40000 ALTER TABLE `mamfm_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_content_frontpage` -- DROP TABLE IF EXISTS `mamfm_content_frontpage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_content_frontpage` ( `content_id` int(11) NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_content_frontpage` -- LOCK TABLES `mamfm_content_frontpage` WRITE; /*!40000 ALTER TABLE `mamfm_content_frontpage` DISABLE KEYS */; INSERT INTO `mamfm_content_frontpage` VALUES (1,1), (2,2), (3,3), (4,4), (5,5); /*!40000 ALTER TABLE `mamfm_content_frontpage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_content_rating` -- DROP TABLE IF EXISTS `mamfm_content_rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_content_rating` ( `content_id` int(11) NOT NULL DEFAULT 0, `rating_sum` int(11) unsigned NOT NULL DEFAULT 0, `rating_count` int(11) unsigned NOT NULL DEFAULT 0, `lastip` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_content_rating` -- LOCK TABLES `mamfm_content_rating` WRITE; /*!40000 ALTER TABLE `mamfm_content_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_content_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_core_acl_aro` -- DROP TABLE IF EXISTS `mamfm_core_acl_aro`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_core_acl_aro` ( `aro_id` int(11) NOT NULL AUTO_INCREMENT, `section_value` varchar(240) NOT NULL DEFAULT '0', `value` varchar(240) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT 0, `name` varchar(255) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`aro_id`), UNIQUE KEY `mamfm_gacl_section_value_value_aro` (`section_value`(100),`value`(100)), KEY `mamfm_gacl_hidden_aro` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_core_acl_aro` -- LOCK TABLES `mamfm_core_acl_aro` WRITE; /*!40000 ALTER TABLE `mamfm_core_acl_aro` DISABLE KEYS */; INSERT INTO `mamfm_core_acl_aro` VALUES (10,'users','62',0,'Administrator',0); /*!40000 ALTER TABLE `mamfm_core_acl_aro` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_core_acl_aro_groups` -- DROP TABLE IF EXISTS `mamfm_core_acl_aro_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_core_acl_aro_groups` ( `group_id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT 0, `name` varchar(255) NOT NULL DEFAULT '', `lft` int(11) NOT NULL DEFAULT 0, `rgt` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`group_id`), KEY `parent_id_aro_groups` (`parent_id`), KEY `mamfm_gacl_parent_id_aro_groups` (`parent_id`), KEY `mamfm_gacl_lft_rgt_aro_groups` (`lft`,`rgt`) ) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_core_acl_aro_groups` -- LOCK TABLES `mamfm_core_acl_aro_groups` WRITE; /*!40000 ALTER TABLE `mamfm_core_acl_aro_groups` DISABLE KEYS */; INSERT INTO `mamfm_core_acl_aro_groups` VALUES (17,0,'ROOT',1,22), (28,17,'USERS',2,21), (29,28,'Public Frontend',3,12), (18,29,'Registered',4,11), (19,18,'Author',5,10), (20,19,'Editor',6,9), (21,20,'Publisher',7,8), (30,28,'Public Backend',13,20), (23,30,'Manager',14,19), (24,23,'Administrator',15,18), (25,24,'Super Administrator',16,17); /*!40000 ALTER TABLE `mamfm_core_acl_aro_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_core_acl_aro_sections` -- DROP TABLE IF EXISTS `mamfm_core_acl_aro_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_core_acl_aro_sections` ( `section_id` int(11) NOT NULL AUTO_INCREMENT, `value` varchar(230) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT 0, `name` varchar(230) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`section_id`), UNIQUE KEY `value_aro_sections` (`value`), UNIQUE KEY `mamfm_gacl_value_aro_sections` (`value`), KEY `hidden_aro_sections` (`hidden`), KEY `mamfm_gacl_hidden_aro_sections` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_core_acl_aro_sections` -- LOCK TABLES `mamfm_core_acl_aro_sections` WRITE; /*!40000 ALTER TABLE `mamfm_core_acl_aro_sections` DISABLE KEYS */; INSERT INTO `mamfm_core_acl_aro_sections` VALUES (10,'users',1,'Users',0); /*!40000 ALTER TABLE `mamfm_core_acl_aro_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_core_acl_groups_aro_map` -- DROP TABLE IF EXISTS `mamfm_core_acl_groups_aro_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_core_acl_groups_aro_map` ( `group_id` int(11) NOT NULL DEFAULT 0, `section_value` varchar(240) NOT NULL DEFAULT '', `aro_id` int(11) NOT NULL DEFAULT 0, UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_core_acl_groups_aro_map` -- LOCK TABLES `mamfm_core_acl_groups_aro_map` WRITE; /*!40000 ALTER TABLE `mamfm_core_acl_groups_aro_map` DISABLE KEYS */; INSERT INTO `mamfm_core_acl_groups_aro_map` VALUES (25,'',10); /*!40000 ALTER TABLE `mamfm_core_acl_groups_aro_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_core_log_items` -- DROP TABLE IF EXISTS `mamfm_core_log_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_core_log_items` ( `time_stamp` date NOT NULL DEFAULT '0000-00-00', `item_table` varchar(50) NOT NULL DEFAULT '', `item_id` int(11) unsigned NOT NULL DEFAULT 0, `hits` int(11) unsigned NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_core_log_items` -- LOCK TABLES `mamfm_core_log_items` WRITE; /*!40000 ALTER TABLE `mamfm_core_log_items` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_core_log_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_core_log_searches` -- DROP TABLE IF EXISTS `mamfm_core_log_searches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_core_log_searches` ( `search_term` varchar(128) NOT NULL DEFAULT '', `hits` int(11) unsigned NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_core_log_searches` -- LOCK TABLES `mamfm_core_log_searches` WRITE; /*!40000 ALTER TABLE `mamfm_core_log_searches` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_core_log_searches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_groups` -- DROP TABLE IF EXISTS `mamfm_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_groups` ( `id` tinyint(3) unsigned NOT NULL DEFAULT 0, `name` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_groups` -- LOCK TABLES `mamfm_groups` WRITE; /*!40000 ALTER TABLE `mamfm_groups` DISABLE KEYS */; INSERT INTO `mamfm_groups` VALUES (0,'Public'), (1,'Registered'), (2,'Special'); /*!40000 ALTER TABLE `mamfm_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_mambots` -- DROP TABLE IF EXISTS `mamfm_mambots`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_mambots` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `element` varchar(100) NOT NULL DEFAULT '', `folder` varchar(100) NOT NULL DEFAULT '', `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, `published` tinyint(3) NOT NULL DEFAULT 0, `iscore` tinyint(3) NOT NULL DEFAULT 0, `client_id` tinyint(3) NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_folder` (`published`,`client_id`,`access`,`folder`) ) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_mambots` -- LOCK TABLES `mamfm_mambots` WRITE; /*!40000 ALTER TABLE `mamfm_mambots` DISABLE KEYS */; INSERT INTO `mamfm_mambots` VALUES (1,'MOS Image','mosimage','content',0,-10000,1,1,0,0,'0000-00-00 00:00:00',''), (2,'MOS Pagination','mospaging','content',0,10000,1,1,0,0,'0000-00-00 00:00:00',''), (3,'Legacy Mambot Includer','legacybots','content',0,1,0,1,0,0,'0000-00-00 00:00:00',''), (4,'SEF','mossef','content',0,3,1,0,0,0,'0000-00-00 00:00:00',''), (5,'MOS Rating','mosvote','content',0,4,1,1,0,0,'0000-00-00 00:00:00',''), (6,'Search Content','content.searchbot','search',0,1,1,1,0,0,'0000-00-00 00:00:00',''), (7,'Search Weblinks','weblinks.searchbot','search',0,2,1,1,0,0,'0000-00-00 00:00:00',''), (8,'Code support','moscode','content',0,2,0,0,0,0,'0000-00-00 00:00:00',''), (9,'No WYSIWYG Editor','none','editors',0,0,1,1,0,0,'0000-00-00 00:00:00',''), (10,'TinyMCE WYSIWYG Editor','tinymce','editors',0,0,1,1,0,0,'0000-00-00 00:00:00','theme=advanced'), (11,'MOS Image Editor Button','mosimage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''), (12,'MOS Pagebreak Editor Button','mospage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''), (13,'Search Contacts','contacts.searchbot','search',0,3,1,1,0,0,'0000-00-00 00:00:00',''), (14,'Search Categories','categories.searchbot','search',0,4,1,0,0,0,'0000-00-00 00:00:00',''), (15,'Search Sections','sections.searchbot','search',0,5,1,0,0,0,'0000-00-00 00:00:00',''), (16,'Email Cloaking','mosemailcloak','content',0,5,1,0,0,0,'0000-00-00 00:00:00',''), (17,'GeSHi','geshi','content',0,5,0,0,0,0,'0000-00-00 00:00:00',''), (18,'Search Newsfeeds','newsfeeds.searchbot','search',0,6,1,0,0,0,'0000-00-00 00:00:00',''), (19,'Load Module Positions','mosloadposition','content',0,6,1,0,0,0,'0000-00-00 00:00:00',''); /*!40000 ALTER TABLE `mamfm_mambots` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_menu` -- DROP TABLE IF EXISTS `mamfm_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `menutype` varchar(25) DEFAULT NULL, `name` varchar(100) DEFAULT NULL, `link` text DEFAULT NULL, `type` varchar(50) NOT NULL DEFAULT '', `published` tinyint(1) NOT NULL DEFAULT 0, `parent` int(11) unsigned NOT NULL DEFAULT 0, `componentid` int(11) unsigned NOT NULL DEFAULT 0, `sublevel` int(11) DEFAULT 0, `ordering` int(11) DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `pollid` int(11) NOT NULL DEFAULT 0, `browserNav` tinyint(4) DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `utaccess` tinyint(3) unsigned NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `componentid` (`componentid`,`menutype`,`published`,`access`), KEY `menutype` (`menutype`) ) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_menu` -- LOCK TABLES `mamfm_menu` WRITE; /*!40000 ALTER TABLE `mamfm_menu` DISABLE KEYS */; INSERT INTO `mamfm_menu` VALUES (1,'mainmenu','Home','index.php?option=com_frontpage','components',1,0,10,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'leading=1\r\nintro=2\r\nlink=1\r\nimage=1\r\npage_title=0\r\nheader=Welcome to \r\n\r\nthe Frontpage\r\norderby_sec=front\r\nprint=0\r\npdf=0\r\nemail=0\r\nback_button=0'), (2,'mainmenu','News','index.php?option=com_content&task=section&id=1','content_section',1,0,1,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''), (3,'mainmenu','Contact Us','index.php?option=com_contact','components',1,0,7,0,6,0,'0000-00-00 00:00:00',0,0,0,3,''), (23,'mainmenu','Links','index.php?option=com_weblinks','components',1,0,4,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=web_links.jpg\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nheadings=1\nhits=\r\n\r\n\nitem_description=1\nother_cat=1\ndescription=1\ndescription_text=\nimage=-1\nimage_align=right\nweblink_icons='), (5,'mainmenu','Search','index.php?option=com_search','components',1,0,16,0,7,0,'0000-00-00 00:00:00',0,0,0,3,''), (6,'mainmenu','Joomla! License','index.php?option=com_content&task=view&id=5','content_typed',1,0,11,0,2,0,'0000-00-00 00:00:00',0,0,0,0,''), (7,'mainmenu','News Feeds','index.php?option=com_newsfeeds','components',1,0,12,0,8,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-\r\n\r\n1\npageclass_sfx=\nback_button=\npage_title=1\nheader='), (8,'mainmenu','Wrapper','index.php?option=com_wrapper','wrapper',1,0,0,0,10,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-\r\n\r\n1\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nscrolling=auto\nwidth=100%\nheight=600\nheight_auto=0\nurl=www.joomla.org'), (9,'mainmenu','Blog','index.php?option=com_content&task=blogsection&id=0','content_blog_section',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=A blog of all section with no images\r\n\r\n\npage_title=1\nleading=0\nintro=6\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\r\n\r\n\npagination=2\npagination_results=1\nimage=0\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\r\n\r\n\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nsectionid='), (10,'othermenu','Joomla! Home','http://www.joomla.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''), (11,'othermenu','Joomla! Forums','http://forum.joomla.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''), (12,'othermenu','OSM Home','http://www.opensourcematters.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''), (24,'othermenu','Administrator','administrator/','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'), (21,'usermenu','Your Details','index.php?option=com_user&task=UserDetails','url',1,0,0,0,1,0,'2000-00-00 00:00:00',0,0,1,3,''), (13,'usermenu','Submit News','index.php?option=com_content&task=new§ionid=1&Itemid=0','url',1,0,0,0,2,0,'2000-00-00 00:00:00',0,0,1,2,''), (14,'usermenu','Submit WebLink','index.php?option=com_weblinks&task=new','url',1,0,0,0,4,0,'2000-00-00 00:00:00',0,0,1,2,''), (15,'usermenu','Check-In My Items','index.php?option=com_user&task=CheckIn','url',1,0,0,0,5,0,'0000-00-00 00:00:00',0,0,1,2,''), (16,'usermenu','Logout','index.php?option=com_login','components',1,0,15,0,5,0,'0000-00-00 00:00:00',0,0,1,3,''), (17,'topmenu','Home','index.php','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''), (18,'topmenu','Contact Us','index.php?option=com_contact&Itemid=3','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''), (19,'topmenu','News','index.php?option=com_content&task=section&id=1&Itemid=2','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''), (20,'topmenu','Links','index.php?option=com_weblinks&Itemid=23','url',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'), (25,'mainmenu','FAQs','index.php?option=com_content&task=category§ionid=3&id=7','content_category',1,0,7,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npage_title=1\npageclass_sfx=\nback_button=\norderby=\ndate_format=\ndate=\nauthor=\ntitle=1\nhits=\r\n\r\n\nheadings=1\nnavigation=1\norder_select=1\ndisplay=1\ndisplay_num=50\nfilter=1\nfilter_type=title\r\n\r\n\nother_cat=1\nempty_cat=0\ncat_items=1\ncat_description=1'); /*!40000 ALTER TABLE `mamfm_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_messages` -- DROP TABLE IF EXISTS `mamfm_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_messages` ( `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id_from` int(10) unsigned NOT NULL DEFAULT 0, `user_id_to` int(10) unsigned NOT NULL DEFAULT 0, `folder_id` int(10) unsigned NOT NULL DEFAULT 0, `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `state` int(11) NOT NULL DEFAULT 0, `priority` int(1) unsigned NOT NULL DEFAULT 0, `subject` varchar(230) NOT NULL DEFAULT '', `message` text NOT NULL, PRIMARY KEY (`message_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_messages` -- LOCK TABLES `mamfm_messages` WRITE; /*!40000 ALTER TABLE `mamfm_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_messages_cfg` -- DROP TABLE IF EXISTS `mamfm_messages_cfg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_messages_cfg` ( `user_id` int(10) unsigned NOT NULL DEFAULT 0, `cfg_name` varchar(100) NOT NULL DEFAULT '', `cfg_value` varchar(255) NOT NULL DEFAULT '', UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_messages_cfg` -- LOCK TABLES `mamfm_messages_cfg` WRITE; /*!40000 ALTER TABLE `mamfm_messages_cfg` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_messages_cfg` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_modules` -- DROP TABLE IF EXISTS `mamfm_modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_modules` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, `content` text NOT NULL, `ordering` int(11) NOT NULL DEFAULT 0, `position` varchar(10) DEFAULT NULL, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT 0, `module` varchar(50) DEFAULT NULL, `numnews` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `showtitle` tinyint(3) unsigned NOT NULL DEFAULT 1, `params` text NOT NULL, `iscore` tinyint(4) NOT NULL DEFAULT 0, `client_id` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `published` (`published`,`access`), KEY `newsfeeds` (`module`,`published`) ) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_modules` -- LOCK TABLES `mamfm_modules` WRITE; /*!40000 ALTER TABLE `mamfm_modules` DISABLE KEYS */; INSERT INTO `mamfm_modules` VALUES (1,'Polls','',1,'right',0,'0000-00-00 00:00:00',1,'mod_poll',0,0,1,'',0,0), (2,'User Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,1,1,'menutype=usermenu',1,0), (3,'Main Menu','',1,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=mainmenu',1,0), (4,'Login Form','',3,'left',0,'0000-00-00 00:00:00',1,'mod_login',0,0,1,'',1,0), (5,'Syndicate','',4,'left',0,'0000-00-00 00:00:00',1,'mod_rssfeed',0,0,1,'',1,0), (6,'Latest News','',4,'user1',0,'0000-00-00 00:00:00',1,'mod_latestnews',0,0,1,'',1,0), (7,'Statistics','',4,'left',0,'0000-00-00 00:00:00',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0), (8,'Who\'s Online','',1,'right',0,'0000-00-00 00:00:00',1,'mod_whosonline',0,0,1,'online=1\nusers=1\nmoduleclass_sfx=',0,0), (9,'Popular','',6,'user2',0,'0000-00-00 00:00:00',1,'mod_mostread',0,0,1,'',0,0), (10,'Template Chooser','',6,'left',0,'0000-00-00 00:00:00',0,'mod_templatechooser',0,0,1,'show_preview=1',0,0), (11,'Archive','',7,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'',1,0), (12,'Sections','',8,'left',0,'0000-00-00 00:00:00',0,'mod_sections',0,0,1,'',1,0), (13,'Newsflash','',1,'top',0,'0000-00-00 00:00:00',1,'mod_newsflash',0,0,1,'catid=3\r\nstyle=random\r\nitems=\r\nmoduleclass_sfx=',0,0), (14,'Related Items','',9,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0), (15,'Search','',1,'user4',0,'0000-00-00 00:00:00',1,'mod_search',0,0,0,'',0,0), (16,'Random Image','',9,'right',0,'0000-00-00 00:00:00',1,'mod_random_image',0,0,1,'',0,0), (17,'Top Menu','',1,'user3',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=topmenu\nmenu_style=list_flat\nmenu_images=n\r\n\r\n\nmenu_images_align=left\nexpand_menu=n\nclass_sfx=-nav\nmoduleclass_sfx=\r\n\r\n\nindent_image1=0\nindent_image2=0\nindent_image3=0\nindent_image4=0\nindent_image5=0\nindent_image6=0',1,0), (18,'Banners','',1,'banner',0,'0000-00-00 00:00:00',1,'mod_banners',0,0,0,'banner_cids=\nmoduleclass_sfx=\n',1,0), (19,'Components','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_components',0,99,1,'',1,1), (20,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,99,1,'',0,1), (21,'Latest Items','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,99,1,'',0,1), (22,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,99,1,'',0,1), (23,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,99,1,'',1,1), (24,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,99,1,'',1,1), (25,'Full Menu','',1,'top',0,'0000-00-00 00:00:00',1,'mod_fullmenu',0,99,1,'',1,1), (26,'Pathway','',1,'pathway',0,'0000-00-00 00:00:00',1,'mod_pathway',0,99,1,'',1,1), (27,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,99,1,'',1,1), (28,'System Message','',1,'inset',0,'0000-00-00 00:00:00',1,'mod_mosmsg',0,99,1,'',1,1), (29,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,99,1,'',1,1), (30,'Other Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=othermenu\nmenu_style=vert_indent\r\n\r\n\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nclass_sfx=\nmoduleclass_sfx=\nindent_image=0\nindent_image1=\nindent_image2=\r\n\r\n\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=',0,0), (31,'Wrapper','',10,'left',0,'0000-00-00 00:00:00',0,'mod_wrapper',0,0,1,'',0,0), (32,'Logged','',0,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,99,1,'',0,1); /*!40000 ALTER TABLE `mamfm_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_modules_menu` -- DROP TABLE IF EXISTS `mamfm_modules_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_modules_menu` ( `moduleid` int(11) NOT NULL DEFAULT 0, `menuid` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`moduleid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_modules_menu` -- LOCK TABLES `mamfm_modules_menu` WRITE; /*!40000 ALTER TABLE `mamfm_modules_menu` DISABLE KEYS */; INSERT INTO `mamfm_modules_menu` VALUES (1,1), (2,0), (3,0), (4,1), (5,1), (6,1), (6,2), (6,4), (6,27), (6,36), (8,1), (9,1), (9,2), (9,4), (9,27), (9,36), (10,1), (13,0), (15,0), (17,0), (18,0), (30,0); /*!40000 ALTER TABLE `mamfm_modules_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_newsfeeds` -- DROP TABLE IF EXISTS `mamfm_newsfeeds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_newsfeeds` ( `catid` int(11) NOT NULL DEFAULT 0, `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `link` text NOT NULL, `filename` varchar(200) DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `numarticles` int(11) unsigned NOT NULL DEFAULT 1, `cache_time` int(11) unsigned NOT NULL DEFAULT 3600, `checked_out` tinyint(3) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `published` (`published`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_newsfeeds` -- LOCK TABLES `mamfm_newsfeeds` WRITE; /*!40000 ALTER TABLE `mamfm_newsfeeds` DISABLE KEYS */; INSERT INTO `mamfm_newsfeeds` VALUES (4,1,'Joomla! - Official News','http://www.joomla.org/index.php?\r\n\r\noption=com_rss_xtd&feed=RSS2.0&type=com_frontpage&Itemid=1','',1,5,3600,0,'0000-00-00 00:00:00',8), (4,2,'Joomla! - Community News','http://www.joomla.org/index.php?\r\n\r\noption=com_rss_xtd&feed=RSS2.0&type=com_content&task=blogcategory&id=0&Itemid=33','',1,5,3600,0,'0000-00-00 00:00:00',9), (4,3,'OpenSourceMatters','http://www.opensourcematters.org/index2.php?option=com_rss&feed=RSS2.0&no_html=1','',1,5,3600,0,'0000-00-00 00:00:00',10), (10,4,'Linux Today','http://linuxtoday.com/backend/my-netscape.rdf','',1,3,3600,0,'0000-00-00 00:00:00',1), (5,5,'Business News','http://headlines.internet.com/internetnews/bus-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',2), (11,6,'Web Developer News','http://headlines.internet.com/internetnews/wd-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',3), (10,7,'Linux Central:New Products','http://linuxcentral.com/backend/lcnew.rdf','',1,3,3600,0,'0000-00-00 00:00:00',4), (10,8,'Linux Central:Best Selling','http://linuxcentral.com/backend/lcbestns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',5), (10,9,'Linux Central:Daily Specials','http://linuxcentral.com/backend/lcspecialns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',6), (9,10,'Internet:Finance News','http://headlines.internet.com/internetnews/fina-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',7); /*!40000 ALTER TABLE `mamfm_newsfeeds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_poll_data` -- DROP TABLE IF EXISTS `mamfm_poll_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_poll_data` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pollid` int(4) NOT NULL DEFAULT 0, `text` text NOT NULL, `hits` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `pollid` (`pollid`,`text`(1)) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_poll_data` -- LOCK TABLES `mamfm_poll_data` WRITE; /*!40000 ALTER TABLE `mamfm_poll_data` DISABLE KEYS */; INSERT INTO `mamfm_poll_data` VALUES (1,14,'Absolutely simple',1), (2,14,'Reasonably easy',0), (3,14,'Not straight-forward but I worked it out',0), (4,14,'I had to install extra server stuff',0), (5,14,'I had no idea and got my friend to do it',0), (6,14,'My dog ran away with the README ...',0), (7,14,'',0), (8,14,'',0), (9,14,'',0), (10,14,'',0), (11,14,'',0), (12,14,'',0); /*!40000 ALTER TABLE `mamfm_poll_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_poll_date` -- DROP TABLE IF EXISTS `mamfm_poll_date`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_poll_date` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `vote_id` int(11) NOT NULL DEFAULT 0, `poll_id` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_poll_date` -- LOCK TABLES `mamfm_poll_date` WRITE; /*!40000 ALTER TABLE `mamfm_poll_date` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_poll_date` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_poll_menu` -- DROP TABLE IF EXISTS `mamfm_poll_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_poll_menu` ( `pollid` int(11) NOT NULL DEFAULT 0, `menuid` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`pollid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_poll_menu` -- LOCK TABLES `mamfm_poll_menu` WRITE; /*!40000 ALTER TABLE `mamfm_poll_menu` DISABLE KEYS */; INSERT INTO `mamfm_poll_menu` VALUES (14,1); /*!40000 ALTER TABLE `mamfm_poll_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_polls` -- DROP TABLE IF EXISTS `mamfm_polls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_polls` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `voters` int(9) NOT NULL DEFAULT 0, `checked_out` int(11) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT 0, `access` int(11) NOT NULL DEFAULT 0, `lag` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_polls` -- LOCK TABLES `mamfm_polls` WRITE; /*!40000 ALTER TABLE `mamfm_polls` DISABLE KEYS */; INSERT INTO `mamfm_polls` VALUES (14,'This Joomla! \r\n\r\ninstallation was ....',0,0,'2000-00-00 00:00:00',1,0,86400); /*!40000 ALTER TABLE `mamfm_polls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_sections` -- DROP TABLE IF EXISTS `mamfm_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_sections` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `scope` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `count` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_scope` (`scope`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_sections` -- LOCK TABLES `mamfm_sections` WRITE; /*!40000 ALTER TABLE `mamfm_sections` DISABLE KEYS */; INSERT INTO `mamfm_sections` VALUES (1,'News','The News','articles.jpg','content','right','Select a news topic \r\n\r\nfrom the list below, then select a news article to read.',1,0,'0000-00-00 00:00:00',1,0,1,''), (2,'Newsflashes','Newsflashes','','content','left','',1,0,'0000-00-00 00:00:00',2,0,1,''), (3,'FAQs','Frequently Asked Questions','pastarchives.jpg','content','left','From the list below choose one of our FAQs topics, then select an \r\n\r\nFAQ to read. If you have a question which is not in this section, please contact us.',1,0,'0000-00-00 00:00:00',2,0,1,''); /*!40000 ALTER TABLE `mamfm_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_session` -- DROP TABLE IF EXISTS `mamfm_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_session` ( `username` varchar(50) DEFAULT '', `time` varchar(14) DEFAULT '', `session_id` varchar(200) NOT NULL DEFAULT '0', `guest` tinyint(4) DEFAULT 1, `userid` int(11) DEFAULT 0, `usertype` varchar(50) DEFAULT '', `gid` tinyint(3) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`session_id`), KEY `whosonline` (`guest`,`usertype`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_session` -- LOCK TABLES `mamfm_session` WRITE; /*!40000 ALTER TABLE `mamfm_session` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_stats_agents` -- DROP TABLE IF EXISTS `mamfm_stats_agents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_stats_agents` ( `agent` varchar(255) NOT NULL DEFAULT '', `type` tinyint(1) unsigned NOT NULL DEFAULT 0, `hits` int(11) unsigned NOT NULL DEFAULT 1 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_stats_agents` -- LOCK TABLES `mamfm_stats_agents` WRITE; /*!40000 ALTER TABLE `mamfm_stats_agents` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_stats_agents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_template_positions` -- DROP TABLE IF EXISTS `mamfm_template_positions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_template_positions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `position` varchar(10) NOT NULL DEFAULT '', `description` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_template_positions` -- LOCK TABLES `mamfm_template_positions` WRITE; /*!40000 ALTER TABLE `mamfm_template_positions` DISABLE KEYS */; INSERT INTO `mamfm_template_positions` VALUES (1,'left',''), (2,'right',''), (3,'top',''), (4,'bottom',''), (5,'inset',''), (6,'banner',''), (7,'header',''), (8,'footer',''), (9,'newsflash',''), (10,'legals',''), (11,'pathway',''), (12,'toolbar',''), (13,'cpanel',''), (14,'user1',''), (15,'user2',''), (16,'user3',''), (17,'user4',''), (18,'user5',''), (19,'user6',''), (20,'user7',''), (21,'user8',''), (22,'user9',''), (23,'advert1',''), (24,'advert2',''), (25,'advert3',''), (26,'icon',''), (27,'debug',''); /*!40000 ALTER TABLE `mamfm_template_positions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_templates_menu` -- DROP TABLE IF EXISTS `mamfm_templates_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_templates_menu` ( `template` varchar(50) NOT NULL DEFAULT '', `menuid` int(11) NOT NULL DEFAULT 0, `client_id` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`template`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_templates_menu` -- LOCK TABLES `mamfm_templates_menu` WRITE; /*!40000 ALTER TABLE `mamfm_templates_menu` DISABLE KEYS */; INSERT INTO `mamfm_templates_menu` VALUES ('corporate',0,0), ('joomla_admin',0,1); /*!40000 ALTER TABLE `mamfm_templates_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_users` -- DROP TABLE IF EXISTS `mamfm_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `username` varchar(25) NOT NULL DEFAULT '', `email` varchar(100) NOT NULL DEFAULT '', `password` varchar(100) NOT NULL DEFAULT '', `usertype` varchar(25) NOT NULL DEFAULT '', `block` tinyint(4) NOT NULL DEFAULT 0, `sendEmail` tinyint(4) DEFAULT 0, `gid` tinyint(3) unsigned NOT NULL DEFAULT 1, `registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `activation` varchar(100) NOT NULL DEFAULT '', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `usertype` (`usertype`), KEY `idx_name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=63 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_users` -- LOCK TABLES `mamfm_users` WRITE; /*!40000 ALTER TABLE `mamfm_users` DISABLE KEYS */; INSERT INTO `mamfm_users` VALUES (62,'Administrator','admin','mam@heimam.at','5a9361b28ee51795f1e82d9054919034','Super Administrator',0,1,25,'2006-06-04 21:30:38','2006-06-04 21:44:45','',''); /*!40000 ALTER TABLE `mamfm_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_usertypes` -- DROP TABLE IF EXISTS `mamfm_usertypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_usertypes` ( `id` tinyint(3) unsigned NOT NULL DEFAULT 0, `name` varchar(50) NOT NULL DEFAULT '', `mask` varchar(11) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_usertypes` -- LOCK TABLES `mamfm_usertypes` WRITE; /*!40000 ALTER TABLE `mamfm_usertypes` DISABLE KEYS */; INSERT INTO `mamfm_usertypes` VALUES (0,'superadministrator',''), (1,'administrator',''), (2,'editor',''), (3,'user',''), (4,'author',''), (5,'publisher',''), (6,'manager',''); /*!40000 ALTER TABLE `mamfm_usertypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_weblinks` -- DROP TABLE IF EXISTS `mamfm_weblinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_weblinks` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `catid` int(11) NOT NULL DEFAULT 0, `sid` int(11) NOT NULL DEFAULT 0, `title` varchar(250) NOT NULL DEFAULT '', `url` varchar(250) NOT NULL DEFAULT '', `description` varchar(250) NOT NULL DEFAULT '', `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `hits` int(11) NOT NULL DEFAULT 0, `published` tinyint(1) NOT NULL DEFAULT 0, `checked_out` int(11) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `archived` tinyint(1) NOT NULL DEFAULT 0, `approved` tinyint(1) NOT NULL DEFAULT 1, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `catid` (`catid`,`published`,`archived`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_weblinks` -- LOCK TABLES `mamfm_weblinks` WRITE; /*!40000 ALTER TABLE `mamfm_weblinks` DISABLE KEYS */; INSERT INTO `mamfm_weblinks` VALUES (1,2,0,'Joomla!','http://www.joomla.org','Home of Joomla!','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'), (2,2,0,'php.net','http://www.php.net','The language that Joomla! is developed in','2004-07-07 11:33:24',0,1,0,'0000-00-00 00:00:00',3,0,1,''), (3,2,0,'MySQL','http://www.mysql.com','The database that Joomla! uses','2004-07-07 10:18:31',0,1,0,'0000-00-00 00:00:00',5,0,1,''), (4,2,0,'OpenSourceMatters','http://www.opensourcematters.org','Home of OSM','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'), (5,2,0,'Joomla! - Forums','http://forum.joomla.org','Joomla! Forums','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'); /*!40000 ALTER TABLE `mamfm_weblinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `joomla_rodam` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `joomla_rodam` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */; USE `joomla_rodam`; -- -- Table structure for table `rodam_banner` -- DROP TABLE IF EXISTS `rodam_banner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_banner` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT 0, `type` varchar(10) NOT NULL DEFAULT 'banner', `name` varchar(50) NOT NULL DEFAULT '', `imptotal` int(11) NOT NULL DEFAULT 0, `impmade` int(11) NOT NULL DEFAULT 0, `clicks` int(11) NOT NULL DEFAULT 0, `imageurl` varchar(100) NOT NULL DEFAULT '', `clickurl` varchar(200) NOT NULL DEFAULT '', `date` datetime DEFAULT NULL, `showBanner` tinyint(1) NOT NULL DEFAULT 0, `checked_out` tinyint(1) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `custombannercode` text DEFAULT NULL, PRIMARY KEY (`bid`), KEY `viewbanner` (`showBanner`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_banner` -- LOCK TABLES `rodam_banner` WRITE; /*!40000 ALTER TABLE `rodam_banner` DISABLE KEYS */; INSERT INTO `rodam_banner` VALUES (1,1,'banner','OSM 1',0,42,0,'osmbanner1.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL), (2,1,'banner','OSM 2',0,48,0,'osmbanner2.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL); /*!40000 ALTER TABLE `rodam_banner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_bannerclient` -- DROP TABLE IF EXISTS `rodam_bannerclient`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_bannerclient` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL DEFAULT '', `contact` varchar(60) NOT NULL DEFAULT '', `email` varchar(60) NOT NULL DEFAULT '', `extrainfo` text NOT NULL, `checked_out` tinyint(1) NOT NULL DEFAULT 0, `checked_out_time` time DEFAULT NULL, `editor` varchar(50) DEFAULT NULL, PRIMARY KEY (`cid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_bannerclient` -- LOCK TABLES `rodam_bannerclient` WRITE; /*!40000 ALTER TABLE `rodam_bannerclient` DISABLE KEYS */; INSERT INTO `rodam_bannerclient` VALUES (1,'Open \r\n\r\nSource Matters','Administrator','admin@opensourcematters.org','',0,'00:00:00',NULL); /*!40000 ALTER TABLE `rodam_bannerclient` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_bannerfinish` -- DROP TABLE IF EXISTS `rodam_bannerfinish`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_bannerfinish` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT 0, `type` varchar(10) NOT NULL DEFAULT '', `name` varchar(50) NOT NULL DEFAULT '', `impressions` int(11) NOT NULL DEFAULT 0, `clicks` int(11) NOT NULL DEFAULT 0, `imageurl` varchar(50) NOT NULL DEFAULT '', `datestart` datetime DEFAULT NULL, `dateend` datetime DEFAULT NULL, PRIMARY KEY (`bid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_bannerfinish` -- LOCK TABLES `rodam_bannerfinish` WRITE; /*!40000 ALTER TABLE `rodam_bannerfinish` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_bannerfinish` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_categories` -- DROP TABLE IF EXISTS `rodam_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT 0, `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `section` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `ordering` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `count` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `cat_idx` (`section`,`published`,`access`), KEY `idx_section` (`section`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_categories` -- LOCK TABLES `rodam_categories` WRITE; /*!40000 ALTER TABLE `rodam_categories` DISABLE KEYS */; INSERT INTO `rodam_categories` VALUES (1,0,'Latest','Latest News','taking_notes.jpg','1','left','The \r\n\r\nlatest news from the Joomla! Team',1,0,'0000-00-00 00:00:00','',0,0,1,''), (2,0,'Joomla!','Joomla!','clock.jpg','com_weblinks','left','A selection of links that are all related to the Joomla! Project.',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''), (3,0,'Newsflash','Newsflash','','2','left','',1,0,'0000-00-00 00:00:00','',0,0,0,''), (4,0,'Joomla!','Joomla!','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''), (5,0,'Business: general','Business: general','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''), (7,0,'Examples','Example FAQs','key.jpg','3','left','Here you will find an example set of FAQs.',1,0,'0000-00-00 00:00:00',NULL,0,0,2,''), (9,0,'Finance','Finance','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,5,0,0,''), (10,0,'Linux','Linux','','com_newsfeeds','left','
\r\n',1,0,'0000-00-00 00:00:00',NULL,6,0,0,''), (11,0,'Internet','Internet','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,7,0,0,''), (12,0,'Contacts','Contacts','','com_contact_details','left','Contact Details for this website',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''); /*!40000 ALTER TABLE `rodam_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_components` -- DROP TABLE IF EXISTS `rodam_components`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_components` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `link` varchar(255) NOT NULL DEFAULT '', `menuid` int(11) unsigned NOT NULL DEFAULT 0, `parent` int(11) unsigned NOT NULL DEFAULT 0, `admin_menu_link` varchar(255) NOT NULL DEFAULT '', `admin_menu_alt` varchar(255) NOT NULL DEFAULT '', `option` varchar(50) NOT NULL DEFAULT '', `ordering` int(11) NOT NULL DEFAULT 0, `admin_menu_img` varchar(255) NOT NULL DEFAULT '', `iscore` tinyint(4) NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=45 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_components` -- LOCK TABLES `rodam_components` WRITE; /*!40000 ALTER TABLE `rodam_components` DISABLE KEYS */; INSERT INTO `rodam_components` VALUES (1,'Banners','',0,0,'','Banner Management','com_banners',0,'js/ThemeOffice/component.png',0,''), (2,'Manage Banners','',0,1,'option=com_banners','Active Banners','com_banners',1,'js/ThemeOffice/edit.png',0,''), (3,'Manage Clients','',0,1,'option=com_banners&task=listclients','Manage Clients','com_banners',2,'js/ThemeOffice/categories.png',0,''), (4,'Web Links','option=com_weblinks',0,0,'','Manage Weblinks','com_weblinks',0,'js/ThemeOffice/globe2.png',0,''), (5,'Weblink Items','',0,4,'option=com_weblinks','View existing weblinks','com_weblinks',1,'js/ThemeOffice/edit.png',0,''), (6,'Weblink Categories','',0,4,'option=categories§ion=com_weblinks','Manage weblink categories','',2,'js/ThemeOffice/categories.png',0,''), (7,'Contacts','option=com_contact',0,0,'','Edit contact details','com_contact',0,'js/ThemeOffice/user.png',1,''), (8,'Manage Contacts','',0,7,'option=com_contact','Edit contact details','com_contact',0,'js/ThemeOffice/edit.png',1,''), (9,'Contact Categories','',0,7,'option=categories§ion=com_contact_details','Manage contact categories','',2,'js/ThemeOffice/categories.png',1,''), (10,'FrontPage','option=com_frontpage',0,0,'','Manage Front Page Items','com_frontpage',0,'js/ThemeOffice/component.png',1,''), (11,'Polls','option=com_poll',0,0,'option=com_poll','Manage Polls','com_poll',0,'js/ThemeOffice/component.png',0,''), (12,'News Feeds','option=com_newsfeeds',0,0,'','News Feeds Management','com_newsfeeds',0,'js/ThemeOffice/component.png',0,''), (13,'Manage News Feeds','',0,12,'option=com_newsfeeds','Manage News Feeds','com_newsfeeds',1,'js/ThemeOffice/edit.png',0,''), (14,'Manage Categories','',0,12,'option=com_categories§ion=com_newsfeeds','Manage Categories','',2,'js/ThemeOffice/categories.png',0,''), (15,'Login','option=com_login',0,0,'','','com_login',0,'',1,''), (16,'Search','option=com_search',0,0,'','','com_search',0,'',1,''), (17,'Syndicate','',0,0,'option=com_syndicate&hidemainmenu=1','Manage Syndication Settings','com_syndicate',0,'js/ThemeOffice/component.png',0,''), (18,'Mass Mail','',0,0,'option=com_massmail&hidemainmenu=1','Send Mass Mail','com_massmail',0,'js/ThemeOffice/mass_email.png',0,''); /*!40000 ALTER TABLE `rodam_components` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_contact_details` -- DROP TABLE IF EXISTS `rodam_contact_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_contact_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `con_position` varchar(50) DEFAULT NULL, `address` text DEFAULT NULL, `suburb` varchar(50) DEFAULT NULL, `state` varchar(20) DEFAULT NULL, `country` varchar(50) DEFAULT NULL, `postcode` varchar(10) DEFAULT NULL, `telephone` varchar(25) DEFAULT NULL, `fax` varchar(25) DEFAULT NULL, `misc` mediumtext DEFAULT NULL, `image` varchar(100) DEFAULT NULL, `imagepos` varchar(20) DEFAULT NULL, `email_to` varchar(100) DEFAULT NULL, `default_con` tinyint(1) unsigned NOT NULL DEFAULT 0, `published` tinyint(1) unsigned NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, `user_id` int(11) NOT NULL DEFAULT 0, `catid` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_contact_details` -- LOCK TABLES `rodam_contact_details` WRITE; /*!40000 ALTER TABLE `rodam_contact_details` DISABLE KEYS */; INSERT INTO `rodam_contact_details` VALUES (1,'Admin','Administrator','(not disclosed)','Vienna','Vienna','Austria','1100','(not disclosed)','n/a','','key.jpg','top','mam@heimam.at',0,1,0,'0000-00-00 00:00:00',1,'menu_image=-1\npageclass_sfx=\nprint=\nback_button=\r\n\r\n\nname=1\nposition=1\nemail=0\nstreet_address=1\nsuburb=1\nstate=1\ncountry=1\npostcode=1\ntelephone=1\nfax=1\nmisc=1\nimage=1\nvcard=0\nemail_descr\r\n\r\niption=1\nemail_description_text=\nemail_form=1\nemail_copy=0\ndrop_down=0\ncontact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\r\n\r\n\nicon_misc=',62,12,0); /*!40000 ALTER TABLE `rodam_contact_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_content` -- DROP TABLE IF EXISTS `rodam_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_content` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `title_alias` varchar(100) NOT NULL DEFAULT '', `introtext` mediumtext NOT NULL, `fulltext` mediumtext NOT NULL, `state` tinyint(3) NOT NULL DEFAULT 0, `sectionid` int(11) unsigned NOT NULL DEFAULT 0, `mask` int(11) unsigned NOT NULL DEFAULT 0, `catid` int(11) unsigned NOT NULL DEFAULT 0, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(11) unsigned NOT NULL DEFAULT 0, `created_by_alias` varchar(100) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(11) unsigned NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `images` text NOT NULL, `urls` text NOT NULL, `attribs` text NOT NULL, `version` int(11) unsigned NOT NULL DEFAULT 1, `parentid` int(11) unsigned NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, `metakey` text NOT NULL, `metadesc` text NOT NULL, `access` int(11) unsigned NOT NULL DEFAULT 0, `hits` int(11) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `idx_section` (`sectionid`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`state`), KEY `idx_catid` (`catid`), KEY `idx_mask` (`mask`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_content` -- LOCK TABLES `rodam_content` WRITE; /*!40000 ALTER TABLE `rodam_content` DISABLE KEYS */; INSERT INTO `rodam_content` VALUES (1,'Welcome to Joomla!','Welcome','If you\'ve read anything at \r\n\r\nall about Content Management Systems (CMS), you\'ll probably know at least three things: CMS are the most exciting way to do business, CMS can be \r\n\r\nreally, I mean really, complicated and lastly Portals are absolutely, outrageously, often unaffordably expensive.

\r\n\r\n{mosimage}Joomla! is set to change all that ... Joomla! is different from the normal models for portal software. For a start, it\'s not complicated. \r\n\r\nJoomla! has been developed for the masses. It\'s licensed under the GNU/GPL license, easy to install and administer and reliable. Joomla! doesn\'t \r\n\r\neven require the user or administrator of the system to know HTML to operate it once it\'s up and running.','

Joomla! \r\n\r\nfeatures:

\r\n\r\n

Extensive Administration:

\r\r\n\r\n\n',1,1,0,1,'2004-06-12 11:54:06',62,'Web Master','2004-06-12 12:33:27',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','asterisk.png|left|Joomla! Logo|1|Example Caption|bottom|center|120','','',1,0,1,'','',0,5), (2,'Newsflash 1','','Joomla! 1.0 - \'Experience the Freedom\'!. It has never been easier to create\r\nyour own dynamic site. Manage all your \r\n\r\ncontent from the best CMS admin\r\ninterface.','',0,2,1,3,'2004-08-09 08:30:34',62,'','2008-10-26 20:51:35',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,1,'','',0,0), (3,'Newsflash 2','','Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the \r\n\r\nneed for better RAM was due to some fool increasing the front-side bus speed. In future, busses will be told to slow down in residential \r\n\r\nmotherboards.','',0,2,1,3,'2004-08-09 08:30:34',62,'','2008-10-26 20:51:36',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,2,'','',0,1), (4,'Newsflash 3','','Aoccdrnig to a rscheearch at an Elingsh uinervtisy, it deosn\'t mttaer in waht oredr the ltteers in a wrod are, the olny \r\n\r\niprmoetnt tihng is taht frist and lsat ltteer is at the rghit pclae. The rset can be a toatl mses and you can sitll raed it wouthit porbelm. Tihs is \r\n\r\nbcuseae we do not raed ervey lteter by itslef but the wrod as a wlohe.','',0,2,1,3,'2004-08-09 08:30:34',62,'','2008-10-26 20:51:37',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,3,'','',0,1), (5,'Joomla! License Guidelines','','

This website is powered by Joomla! The software and default \r\n\r\ntemplates on which it runs are Copyright 2005 Open Source Matters. All other content and data, \r\n\r\nincluding data entered into this website and templates added after installation, are copyrighted by their respective copyright owners.

If you \r\n\r\nwant to distribute, copy or modify Joomla!, you are welcome to do so under the terms of the GNU \r\n\r\nGeneral Public License. If you are unfamiliar with this license, you might want to read \'How To Apply These Terms To Your Program\' and the \'GNU General Public License FAQ\'.

','',0,0,0,0,'2004-08-19 20:11:07',62,'','2004-08-19 20:14:49',62,0,'0000-00-00 00:00:00','2004-08-19 00:00:00','0000-00-00 00:00:00','','','menu_image=\nitem_title=1\npageclass_sfx=\nback_button=\nrating=\nauthor=\r\n\r\n\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=',1,0,11,'','',0,12), (6,'Example News Item 1','News1','{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no \r\n\r\nsea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum.','

{mosimage}\r\n\r\nDuis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero \r\n\r\neros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum \r\n\r\ndolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n\r\n\r\n

Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\r\n\r\n\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et \r\n\r\naccumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

Nam \r\n\r\nliber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit \r\n\r\namet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\n\r\n\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum \r\n\r\niriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et \r\n\r\njusto duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, \r\n\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et \r\n\r\naccusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor \r\n\r\nsit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt \r\n\r\njusto labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem \r\n\r\nipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\r\n\r\n\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\r\n\r\n\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum \r\n\r\ndolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam \r\n\r\nvoluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor \r\n\r\nsit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam \r\n\r\nerat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem \r\n\r\nipsum dolor sit amet.

',0,1,0,1,'2004-07-07 11:54:06',62,'','2008-10-26 20:50:38',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/coffee.jpg|left||0\r\nfood/bread.jpg|right||0','','',1,0,2,'','',0,5), (7,'Example News Item 2','News2','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no \r\n\r\nsea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd \r\n\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy \r\n\r\neirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet \r\n\r\nclita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',0,1,0,1,'2004-07-07 11:54:06',62,'','2008-10-26 20:50:39',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/bun.jpg|right||0','','',1,0,3,'','',0,3), (8,'Example News Item 3','News3','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no \r\n\r\nsea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd \r\n\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy \r\n\r\neirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet \r\n\r\nclita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',0,1,0,1,'2004-04-12 11:54:06',62,'','2008-10-26 20:50:41',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/pears.jpg|right||0','','',1,0,4,'','',0,1), (9,'Example News Item 4','News4','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et \r\n\r\ndolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, \r\n\r\nno sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse \r\n\r\nmolestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\r\n\r\n\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh \r\n\r\neuismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n{mospagebreak}

{mosimage}Ut wisi enim ad minim veniam, quis nostrud \r\n\r\nexerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate \r\n\r\nvelit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit \r\n\r\npraesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend \r\n\r\noption congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed \r\n\r\ndiam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation \r\n\r\nullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\r\n\r\n\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita \r\n\r\nkasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam \r\n\r\nnonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea \r\n\r\nrebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing \r\n\r\nelitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et \r\n\r\ngubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\r\n\r\n\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n{mospagebreak}\r\n\r\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos \r\n\r\net accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor \r\n\r\nsit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At \r\n\r\nvero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem \r\n\r\nipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam \r\n\r\nvoluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor \r\n\r\nsit amet.

',0,1,0,1,'2004-07-07 11:54:06',62,'','2008-10-26 20:50:41',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/strawberry.jpg|left||0\r\nfruit/pears.jpg|right||0\r\nfruit/cherry.jpg|left||0','','',1,0,5,'','',0,7), (10,'Example FAQ Item 1','FAQ1','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et \r\n\r\ndolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, \r\n\r\nno sea takimata sanctus est Lorem ipsum dolor sit amet.

','',0,3,0,7,'2004-05-12 11:54:06',62,'','2008-10-26 20:50:50',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','','','',1,0,5,'','',0,8), (11,'Example FAQ Item 2','FAQ2','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et \r\n\r\ndolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, \r\n\r\nno sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse \r\n\r\nmolestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\r\n\r\n\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh \r\n\r\neuismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n

{mosimage}Ut wisi enim ad minim veniam, quis nostrud exerci \r\n\r\ntation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit \r\n\r\nesse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent \r\n\r\nluptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend option \r\n\r\ncongue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam \r\n\r\nnonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation \r\n\r\nullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\r\n\r\n\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita \r\n\r\nkasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam \r\n\r\nnonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea \r\n\r\nrebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing \r\n\r\nelitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et \r\n\r\ngubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\r\n\r\n\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n

Consetetur \r\n\r\nsadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et \r\n\r\njusto duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, \r\n\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et \r\n\r\naccusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor \r\n\r\nsit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At \r\n\r\nvero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',0,3,0,7,'2004-05-12 11:54:06',62,'Web master','2008-10-26 20:50:48',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','fruit/cherry.jpg|left||0\r\nfruit/peas.jpg|right||0\r\nfood/milk.jpg|left||0','','',1,0,5,'','',0,12); /*!40000 ALTER TABLE `rodam_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_content_frontpage` -- DROP TABLE IF EXISTS `rodam_content_frontpage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_content_frontpage` ( `content_id` int(11) NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_content_frontpage` -- LOCK TABLES `rodam_content_frontpage` WRITE; /*!40000 ALTER TABLE `rodam_content_frontpage` DISABLE KEYS */; INSERT INTO `rodam_content_frontpage` VALUES (1,1), (5,2); /*!40000 ALTER TABLE `rodam_content_frontpage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_content_rating` -- DROP TABLE IF EXISTS `rodam_content_rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_content_rating` ( `content_id` int(11) NOT NULL DEFAULT 0, `rating_sum` int(11) unsigned NOT NULL DEFAULT 0, `rating_count` int(11) unsigned NOT NULL DEFAULT 0, `lastip` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_content_rating` -- LOCK TABLES `rodam_content_rating` WRITE; /*!40000 ALTER TABLE `rodam_content_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_content_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_core_acl_aro` -- DROP TABLE IF EXISTS `rodam_core_acl_aro`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_core_acl_aro` ( `aro_id` int(11) NOT NULL AUTO_INCREMENT, `section_value` varchar(240) NOT NULL DEFAULT '0', `value` varchar(240) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT 0, `name` varchar(255) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`aro_id`), UNIQUE KEY `rodam_gacl_section_value_value_aro` (`section_value`(100),`value`(100)), KEY `rodam_gacl_hidden_aro` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_core_acl_aro` -- LOCK TABLES `rodam_core_acl_aro` WRITE; /*!40000 ALTER TABLE `rodam_core_acl_aro` DISABLE KEYS */; INSERT INTO `rodam_core_acl_aro` VALUES (10,'users','62',0,'Administrator',0), (11,'users','63',0,'Markus A. Mascelli',0); /*!40000 ALTER TABLE `rodam_core_acl_aro` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_core_acl_aro_groups` -- DROP TABLE IF EXISTS `rodam_core_acl_aro_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_core_acl_aro_groups` ( `group_id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT 0, `name` varchar(255) NOT NULL DEFAULT '', `lft` int(11) NOT NULL DEFAULT 0, `rgt` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`group_id`), KEY `parent_id_aro_groups` (`parent_id`), KEY `rodam_gacl_parent_id_aro_groups` (`parent_id`), KEY `rodam_gacl_lft_rgt_aro_groups` (`lft`,`rgt`) ) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_core_acl_aro_groups` -- LOCK TABLES `rodam_core_acl_aro_groups` WRITE; /*!40000 ALTER TABLE `rodam_core_acl_aro_groups` DISABLE KEYS */; INSERT INTO `rodam_core_acl_aro_groups` VALUES (17,0,'ROOT',1,22), (28,17,'USERS',2,21), (29,28,'Public Frontend',3,12), (18,29,'Registered',4,11), (19,18,'Author',5,10), (20,19,'Editor',6,9), (21,20,'Publisher',7,8), (30,28,'Public Backend',13,20), (23,30,'Manager',14,19), (24,23,'Administrator',15,18), (25,24,'Super Administrator',16,17); /*!40000 ALTER TABLE `rodam_core_acl_aro_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_core_acl_aro_sections` -- DROP TABLE IF EXISTS `rodam_core_acl_aro_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_core_acl_aro_sections` ( `section_id` int(11) NOT NULL AUTO_INCREMENT, `value` varchar(230) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT 0, `name` varchar(230) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`section_id`), UNIQUE KEY `value_aro_sections` (`value`), UNIQUE KEY `rodam_gacl_value_aro_sections` (`value`), KEY `hidden_aro_sections` (`hidden`), KEY `rodam_gacl_hidden_aro_sections` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_core_acl_aro_sections` -- LOCK TABLES `rodam_core_acl_aro_sections` WRITE; /*!40000 ALTER TABLE `rodam_core_acl_aro_sections` DISABLE KEYS */; INSERT INTO `rodam_core_acl_aro_sections` VALUES (10,'users',1,'Users',0); /*!40000 ALTER TABLE `rodam_core_acl_aro_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_core_acl_groups_aro_map` -- DROP TABLE IF EXISTS `rodam_core_acl_groups_aro_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_core_acl_groups_aro_map` ( `group_id` int(11) NOT NULL DEFAULT 0, `section_value` varchar(240) NOT NULL DEFAULT '', `aro_id` int(11) NOT NULL DEFAULT 0, UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_core_acl_groups_aro_map` -- LOCK TABLES `rodam_core_acl_groups_aro_map` WRITE; /*!40000 ALTER TABLE `rodam_core_acl_groups_aro_map` DISABLE KEYS */; INSERT INTO `rodam_core_acl_groups_aro_map` VALUES (18,'',11), (25,'',10); /*!40000 ALTER TABLE `rodam_core_acl_groups_aro_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_core_log_items` -- DROP TABLE IF EXISTS `rodam_core_log_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_core_log_items` ( `time_stamp` date NOT NULL DEFAULT '0000-00-00', `item_table` varchar(50) NOT NULL DEFAULT '', `item_id` int(11) unsigned NOT NULL DEFAULT 0, `hits` int(11) unsigned NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_core_log_items` -- LOCK TABLES `rodam_core_log_items` WRITE; /*!40000 ALTER TABLE `rodam_core_log_items` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_core_log_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_core_log_searches` -- DROP TABLE IF EXISTS `rodam_core_log_searches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_core_log_searches` ( `search_term` varchar(128) NOT NULL DEFAULT '', `hits` int(11) unsigned NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_core_log_searches` -- LOCK TABLES `rodam_core_log_searches` WRITE; /*!40000 ALTER TABLE `rodam_core_log_searches` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_core_log_searches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_groups` -- DROP TABLE IF EXISTS `rodam_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_groups` ( `id` tinyint(3) unsigned NOT NULL DEFAULT 0, `name` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_groups` -- LOCK TABLES `rodam_groups` WRITE; /*!40000 ALTER TABLE `rodam_groups` DISABLE KEYS */; INSERT INTO `rodam_groups` VALUES (0,'Public'), (1,'Registered'), (2,'Special'); /*!40000 ALTER TABLE `rodam_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_mambots` -- DROP TABLE IF EXISTS `rodam_mambots`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_mambots` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `element` varchar(100) NOT NULL DEFAULT '', `folder` varchar(100) NOT NULL DEFAULT '', `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, `published` tinyint(3) NOT NULL DEFAULT 0, `iscore` tinyint(3) NOT NULL DEFAULT 0, `client_id` tinyint(3) NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_folder` (`published`,`client_id`,`access`,`folder`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_mambots` -- LOCK TABLES `rodam_mambots` WRITE; /*!40000 ALTER TABLE `rodam_mambots` DISABLE KEYS */; INSERT INTO `rodam_mambots` VALUES (1,'MOS Image','mosimage','content',0,-10000,1,1,0,0,'0000-00-00 00:00:00',''), (2,'MOS Pagination','mospaging','content',0,10000,1,1,0,0,'0000-00-00 00:00:00',''), (3,'Legacy Mambot Includer','legacybots','content',0,1,0,1,0,0,'0000-00-00 00:00:00',''), (4,'SEF','mossef','content',0,3,1,0,0,0,'0000-00-00 00:00:00',''), (5,'MOS Rating','mosvote','content',0,4,1,1,0,0,'0000-00-00 00:00:00',''), (6,'Search Content','content.searchbot','search',0,1,1,1,0,0,'0000-00-00 00:00:00',''), (7,'Search Weblinks','weblinks.searchbot','search',0,2,1,1,0,0,'0000-00-00 00:00:00',''), (8,'Code support','moscode','content',0,2,0,0,0,0,'0000-00-00 00:00:00',''), (9,'No WYSIWYG Editor','none','editors',0,0,1,1,0,0,'0000-00-00 00:00:00',''), (10,'TinyMCE WYSIWYG Editor','tinymce','editors',0,0,1,1,0,0,'0000-00-00 00:00:00','theme=advanced'), (11,'MOS Image Editor Button','mosimage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''), (12,'MOS Pagebreak Editor Button','mospage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''), (13,'Search Contacts','contacts.searchbot','search',0,3,1,1,0,0,'0000-00-00 00:00:00',''), (14,'Search Categories','categories.searchbot','search',0,4,1,0,0,0,'0000-00-00 00:00:00',''), (15,'Search Sections','sections.searchbot','search',0,5,1,0,0,0,'0000-00-00 00:00:00',''), (16,'Email Cloaking','mosemailcloak','content',0,5,1,0,0,0,'0000-00-00 00:00:00',''), (18,'Search Newsfeeds','newsfeeds.searchbot','search',0,6,1,0,0,0,'0000-00-00 00:00:00',''), (19,'Load Module Positions','mosloadposition','content',0,6,1,0,0,0,'0000-00-00 00:00:00',''); /*!40000 ALTER TABLE `rodam_mambots` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_menu` -- DROP TABLE IF EXISTS `rodam_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `menutype` varchar(25) DEFAULT NULL, `name` varchar(100) DEFAULT NULL, `link` text DEFAULT NULL, `type` varchar(50) NOT NULL DEFAULT '', `published` tinyint(1) NOT NULL DEFAULT 0, `parent` int(11) unsigned NOT NULL DEFAULT 0, `componentid` int(11) unsigned NOT NULL DEFAULT 0, `sublevel` int(11) DEFAULT 0, `ordering` int(11) DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `pollid` int(11) NOT NULL DEFAULT 0, `browserNav` tinyint(4) DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `utaccess` tinyint(3) unsigned NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `componentid` (`componentid`,`menutype`,`published`,`access`), KEY `menutype` (`menutype`) ) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_menu` -- LOCK TABLES `rodam_menu` WRITE; /*!40000 ALTER TABLE `rodam_menu` DISABLE KEYS */; INSERT INTO `rodam_menu` VALUES (1,'mainmenu','Home','index.php?option=com_frontpage','components',1,0,10,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'leading=1\r\nintro=2\r\nlink=1\r\nimage=1\r\npage_title=0\r\nheader=Welcome to \r\n\r\nthe Frontpage\r\norderby_sec=front\r\nprint=0\r\npdf=0\r\nemail=0\r\nback_button=0'), (2,'mainmenu','News','index.php?option=com_content&task=section&id=1','content_section',1,0,1,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''), (3,'mainmenu','Contact Us','index.php?option=com_contact','components',1,0,7,0,7,0,'0000-00-00 00:00:00',0,0,0,3,''), (23,'mainmenu','Links','index.php?option=com_weblinks','components',1,0,4,0,6,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=web_links.jpg\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nheadings=1\nhits=\r\n\r\n\nitem_description=1\nother_cat=1\ndescription=1\ndescription_text=\nimage=-1\nimage_align=right\nweblink_icons='), (5,'mainmenu','Search','index.php?option=com_search','components',1,0,16,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''), (6,'mainmenu','Joomla! License','index.php?option=com_content&task=view&id=5','content_typed',0,0,11,0,9,0,'0000-00-00 00:00:00',0,0,0,0,''), (7,'mainmenu','News Feeds','index.php?option=com_newsfeeds','components',1,0,12,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-\r\n\r\n1\npageclass_sfx=\nback_button=\npage_title=1\nheader='), (8,'mainmenu','Wrapper','index.php?option=com_wrapper','wrapper',0,0,0,0,10,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-\r\n\r\n1\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nscrolling=auto\nwidth=100%\nheight=600\nheight_auto=0\nurl=www.joomla.org'), (9,'mainmenu','Blog','index.php?option=com_content&task=blogsection&id=0','content_blog_section',1,0,0,0,5,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=A blog of all section with no images\r\n\r\n\npage_title=1\nleading=0\nintro=6\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\r\n\r\n\npagination=2\npagination_results=1\nimage=0\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\r\n\r\n\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nsectionid='), (10,'othermenu','Joomla! Home','http://www.joomla.org','url',0,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''), (11,'othermenu','Joomla! Forums','http://forum.joomla.org','url',0,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''), (12,'othermenu','OSM Home','http://www.opensourcematters.org','url',0,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''), (24,'othermenu','Administrator','administrator/','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'), (21,'usermenu','Your Details','index.php?option=com_user&task=UserDetails','url',1,0,0,0,6,0,'2000-00-00 00:00:00',0,0,1,3,''), (13,'usermenu','Submit News','index.php?option=com_content&task=new§ionid=1&Itemid=0','url',1,0,0,0,7,0,'2000-00-00 00:00:00',0,0,1,2,''), (14,'usermenu','Submit WebLink','index.php?option=com_weblinks&task=new','url',1,0,0,0,8,0,'2000-00-00 00:00:00',0,0,1,2,''), (15,'usermenu','Check-In My Items','index.php?option=com_user&task=CheckIn','url',0,0,0,0,9,0,'0000-00-00 00:00:00',0,0,1,2,''), (16,'usermenu','Logout','index.php?option=com_login','components',1,0,15,0,10,0,'0000-00-00 00:00:00',0,0,1,3,''), (17,'topmenu','Home','index.php','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''), (18,'topmenu','Contact Us','index.php?option=com_contact&Itemid=3','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''), (19,'topmenu','News','index.php?option=com_content&task=section&id=1&Itemid=2','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''), (20,'topmenu','Links','index.php?option=com_weblinks&Itemid=23','url',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'), (25,'mainmenu','FAQs','index.php?option=com_content&task=category§ionid=3&id=7','content_category',0,0,7,0,8,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npage_title=1\npageclass_sfx=\nback_button=\norderby=\ndate_format=\ndate=\nauthor=\ntitle=1\nhits=\r\n\r\n\nheadings=1\nnavigation=1\norder_select=1\ndisplay=1\ndisplay_num=50\nfilter=1\nfilter_type=title\r\n\r\n\nother_cat=1\nempty_cat=0\ncat_items=1\ncat_description=1'), (26,'usermenu','Gallery','index.php?option=com_ponygallery','components',-2,0,25,0,2,0,'0000-00-00 00:00:00',0,0,1,0,''), (27,'usermenu','Shoutbox','index.php?option=com_shoutit','components',-2,0,32,0,3,0,'0000-00-00 00:00:00',0,0,1,0,''), (28,'usermenu','Contact List','index.php?option=com_steckbriefe','components',-2,0,36,0,4,0,'0000-00-00 00:00:00',0,0,1,0,'menu_image=-1\npageclass_sfx=\nback_button=1\npage_title=1\nheader=\r\n\r\n\nother_cat_section=1\nother_cat=1\ncat_description=1\ncat_items=1\ndescription=1\ndescription_text=\nimage=-1\nimage_align=right\r\n\r\n\nheadings=1\nspitzname=1\ngeburtsdatum=1\nemail=0\neigenschaften=1\nzusatz2=1\nzusatz1=1'), (29,'usermenu','Gallery','index.php?option=com_paxgallery','components',-2,0,39,0,1,0,'0000-00-00 00:00:00',0,0,1,0,''), (30,'usermenu','Gallery','index.php?option=com_zoom','components',-2,0,44,0,0,0,'0000-00-00 00:00:00',0,0,1,0,''), (31,'usermenu','Upload Media','index.php?option=com_zoom&page=admin','url',-2,0,0,0,0,0,'0000-00-00 00:00:00',0,0,1,2,''); /*!40000 ALTER TABLE `rodam_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_messages` -- DROP TABLE IF EXISTS `rodam_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_messages` ( `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id_from` int(10) unsigned NOT NULL DEFAULT 0, `user_id_to` int(10) unsigned NOT NULL DEFAULT 0, `folder_id` int(10) unsigned NOT NULL DEFAULT 0, `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `state` int(11) NOT NULL DEFAULT 0, `priority` int(1) unsigned NOT NULL DEFAULT 0, `subject` varchar(230) NOT NULL DEFAULT '', `message` text NOT NULL, PRIMARY KEY (`message_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_messages` -- LOCK TABLES `rodam_messages` WRITE; /*!40000 ALTER TABLE `rodam_messages` DISABLE KEYS */; INSERT INTO `rodam_messages` VALUES (1,63,62,0,'2008-10-26 21:04:40',1,0,'New Picture Uploaded','A new content item has been submitted by mam titled September 19 to 22 \r\n\r\n2008.'); /*!40000 ALTER TABLE `rodam_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_messages_cfg` -- DROP TABLE IF EXISTS `rodam_messages_cfg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_messages_cfg` ( `user_id` int(10) unsigned NOT NULL DEFAULT 0, `cfg_name` varchar(100) NOT NULL DEFAULT '', `cfg_value` varchar(255) NOT NULL DEFAULT '', UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_messages_cfg` -- LOCK TABLES `rodam_messages_cfg` WRITE; /*!40000 ALTER TABLE `rodam_messages_cfg` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_messages_cfg` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_modules` -- DROP TABLE IF EXISTS `rodam_modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_modules` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, `content` text NOT NULL, `ordering` int(11) NOT NULL DEFAULT 0, `position` varchar(10) DEFAULT NULL, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT 0, `module` varchar(50) DEFAULT NULL, `numnews` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `showtitle` tinyint(3) unsigned NOT NULL DEFAULT 1, `params` text NOT NULL, `iscore` tinyint(4) NOT NULL DEFAULT 0, `client_id` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `published` (`published`,`access`), KEY `newsfeeds` (`module`,`published`) ) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_modules` -- LOCK TABLES `rodam_modules` WRITE; /*!40000 ALTER TABLE `rodam_modules` DISABLE KEYS */; INSERT INTO `rodam_modules` VALUES (1,'Polls','',1,'right',0,'0000-00-00 00:00:00',1,'mod_poll',0,0,1,'',0,0), (2,'User Menu','',4,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,1,1,'menutype=usermenu',1,0), (3,'Main Menu','',1,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=mainmenu',1,0), (4,'Login Form','',5,'left',0,'0000-00-00 00:00:00',1,'mod_login',0,0,1,'',1,0), (5,'Syndicate','',7,'left',0,'0000-00-00 00:00:00',0,'mod_rssfeed',0,0,1,'',1,0), (6,'Latest News','',2,'user1',0,'0000-00-00 00:00:00',1,'mod_latestnews',0,0,1,'',1,0), (7,'Statistics','',6,'left',0,'0000-00-00 00:00:00',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0), (8,'Who\'s Online','',2,'right',0,'0000-00-00 00:00:00',1,'mod_whosonline',0,0,1,'online=1\nusers=1\nmoduleclass_sfx=',0,0), (9,'Popular','',6,'user2',0,'0000-00-00 00:00:00',0,'mod_mostread',0,0,1,'',0,0), (10,'Template Chooser','',8,'left',0,'0000-00-00 00:00:00',0,'mod_templatechooser',0,0,1,'show_preview=1',0,0), (11,'Archive','',9,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'',1,0), (12,'Sections','',10,'left',0,'0000-00-00 00:00:00',0,'mod_sections',0,0,1,'',1,0), (13,'Newsflash','',1,'top',0,'0000-00-00 00:00:00',1,'mod_newsflash',0,0,1,'catid=3\r\nstyle=random\r\nitems=\r\nmoduleclass_sfx=',0,0), (14,'Related Items','',11,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0), (15,'Search','',1,'user4',0,'0000-00-00 00:00:00',1,'mod_search',0,0,0,'',0,0), (16,'Random Image','',4,'right',0,'0000-00-00 00:00:00',1,'mod_random_image',0,0,1,'',0,0), (17,'Top Menu','',1,'user3',0,'0000-00-00 00:00:00',0,'mod_mainmenu',0,0,0,'menutype=topmenu\nmenu_style=list_flat\nmenu_images=n\r\n\r\n\nmenu_images_align=left\nexpand_menu=n\nclass_sfx=-nav\nmoduleclass_sfx=\r\n\r\n\nindent_image1=0\nindent_image2=0\nindent_image3=0\nindent_image4=0\nindent_image5=0\nindent_image6=0',1,0), (18,'Banners','',1,'banner',0,'0000-00-00 00:00:00',1,'mod_banners',0,0,0,'banner_cids=\nmoduleclass_sfx=\n',1,0), (19,'Components','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_components',0,99,1,'',1,1), (20,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,99,1,'',0,1), (21,'Latest Items','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,99,1,'',0,1), (22,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,99,1,'',0,1), (23,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,99,1,'',1,1), (24,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,99,1,'',1,1), (25,'Full Menu','',1,'top',0,'0000-00-00 00:00:00',1,'mod_fullmenu',0,99,1,'',1,1), (26,'Pathway','',1,'pathway',0,'0000-00-00 00:00:00',1,'mod_pathway',0,99,1,'',1,1), (27,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,99,1,'',1,1), (28,'System Message','',1,'inset',0,'0000-00-00 00:00:00',1,'mod_mosmsg',0,99,1,'',1,1), (29,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,99,1,'',1,1), (30,'Other Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=othermenu\nmenu_style=vert_indent\r\n\r\n\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nclass_sfx=\nmoduleclass_sfx=\nindent_image=0\nindent_image1=\nindent_image2=\r\n\r\n\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=',0,0), (31,'Wrapper','',12,'left',0,'0000-00-00 00:00:00',0,'mod_wrapper',0,0,1,'',0,0), (32,'Logged','',0,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,99,1,'',0,1); /*!40000 ALTER TABLE `rodam_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_modules_menu` -- DROP TABLE IF EXISTS `rodam_modules_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_modules_menu` ( `moduleid` int(11) NOT NULL DEFAULT 0, `menuid` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`moduleid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_modules_menu` -- LOCK TABLES `rodam_modules_menu` WRITE; /*!40000 ALTER TABLE `rodam_modules_menu` DISABLE KEYS */; INSERT INTO `rodam_modules_menu` VALUES (1,1), (2,0), (3,0), (4,1), (5,1), (6,1), (6,2), (6,4), (6,27), (6,36), (8,1), (9,1), (9,2), (9,4), (9,27), (9,36), (10,1), (13,0), (15,0), (17,0), (18,0), (30,0); /*!40000 ALTER TABLE `rodam_modules_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_newsfeeds` -- DROP TABLE IF EXISTS `rodam_newsfeeds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_newsfeeds` ( `catid` int(11) NOT NULL DEFAULT 0, `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `link` text NOT NULL, `filename` varchar(200) DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `numarticles` int(11) unsigned NOT NULL DEFAULT 1, `cache_time` int(11) unsigned NOT NULL DEFAULT 3600, `checked_out` tinyint(3) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `published` (`published`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_newsfeeds` -- LOCK TABLES `rodam_newsfeeds` WRITE; /*!40000 ALTER TABLE `rodam_newsfeeds` DISABLE KEYS */; INSERT INTO `rodam_newsfeeds` VALUES (4,1,'Joomla! - Official News','http://www.joomla.org/index.php?\r\n\r\noption=com_rss_xtd&feed=RSS2.0&type=com_frontpage&Itemid=1','',1,5,3600,0,'0000-00-00 00:00:00',8), (4,2,'Joomla! - Community News','http://www.joomla.org/index.php?\r\n\r\noption=com_rss_xtd&feed=RSS2.0&type=com_content&task=blogcategory&id=0&Itemid=33','',1,5,3600,0,'0000-00-00 00:00:00',9), (4,3,'OpenSourceMatters','http://www.opensourcematters.org/index2.php?option=com_rss&feed=RSS2.0&no_html=1','',1,5,3600,0,'0000-00-00 00:00:00',10), (10,4,'Linux Today','http://linuxtoday.com/backend/my-netscape.rdf','',1,3,3600,0,'0000-00-00 00:00:00',1), (5,5,'Business News','http://headlines.internet.com/internetnews/bus-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',2), (11,6,'Web Developer News','http://headlines.internet.com/internetnews/wd-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',3), (10,7,'Linux Central:New Products','http://linuxcentral.com/backend/lcnew.rdf','',1,3,3600,0,'0000-00-00 00:00:00',4), (10,8,'Linux Central:Best Selling','http://linuxcentral.com/backend/lcbestns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',5), (10,9,'Linux Central:Daily Specials','http://linuxcentral.com/backend/lcspecialns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',6), (9,10,'Internet:Finance News','http://headlines.internet.com/internetnews/fina-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',7); /*!40000 ALTER TABLE `rodam_newsfeeds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_poll_data` -- DROP TABLE IF EXISTS `rodam_poll_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_poll_data` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pollid` int(4) NOT NULL DEFAULT 0, `text` text NOT NULL, `hits` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `pollid` (`pollid`,`text`(1)) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_poll_data` -- LOCK TABLES `rodam_poll_data` WRITE; /*!40000 ALTER TABLE `rodam_poll_data` DISABLE KEYS */; INSERT INTO `rodam_poll_data` VALUES (1,14,'Absolutely simple',1), (2,14,'Reasonably easy',0), (3,14,'Not straight-forward but I worked it out',0), (4,14,'I had to install extra server stuff',0), (5,14,'I had no idea and got my friend to do it',0), (6,14,'My dog ran away with the README ...',0), (7,14,'',0), (8,14,'',0), (9,14,'',0), (10,14,'',0), (11,14,'',0), (12,14,'',0); /*!40000 ALTER TABLE `rodam_poll_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_poll_date` -- DROP TABLE IF EXISTS `rodam_poll_date`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_poll_date` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `vote_id` int(11) NOT NULL DEFAULT 0, `poll_id` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_poll_date` -- LOCK TABLES `rodam_poll_date` WRITE; /*!40000 ALTER TABLE `rodam_poll_date` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_poll_date` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_poll_menu` -- DROP TABLE IF EXISTS `rodam_poll_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_poll_menu` ( `pollid` int(11) NOT NULL DEFAULT 0, `menuid` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`pollid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_poll_menu` -- LOCK TABLES `rodam_poll_menu` WRITE; /*!40000 ALTER TABLE `rodam_poll_menu` DISABLE KEYS */; INSERT INTO `rodam_poll_menu` VALUES (14,1); /*!40000 ALTER TABLE `rodam_poll_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_polls` -- DROP TABLE IF EXISTS `rodam_polls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_polls` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `voters` int(9) NOT NULL DEFAULT 0, `checked_out` int(11) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT 0, `access` int(11) NOT NULL DEFAULT 0, `lag` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_polls` -- LOCK TABLES `rodam_polls` WRITE; /*!40000 ALTER TABLE `rodam_polls` DISABLE KEYS */; INSERT INTO `rodam_polls` VALUES (14,'This Joomla! \r\n\r\ninstallation was ....',0,0,'2000-00-00 00:00:00',1,0,86400); /*!40000 ALTER TABLE `rodam_polls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_rsgallery2_acl` -- DROP TABLE IF EXISTS `rodam_rsgallery2_acl`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_rsgallery2_acl` ( `id` int(11) NOT NULL AUTO_INCREMENT, `gallery_id` int(11) NOT NULL DEFAULT 0, `parent_id` int(11) NOT NULL DEFAULT 0, `public_view` tinyint(1) NOT NULL DEFAULT 1, `public_up_mod_img` tinyint(1) NOT NULL DEFAULT 0, `public_del_img` tinyint(1) NOT NULL DEFAULT 0, `public_create_mod_gal` tinyint(1) NOT NULL DEFAULT 0, `public_del_gal` tinyint(1) NOT NULL DEFAULT 0, `public_vote_view` tinyint(1) NOT NULL DEFAULT 1, `public_vote_vote` tinyint(1) NOT NULL DEFAULT 0, `registered_view` tinyint(1) NOT NULL DEFAULT 1, `registered_up_mod_img` tinyint(1) NOT NULL DEFAULT 1, `registered_del_img` tinyint(1) NOT NULL DEFAULT 0, `registered_create_mod_gal` tinyint(1) NOT NULL DEFAULT 1, `registered_del_gal` tinyint(1) NOT NULL DEFAULT 0, `registered_vote_view` tinyint(1) NOT NULL DEFAULT 1, `registered_vote_vote` tinyint(1) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_rsgallery2_acl` -- LOCK TABLES `rodam_rsgallery2_acl` WRITE; /*!40000 ALTER TABLE `rodam_rsgallery2_acl` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_rsgallery2_acl` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_rsgallery2_comments` -- DROP TABLE IF EXISTS `rodam_rsgallery2_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_rsgallery2_comments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL DEFAULT 0, `user_name` varchar(100) NOT NULL DEFAULT '', `user_ip` varchar(50) NOT NULL DEFAULT '0.0.0.0', `parent_id` int(11) NOT NULL DEFAULT 0, `item_id` int(11) NOT NULL DEFAULT 0, `item_table` varchar(50) DEFAULT NULL, `datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `subject` varchar(100) DEFAULT NULL, `comment` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT 1, `checked_out` int(11) DEFAULT NULL, `checked_out_time` datetime DEFAULT NULL, `ordering` int(11) NOT NULL DEFAULT 0, `params` text DEFAULT NULL, `hits` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_rsgallery2_comments` -- LOCK TABLES `rodam_rsgallery2_comments` WRITE; /*!40000 ALTER TABLE `rodam_rsgallery2_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_rsgallery2_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_rsgallery2_config` -- DROP TABLE IF EXISTS `rodam_rsgallery2_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_rsgallery2_config` ( `id` int(9) unsigned NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `value` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=71 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_rsgallery2_config` -- LOCK TABLES `rodam_rsgallery2_config` WRITE; /*!40000 ALTER TABLE `rodam_rsgallery2_config` DISABLE KEYS */; INSERT INTO `rodam_rsgallery2_config` VALUES (1,'acl_enabled','1'), (2,'allowedFileTypes','jpg,jpeg,gif,png'), (3,'comment','1'), (4,'comment_allowed_public','1'), (5,'comment_once','0'), (6,'comment_security','1'), (7,'cookie_prefix','rsgvoting_'), (8,'createImgDirs',''), (9,'current_slideshow','slideshow_parth'), (10,'debug','0'), (11,'dispLimitbox','1'), (12,'displayBranding','1'), (13,'displayComments','1'), (14,'displayDesc','1'), (15,'displayDownload','1'), (16,'displayEXIF','1'), (17,'displayHits','0'), (18,'displayLatest','1'), (19,'displayPopup','1'), (20,'displayRandom','1'), (21,'displaySearch','1'), (22,'displaySlideshow','1'), (23,'displayStatus','1'), (24,'displayVoting','1'), (25,'display_img_dynamicResize','0'), (26,'display_thumbs_colsPerPage','3'), (27,'display_thumbs_floatDirection','left'), (28,'display_thumbs_maxPerPage','9'), (29,'display_thumbs_showImgName','1'), (30,'display_thumbs_style','table'), (31,'exifTags','FileName|FileDateTime|resolution'), (32,'filter_order','ordering'), (33,'filter_order_Dir','ASC'), (34,'ftp_path',''), (35,'galcountNrs','5'), (36,'graphicsLib','gd2'), (37,'hideRoot','1'), (38,'imageMagick_path',''), (39,'image_width','400'), (40,'imgPath_display','/images/rsgallery/display'), (41,'imgPath_original','/images/rsgallery/original'), (42,'imgPath_thumb','/images/rsgallery/thumb'), (43,'intro_text','

Your images go here

'), (44,'jpegQuality','85'), (45,'keepOriginalImage','1'), (46,'netpbm_path',''), (47,'resize_portrait_by_height','1'), (48,'showGalleryDate','1'), (49,'showGalleryOwner','1'), (50,'showGallerySize','1'), (51,'show_mygalleries','1'), (52,'template','semantic'), (53,'thumb_style','1'), (54,'thumb_width','80'), (55,'uu_createCat','1'), (56,'uu_enabled','0'), (57,'uu_maxCat','10'), (58,'uu_maxImages','100'), (59,'version','1.14.3'), (60,'voting','1'), (61,'voting_once','1'), (62,'watermark','0'), (63,'watermark_angle','0'), (64,'watermark_font','arial.ttf'), (65,'watermark_font_size','20'), (66,'watermark_image','watermark.png'), (67,'watermark_position','5'), (68,'watermark_text','(c) 2007 - RSGallery2'), (69,'watermark_transparency','50'), (70,'watermark_type','text'); /*!40000 ALTER TABLE `rodam_rsgallery2_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_rsgallery2_files` -- DROP TABLE IF EXISTS `rodam_rsgallery2_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_rsgallery2_files` ( `id` int(9) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `descr` text DEFAULT NULL, `gallery_id` int(9) unsigned NOT NULL DEFAULT 0, `title` varchar(50) NOT NULL DEFAULT '', `hits` int(11) unsigned NOT NULL DEFAULT 0, `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `rating` int(10) unsigned NOT NULL DEFAULT 0, `votes` int(10) unsigned NOT NULL DEFAULT 0, `comments` int(10) unsigned NOT NULL DEFAULT 0, `published` tinyint(1) NOT NULL DEFAULT 1, `checked_out` int(11) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(9) unsigned NOT NULL DEFAULT 0, `approved` tinyint(1) unsigned NOT NULL DEFAULT 1, `userid` int(10) NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `UK_name` (`name`), KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_rsgallery2_files` -- LOCK TABLES `rodam_rsgallery2_files` WRITE; /*!40000 ALTER TABLE `rodam_rsgallery2_files` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_rsgallery2_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_rsgallery2_galleries` -- DROP TABLE IF EXISTS `rodam_rsgallery2_galleries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_rsgallery2_galleries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent` int(11) NOT NULL DEFAULT 0, `name` varchar(255) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `hits` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, `user` tinyint(4) NOT NULL DEFAULT 0, `uid` int(11) unsigned NOT NULL DEFAULT 0, `allowed` varchar(100) NOT NULL DEFAULT '0', `thumb_id` int(11) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_rsgallery2_galleries` -- LOCK TABLES `rodam_rsgallery2_galleries` WRITE; /*!40000 ALTER TABLE `rodam_rsgallery2_galleries` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_rsgallery2_galleries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_sections` -- DROP TABLE IF EXISTS `rodam_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_sections` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `scope` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `count` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_scope` (`scope`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_sections` -- LOCK TABLES `rodam_sections` WRITE; /*!40000 ALTER TABLE `rodam_sections` DISABLE KEYS */; INSERT INTO `rodam_sections` VALUES (1,'News','The News','articles.jpg','content','right','Select a news topic \r\n\r\nfrom the list below, then select a news article to read.',1,0,'0000-00-00 00:00:00',1,0,1,''), (2,'Newsflashes','Newsflashes','','content','left','',1,0,'0000-00-00 00:00:00',2,0,1,''), (3,'FAQs','Frequently Asked Questions','pastarchives.jpg','content','left','From the list below choose one of our FAQs topics, then select an \r\n\r\nFAQ to read. If you have a question which is not in this section, please contact us.',1,0,'0000-00-00 00:00:00',2,0,1,''); /*!40000 ALTER TABLE `rodam_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_session` -- DROP TABLE IF EXISTS `rodam_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_session` ( `username` varchar(50) DEFAULT '', `time` varchar(14) DEFAULT '', `session_id` varchar(200) NOT NULL DEFAULT '0', `guest` tinyint(4) DEFAULT 1, `userid` int(11) DEFAULT 0, `usertype` varchar(50) DEFAULT '', `gid` tinyint(3) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`session_id`), KEY `whosonline` (`guest`,`usertype`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_session` -- LOCK TABLES `rodam_session` WRITE; /*!40000 ALTER TABLE `rodam_session` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_stats_agents` -- DROP TABLE IF EXISTS `rodam_stats_agents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_stats_agents` ( `agent` varchar(255) NOT NULL DEFAULT '', `type` tinyint(1) unsigned NOT NULL DEFAULT 0, `hits` int(11) unsigned NOT NULL DEFAULT 1 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_stats_agents` -- LOCK TABLES `rodam_stats_agents` WRITE; /*!40000 ALTER TABLE `rodam_stats_agents` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_stats_agents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_steckbriefe_details` -- DROP TABLE IF EXISTS `rodam_steckbriefe_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_steckbriefe_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `spitzname` varchar(50) DEFAULT NULL, `geburtsort` varchar(50) DEFAULT NULL, `geburtsdatum` varchar(10) DEFAULT NULL, `hobbies` varchar(50) DEFAULT NULL, `con_position` varchar(50) DEFAULT NULL, `vorbilder` varchar(50) DEFAULT NULL, `lieblingsverein` varchar(50) DEFAULT NULL, `eigenschaften` varchar(50) DEFAULT NULL, `alte_vereine` varchar(50) DEFAULT NULL, `zusatz1` varchar(100) DEFAULT NULL, `zusatz2` varchar(100) DEFAULT NULL, `zusatz3` varchar(100) DEFAULT NULL, `website` varchar(100) DEFAULT NULL, `zusatz4` mediumtext DEFAULT NULL, `motto` mediumtext DEFAULT NULL, `image` varchar(100) DEFAULT NULL, `imagepos` varchar(20) DEFAULT NULL, `email_to` varchar(100) DEFAULT NULL, `default_con` tinyint(1) unsigned NOT NULL DEFAULT 0, `published` tinyint(1) unsigned NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, `user_id` int(11) NOT NULL DEFAULT 0, `catid` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_steckbriefe_details` -- LOCK TABLES `rodam_steckbriefe_details` WRITE; /*!40000 ALTER TABLE `rodam_steckbriefe_details` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_steckbriefe_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_template_positions` -- DROP TABLE IF EXISTS `rodam_template_positions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_template_positions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `position` varchar(10) NOT NULL DEFAULT '', `description` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_template_positions` -- LOCK TABLES `rodam_template_positions` WRITE; /*!40000 ALTER TABLE `rodam_template_positions` DISABLE KEYS */; INSERT INTO `rodam_template_positions` VALUES (1,'left',''), (2,'right',''), (3,'top',''), (4,'bottom',''), (5,'inset',''), (6,'banner',''), (7,'header',''), (8,'footer',''), (9,'newsflash',''), (10,'legals',''), (11,'pathway',''), (12,'toolbar',''), (13,'cpanel',''), (14,'user1',''), (15,'user2',''), (16,'user3',''), (17,'user4',''), (18,'user5',''), (19,'user6',''), (20,'user7',''), (21,'user8',''), (22,'user9',''), (23,'advert1',''), (24,'advert2',''), (25,'advert3',''), (26,'icon',''), (27,'debug',''); /*!40000 ALTER TABLE `rodam_template_positions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_templates_menu` -- DROP TABLE IF EXISTS `rodam_templates_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_templates_menu` ( `template` varchar(50) NOT NULL DEFAULT '', `menuid` int(11) NOT NULL DEFAULT 0, `client_id` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`template`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_templates_menu` -- LOCK TABLES `rodam_templates_menu` WRITE; /*!40000 ALTER TABLE `rodam_templates_menu` DISABLE KEYS */; INSERT INTO `rodam_templates_menu` VALUES ('owtweb_rodam',0,0), ('joomla_admin',0,1); /*!40000 ALTER TABLE `rodam_templates_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_users` -- DROP TABLE IF EXISTS `rodam_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `username` varchar(25) NOT NULL DEFAULT '', `email` varchar(100) NOT NULL DEFAULT '', `password` varchar(100) NOT NULL DEFAULT '', `usertype` varchar(25) NOT NULL DEFAULT '', `block` tinyint(4) NOT NULL DEFAULT 0, `sendEmail` tinyint(4) DEFAULT 0, `gid` tinyint(3) unsigned NOT NULL DEFAULT 1, `registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `activation` varchar(100) NOT NULL DEFAULT '', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `usertype` (`usertype`), KEY `idx_name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=64 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_users` -- LOCK TABLES `rodam_users` WRITE; /*!40000 ALTER TABLE `rodam_users` DISABLE KEYS */; INSERT INTO `rodam_users` VALUES (62,'Administrator','admin','markus.mascelli@chello.at','5a9361b28ee51795f1e82d9054919034','Super \r\n\r\nAdministrator',0,1,25,'2006-06-04 21:35:31','2008-10-26 21:40:34','','editor='), (63,'Markus A. Mascelli','mam','mam@heimam.at','5a9361b28ee51795f1e82d9054919034','',0,0,18,'2008-10-26 19:17:00','2009-03-06 06:33:47','','editor=tinymce'); /*!40000 ALTER TABLE `rodam_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_usertypes` -- DROP TABLE IF EXISTS `rodam_usertypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_usertypes` ( `id` tinyint(3) unsigned NOT NULL DEFAULT 0, `name` varchar(50) NOT NULL DEFAULT '', `mask` varchar(11) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_usertypes` -- LOCK TABLES `rodam_usertypes` WRITE; /*!40000 ALTER TABLE `rodam_usertypes` DISABLE KEYS */; INSERT INTO `rodam_usertypes` VALUES (0,'superadministrator',''), (1,'administrator',''), (2,'editor',''), (3,'user',''), (4,'author',''), (5,'publisher',''), (6,'manager',''); /*!40000 ALTER TABLE `rodam_usertypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_weblinks` -- DROP TABLE IF EXISTS `rodam_weblinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_weblinks` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `catid` int(11) NOT NULL DEFAULT 0, `sid` int(11) NOT NULL DEFAULT 0, `title` varchar(250) NOT NULL DEFAULT '', `url` varchar(250) NOT NULL DEFAULT '', `description` varchar(250) NOT NULL DEFAULT '', `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `hits` int(11) NOT NULL DEFAULT 0, `published` tinyint(1) NOT NULL DEFAULT 0, `checked_out` int(11) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `archived` tinyint(1) NOT NULL DEFAULT 0, `approved` tinyint(1) NOT NULL DEFAULT 1, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `catid` (`catid`,`published`,`archived`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_weblinks` -- LOCK TABLES `rodam_weblinks` WRITE; /*!40000 ALTER TABLE `rodam_weblinks` DISABLE KEYS */; INSERT INTO `rodam_weblinks` VALUES (1,2,0,'Joomla!','http://www.joomla.org','Home of Joomla!','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'), (2,2,0,'php.net','http://www.php.net','The language that Joomla! is developed in','2004-07-07 11:33:24',0,1,0,'0000-00-00 00:00:00',3,0,1,''), (3,2,0,'MySQL','http://www.mysql.com','The database that Joomla! uses','2004-07-07 10:18:31',0,1,0,'0000-00-00 00:00:00',5,0,1,''), (4,2,0,'OpenSourceMatters','http://www.opensourcematters.org','Home of OSM','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'), (5,2,0,'Joomla! - Forums','http://forum.joomla.org','Joomla! Forums','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'); /*!40000 ALTER TABLE `rodam_weblinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoom` -- DROP TABLE IF EXISTS `rodam_zoom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoom` ( `catid` int(11) NOT NULL AUTO_INCREMENT, `catname` varchar(50) DEFAULT '0', `catdescr` varchar(255) DEFAULT NULL, `catdir` varchar(50) DEFAULT '0', `catimg` int(11) DEFAULT NULL, `catpassword` varchar(100) NOT NULL DEFAULT '', `catkeywords` varchar(240) NOT NULL DEFAULT '', `subcat_id` int(11) NOT NULL DEFAULT 0, `pos` int(3) NOT NULL DEFAULT 0, `hideMsg` tinyint(1) NOT NULL DEFAULT 0, `shared` tinyint(1) NOT NULL DEFAULT 0, `published` tinyint(1) NOT NULL DEFAULT 1, `uid` int(11) NOT NULL DEFAULT 0, `catmembers` varchar(240) NOT NULL DEFAULT '', PRIMARY KEY (`catid`), KEY `catdir_search` (`catdir`), KEY `rel_subcats` (`subcat_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoom` -- LOCK TABLES `rodam_zoom` WRITE; /*!40000 ALTER TABLE `rodam_zoom` DISABLE KEYS */; INSERT INTO `rodam_zoom` VALUES (1,'10 Years After - The Rotterdam Erasmus Students Re','','ZEMNKL',NULL,'','',0,0,0,1,1,62,'2'); /*!40000 ALTER TABLE `rodam_zoom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoom_comments` -- DROP TABLE IF EXISTS `rodam_zoom_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoom_comments` ( `cmtid` int(11) NOT NULL AUTO_INCREMENT, `imgid` int(11) NOT NULL DEFAULT 0, `cmtname` varchar(40) NOT NULL DEFAULT '', `cmtcontent` text NOT NULL, `cmtdate` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`cmtid`), KEY `imgid` (`imgid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoom_comments` -- LOCK TABLES `rodam_zoom_comments` WRITE; /*!40000 ALTER TABLE `rodam_zoom_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_zoom_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoom_ecards` -- DROP TABLE IF EXISTS `rodam_zoom_ecards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoom_ecards` ( `ecdid` varchar(25) NOT NULL DEFAULT '', `imgid` int(11) NOT NULL DEFAULT 0, `to_name` varchar(50) NOT NULL DEFAULT '', `from_name` varchar(50) NOT NULL DEFAULT '', `to_email` varchar(75) NOT NULL DEFAULT '', `from_email` varchar(75) NOT NULL DEFAULT '', `message` text NOT NULL, `end_date` date NOT NULL DEFAULT '0000-00-00', `user_ip` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`ecdid`), KEY `ecard_img` (`imgid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoom_ecards` -- LOCK TABLES `rodam_zoom_ecards` WRITE; /*!40000 ALTER TABLE `rodam_zoom_ecards` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_zoom_ecards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoom_editmon` -- DROP TABLE IF EXISTS `rodam_zoom_editmon`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoom_editmon` ( `edtid` int(11) NOT NULL AUTO_INCREMENT, `user_session` varchar(200) NOT NULL DEFAULT '0', `vote_time` varchar(14) DEFAULT NULL, `comment_time` varchar(14) DEFAULT NULL, `pass_time` varchar(14) DEFAULT NULL, `lightbox_time` varchar(14) DEFAULT NULL, `lightbox_file` varchar(40) DEFAULT NULL, `object_id` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`edtid`), KEY `edit_session` (`user_session`), KEY `object` (`object_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoom_editmon` -- LOCK TABLES `rodam_zoom_editmon` WRITE; /*!40000 ALTER TABLE `rodam_zoom_editmon` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_zoom_editmon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoom_getid3_cache` -- DROP TABLE IF EXISTS `rodam_zoom_getid3_cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoom_getid3_cache` ( `filename` varchar(255) NOT NULL DEFAULT '', `filesize` int(11) NOT NULL DEFAULT 0, `filetime` int(11) NOT NULL DEFAULT 0, `analyzetime` int(11) NOT NULL DEFAULT 0, `value` text NOT NULL, PRIMARY KEY (`filename`,`filesize`,`filetime`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoom_getid3_cache` -- LOCK TABLES `rodam_zoom_getid3_cache` WRITE; /*!40000 ALTER TABLE `rodam_zoom_getid3_cache` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_zoom_getid3_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoom_priv` -- DROP TABLE IF EXISTS `rodam_zoom_priv`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoom_priv` ( `gid` int(11) NOT NULL DEFAULT 0, `priv_upload` enum('0','1') NOT NULL DEFAULT '1', `priv_editmedium` enum('0','1') NOT NULL DEFAULT '1', `priv_delmedium` enum('0','1') NOT NULL DEFAULT '1', `priv_creategal` enum('0','1') NOT NULL DEFAULT '1', `priv_editgal` enum('0','1') NOT NULL DEFAULT '1', `priv_delgal` enum('0','1') NOT NULL DEFAULT '1', PRIMARY KEY (`gid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoom_priv` -- LOCK TABLES `rodam_zoom_priv` WRITE; /*!40000 ALTER TABLE `rodam_zoom_priv` DISABLE KEYS */; INSERT INTO `rodam_zoom_priv` VALUES (18,'1','0','0','0','0','0'), (19,'1','0','0','0','0','0'), (20,'1','0','0','0','0','0'), (21,'1','0','0','0','0','0'), (23,'1','0','0','0','0','0'), (24,'1','1','1','1','1','1'), (25,'1','1','1','1','1','1'); /*!40000 ALTER TABLE `rodam_zoom_priv` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoomfiles` -- DROP TABLE IF EXISTS `rodam_zoomfiles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoomfiles` ( `imgid` int(11) NOT NULL AUTO_INCREMENT, `imgname` varchar(50) NOT NULL DEFAULT '', `imgfilename` varchar(70) NOT NULL DEFAULT '', `imgdescr` varchar(255) DEFAULT NULL, `imgkeywords` varchar(255) DEFAULT NULL, `imgdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `imghits` bigint(20) NOT NULL DEFAULT 0, `votenum` int(11) NOT NULL DEFAULT 0, `votesum` int(11) NOT NULL DEFAULT 0, `published` tinyint(1) NOT NULL DEFAULT 1, `catid` int(11) NOT NULL DEFAULT 0, `uid` int(11) NOT NULL DEFAULT 0, `imgmembers` varchar(240) NOT NULL DEFAULT '', PRIMARY KEY (`imgid`), KEY `img_catid` (`catid`), KEY `img_user` (`uid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoomfiles` -- LOCK TABLES `rodam_zoomfiles` WRITE; /*!40000 ALTER TABLE `rodam_zoomfiles` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_zoomfiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `limesurvey` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `limesurvey` /*!40100 DEFAULT CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci */; USE `limesurvey`; -- -- Table structure for table `lime_answers` -- DROP TABLE IF EXISTS `lime_answers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_answers` ( `qid` int(11) NOT NULL DEFAULT 0, `code` varchar(5) NOT NULL DEFAULT '', `answer` text NOT NULL, `default_value` char(1) NOT NULL DEFAULT 'N', `assessment_value` int(11) NOT NULL DEFAULT 0, `sortorder` int(11) NOT NULL DEFAULT 0, `language` varchar(20) NOT NULL DEFAULT 'en', PRIMARY KEY (`qid`,`code`,`language`), KEY `answers_idx2` (`sortorder`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_answers` -- LOCK TABLES `lime_answers` WRITE; /*!40000 ALTER TABLE `lime_answers` DISABLE KEYS */; INSERT INTO `lime_answers` VALUES (269,'04','This ad would \r\n\r\nbe enough to get me to hire this lawyer','N',4,4,'en'), (269,'03','This ad suggests that the lawyer is interested in a life of frugal community service','N',3,3,'en'), (269,'02','This ad suggests the lawyer is on my side, not his own','N',2,2,'en'), (269,'01','This ad gives me confidence in the lawyers experience','N',1,1,'en'), (268,'3','Ad Three
','N',3,3,'en'), (268,'2','Ad Two
','N',2,2,'en'), (268,'1','Ad One
','N',1,1,'en'), (267,'03','How dare you insult me like that! I\'m YOUNG','N',3,3,'en'), (267,'02','Easy, my carer is doing it all for me','N',2,2,'en'), (267,'01','Very difficult to read, my eyesight is dim','N',1,1,'en'), (265,'80-','80 and over','N',80,15,'en'), (265,'75-79','75-79 Years','N',75,14,'en'), (265,'65-69','65-69 Years','N',65,12,'en'), (265,'70-74','70-74 Years','N',70,13,'en'), (265,'60-64','60-64 Years','N',60,11,'en'), (265,'55-59','55-59 Years','N',55,10,'en'), (265,'50-54','50-54 Years','N',50,9,'en'), (265,'40-44','40-44 Years','N',40,7,'en'), (265,'45-49','45-49 Years','N',45,8,'en'), (265,'35-39','35-39 Years','N',35,6,'en'), (265,'30-34','30-34 Years','N',30,5,'en'), (265,'25-29','25-29 Years','N',25,4,'en'), (265,'15-19','15-19 Years','N',15,2,'en'), (265,'20-24','20-24 Years','N',20,3,'en'), (265,'0-14','0-14 Years','N',0,1,'en'), (270,'01','This ad gives me confidence in the lawyers experience','N',1,1,'en'), (270,'02','This ad suggests the lawyer is on my side, not his own','N',2,2,'en'), (270,'03','This ad suggests that the lawyer is interested in a life of frugal community service','N',3,3,'en'), (270,'04','This ad would be enough to get me to hire this lawyer','N',4,4,'en'), (271,'01','This ad gives me confidence in the lawyers experience','N',1,1,'en'), (271,'02','This ad suggests the lawyer is on my side, not his own','N',2,2,'en'), (271,'03','This ad suggests that the lawyer is interested in a life of frugal community service','N',3,3,'en'), (271,'04','This ad would be enough to get me to hire this lawyer','N',4,4,'en'), (273,'c1','answer_en1','',0,1,'en'), (273,'c1','answer_hr1','',0,1,'hr'), (273,'c1','answer_nl1','',0,1,'nl'), (273,'c2','answer_en2','',0,2,'en'), (273,'c2','answer_hr2','',0,2,'hr'), (273,'c2','answer_nl2','',0,2,'nl'), (273,'c3','answer_en3','',0,3,'en'), (273,'c3','answer_hr3','',0,3,'hr'), (273,'c3','answer_nl3','',0,3,'nl'), (274,'A1','FBI','N',0,0,'en'), (274,'A2','CIA','N',0,1,'en'), (274,'A3','G5','N',0,2,'en'), (274,'A4','NASA','N',0,3,'en'), (275,'B1','Darth Vader','N',0,0,'en'), (275,'B2','Luke Skywalker','N',0,1,'en'), (275,'B3','Princess Leia','N',0,2,'en'), (275,'B4','Jabba the Hut','N',0,3,'en'), (276,'C1','I am blonde','N',0,0,'en'), (276,'C2','I am blue','N',0,1,'en'), (276,'C3','I am pissed','N',0,2,'en'), (276,'C4','I am drunk','N',0,3,'en'), (277,'E1','Pain','N',0,0,'en'), (277,'E2','Pleasure','N',0,1,'en'), (277,'E3','Luck','N',0,2,'en'), (277,'E4','Happiness','N',0,3,'en'), (278,'F1','Deannan Troi','N',0,0,'en'), (278,'F2','Wesley Crusher','N',0,1,'en'), (278,'F3','Jean-Luc Picard','N',0,2,'en'), (278,'F4','Seven of Nine','N',0,3,'en'), (279,'H1','Deannan Troi','N',0,0,'en'), (279,'H2','Wesley Crusher','N',0,1,'en'), (279,'H3','Data','N',0,2,'en'), (279,'H4','Jean-Luc Picard','N',0,3,'en'), (280,'1','sweet|bitter','N',1,1,'en'), (280,'2','fair|unfair','N',2,2,'en'), (280,'3','warm|cold','N',3,3,'en'), (280,'4','beautiful|ugly','N',4,4,'en'), (280,'5','meaningful|meaningless','N',5,5,'en'), (280,'6','bright|dark','N',6,6,'en'), (281,'1','television program','N',1,1,'en'), (281,'2','radio program','N',2,2,'en'), (281,'3','cinema program','N',3,3,'en'), (282,'Q1','blue','N',0,0,'en'), (282,'Q2','red','N',0,1,'en'), (282,'Q3','green','N',0,2,'en'), (289,'R1','Red','N',0,0,'en'), (289,'R2','Green','N',0,1,'en'), (289,'R3','Blue','N',0,2,'en'), (294,'O1','Red','N',0,0,'en'), (294,'O2','Green','N',0,1,'en'), (294,'O3','Blue','N',0,2,'en'), (295,'L1',' Green','N',0,0,'en'), (295,'L2','Red','N',0,1,'en'), (295,'L3','Blue','N',0,2,'en'), (297,'EC1','Green','N',0,0,'en'), (297,'EC2','Red','N',0,1,'en'), (297,'EC3','Blue','N',0,2,'en'), (298,'P1','I am glad','N',0,0,'en'), (298,'P2','I don\'t care','N',0,1,'en'), (298,'P3','I am unhappy','N',0,2,'en'), (299,'M1','Yes','N',0,0,'en'), (299,'M2','No','N',0,1,'en'), (299,'M3','Maybe','N',0,2,'en'), (300,'A1','FBI','N',0,0,'en'), (300,'A2','CIA','N',0,1,'en'), (300,'A3','G5','N',0,2,'en'), (300,'A4','NASA','N',0,3,'en'), (301,'B1','Darth Vader','N',0,0,'en'), (301,'B2','Luke Skywalker','N',0,1,'en'), (301,'B3','Princess Leia','N',0,2,'en'), (301,'B4','Jabba the Hut','N',0,3,'en'), (302,'C1','I am blonde','N',0,0,'en'), (302,'C2','I am blue','N',0,1,'en'), (302,'C3','I am pissed','N',0,2,'en'), (302,'C4','I am drunk','N',0,3,'en'), (303,'E1','Pain','N',0,0,'en'), (303,'E2','Pleasure','N',0,1,'en'), (303,'E3','Luck','N',0,2,'en'), (303,'E4','Happiness','N',0,3,'en'), (304,'F1','Deannan Troi','N',0,0,'en'), (304,'F2','Wesley Crusher','N',0,1,'en'), (304,'F3','Jean-Luc Picard','N',0,2,'en'), (304,'F4','Seven of Nine','N',0,3,'en'), (305,'H1','Deannan Troi','N',0,0,'en'), (305,'H2','Wesley Crusher','N',0,1,'en'), (305,'H3','Data','N',0,2,'en'), (305,'H4','Jean-Luc Picard','N',0,3,'en'), (306,'1','sweet|bitter','N',1,1,'en'), (306,'2','fair|unfair','N',2,2,'en'), (306,'3','warm|cold','N',3,3,'en'), (306,'4','beautiful|ugly','N',4,4,'en'), (306,'5','meaningful|meaningless','N',5,5,'en'), (306,'6','bright|dark','N',6,6,'en'), (307,'1','television program','N',1,1,'en'), (307,'2','radio program','N',2,2,'en'), (307,'3','cinema program','N',3,3,'en'), (308,'1','Google','N',1,1,'en'), (308,'2','Yahoo','N',2,2,'en'), (308,'3','Microsoft Search','N',3,3,'en'), (309,'1','Google','N',1,1,'en'), (309,'2','Yahoo','N',2,2,'en'), (309,'3','Microsoft Search','N',3,3,'en'), (310,'1','television program','N',1,1,'en'), (310,'2','radio program','N',2,2,'en'), (310,'3','cinema program','N',3,3,'en'), (311,'1','Google','N',1,1,'en'), (311,'2','Yahoo','N',2,2,'en'), (311,'3','Microsoft Search','N',3,3,'en'), (312,'F1','Deannan Troi','N',0,0,'en'), (312,'F2','Wesley Crusher','N',0,1,'en'), (312,'F3','Jean-Luc Picard','N',0,2,'en'), (312,'F4','Seven of Nine','N',0,3,'en'), (313,'Q1','blue','N',0,0,'en'), (313,'Q2','red','N',0,1,'en'), (313,'Q3','green','N',0,2,'en'), (317,'Q1','blue','N',0,0,'en'), (317,'Q2','red','N',0,1,'en'), (317,'Q3','green','N',0,2,'en'), (318,'Q1','blue is the colour of the sky. the sky is very high. the sky is also very big','N',0,0,'en'), (318,'Q2','red is the colour of blood. blood is very useful. blood is a very nice color','N',0,1,'en'), (318,'Q3','green is the color of trees. I like trees. I especially like climbing them with a rope and harness.','N',0,2,'en'), (322,'R1','Red','N',0,0,'en'), (322,'R2','Green','N',0,1,'en'), (322,'R3','Blue','N',0,2,'en'), (325,'1','Apples','N',1,1,'en'), (325,'2','Oranges','N',2,2,'en'), (325,'3','Bananas','N',3,3,'en'), (326,'1','Apples','N',1,1,'en'), (326,'2','Oranges','N',2,2,'en'), (326,'3','Bananas','N',3,3,'en'), (328,'1','Apples','N',1,1,'en'), (328,'2','Oranges','N',2,2,'en'), (328,'3','Bananas','N',3,3,'en'), (329,'1','Apples','N',1,1,'en'), (329,'2','Oranges','N',2,2,'en'), (329,'3','Bananas','N',3,3,'en'), (332,'O1','Red','N',0,0,'en'), (332,'O2','Green','N',0,1,'en'), (332,'O3','Blue','N',0,2,'en'), (333,'L1',' Green','N',0,0,'en'), (333,'L2','Red','N',0,1,'en'), (333,'L3','Blue','N',0,2,'en'), (335,'EC1','Green','N',0,0,'en'), (335,'EC2','Red','N',0,1,'en'), (335,'EC3','Blue','N',0,2,'en'), (336,'P1','I am glad','N',0,0,'en'), (336,'P2','I don\'t care','N',0,1,'en'), (336,'P3','I am unhappy','N',0,2,'en'), (337,'M1','Yes','N',0,0,'en'), (337,'M2','No','N',0,1,'en'), (337,'M3','Maybe','N',0,2,'en'), (338,'8','Universität ohne Abschluss','N',8,9,'de'), (338,'7','Fachhochschule mit Abschluss','N',7,8,'de'), (338,'6','Fachhochschule ohne Abschluss','N',6,7,'de'), (338,'5','Berufsbildende Höhere Schule','N',5,6,'de'), (338,'4','Allgemeinbildende Höhere Schule','N',4,5,'de'), (338,'3','Lehre','N',3,4,'de'), (338,'2','Pflichtschule','N',2,3,'de'), (338,'1','kein Abschluss','N',1,2,'de'), (338,'9','Universität mit Abschluss','N',9,10,'de'); /*!40000 ALTER TABLE `lime_answers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_assessments` -- DROP TABLE IF EXISTS `lime_assessments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_assessments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sid` int(11) NOT NULL DEFAULT 0, `scope` varchar(5) NOT NULL DEFAULT '', `gid` int(11) NOT NULL DEFAULT 0, `name` text NOT NULL, `minimum` varchar(50) NOT NULL DEFAULT '', `maximum` varchar(50) NOT NULL DEFAULT '', `message` text NOT NULL, `language` varchar(20) NOT NULL DEFAULT 'en', PRIMARY KEY (`id`,`language`), KEY `assessments_idx2` (`sid`), KEY `assessments_idx3` (`gid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_assessments` -- LOCK TABLES `lime_assessments` WRITE; /*!40000 ALTER TABLE `lime_assessments` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_assessments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_conditions` -- DROP TABLE IF EXISTS `lime_conditions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_conditions` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `qid` int(11) NOT NULL DEFAULT 0, `scenario` int(11) NOT NULL DEFAULT 1, `cqid` int(11) NOT NULL DEFAULT 0, `cfieldname` varchar(50) NOT NULL DEFAULT '', `method` varchar(2) NOT NULL DEFAULT '', `value` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`cid`), KEY `conditions_idx2` (`qid`), KEY `conditions_idx3` (`cqid`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_conditions` -- LOCK TABLES `lime_conditions` WRITE; /*!40000 ALTER TABLE `lime_conditions` DISABLE KEYS */; INSERT INTO `lime_conditions` VALUES (8,271,1,268,'29975X76X268','==','3'), (7,270,1,268,'29975X76X268','==','2'), (6,269,1,268,'29975X76X268','==','1'), (5,267,1,265,'29975X74X265','==','80-'), (9,321,1,320,'29846X85X320','==','M'); /*!40000 ALTER TABLE `lime_conditions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_groups` -- DROP TABLE IF EXISTS `lime_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_groups` ( `gid` int(11) NOT NULL AUTO_INCREMENT, `sid` int(11) NOT NULL DEFAULT 0, `group_name` varchar(100) NOT NULL DEFAULT '', `group_order` int(11) NOT NULL DEFAULT 0, `description` text DEFAULT NULL, `language` varchar(20) NOT NULL DEFAULT 'en', PRIMARY KEY (`gid`,`language`), KEY `groups_idx2` (`sid`) ) ENGINE=MyISAM AUTO_INCREMENT=88 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_groups` -- LOCK TABLES `lime_groups` WRITE; /*!40000 ALTER TABLE `lime_groups` DISABLE KEYS */; INSERT INTO `lime_groups` VALUES (73,67268,'PERSÖNLICHE ANGABEN',0,'','de'), (72,67268,'9. ÖKONOMISCHE ZIELE',9,'','de'), (71,67268,'8. WIRKUNGEN BEIM UNTERNEHMEN',8,'','de'), (67,67268,'4. RESSOURCEN & PARTNER',4,'','de'), (65,67268,'2. MITARBEITER',2,'','de'), (74,29975,'Group 1',0,'','en'), (64,67268,'1. UNTERNEHMENSFÜHRUNG',1,'','de'), (70,67268,'7. WIRKUNGEN BEI KONSUMENTEN',7,'','de'), (69,67268,'6. WIRKUNGEN BEI MITARBEITERN',6,'','de'), (68,67268,'5. STRUKTUREN & PROZESSE',5,'','de'), (66,67268,'3. STRATEGIE',3,'','de'), (63,47876,'PERSÖNLICHE ANGABEN',0,'','de'), (62,47876,'9. ÖKONOMISCHE ZIELE',9,'','de'), (61,47876,'8. WIRKUNGEN BEIM UNTERNEHMEN',8,'','de'), (60,47876,'7. WIRKUNGEN BEI KONSUMENTEN',7,'','de'), (59,47876,'6. WIRKUNGEN BEI MITARBEITERN',6,'','de'), (58,47876,'5. STRUKTUREN & PROZESSE',5,'','de'), (57,47876,'4. RESSOURCEN & PARTNER',4,'','de'), (56,47876,'3. STRATEGIE',3,'','de'), (54,47876,'1. UNTERNEHMENSFÜHRUNG',1,'','de'), (55,47876,'2. MITARBEITER',2,'','de'), (75,29975,'Group 2',1,'','en'), (76,29975,'Group 3',2,'','en'), (77,31565,'group_name_hr',0,'description_hr','hr'), (77,31565,'group_name_nl',0,'description_nl','nl'), (77,31565,'group_name_en',0,'description_en','en'), (78,40,'Array Questions',0,'This is a group with the different array questions.','en'), (79,40,'Text Questions',4,'','en'), (80,40,'Mask Questions',1,'This is the group description.','en'), (81,40,'Single Choice Questions',3,'','en'), (82,40,'Multiple Choice Questions',2,'This group consist only of Multiple Choice questions.','en'), (83,29846,'Array Questions',0,'This is a group with the different array questions.','en'), (84,29846,'Text Questions',4,'','en'), (85,29846,'Mask Questions',1,'This is the group description.','en'), (86,29846,'Single Choice Questions',3,'','en'), (87,29846,'Multiple Choice Questions',2,'This group consist only of Multiple Choice questions.','en'); /*!40000 ALTER TABLE `lime_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_labels` -- DROP TABLE IF EXISTS `lime_labels`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_labels` ( `lid` int(11) NOT NULL DEFAULT 0, `code` varchar(5) NOT NULL DEFAULT '', `title` text DEFAULT NULL, `sortorder` int(11) NOT NULL DEFAULT 0, `assessment_value` int(11) NOT NULL DEFAULT 0, `language` varchar(20) NOT NULL DEFAULT 'en', PRIMARY KEY (`lid`,`sortorder`,`language`), KEY `ixcode` (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_labels` -- LOCK TABLES `lime_labels` WRITE; /*!40000 ALTER TABLE `lime_labels` DISABLE KEYS */; INSERT INTO `lime_labels` VALUES (1,'1','Burgenland',1,1,'de'), (1,'2','Kärnten',2,2,'de'), (1,'3','Niederösterreich',3,3,'de'), (1,'4','Oberösterreich',4,4,'de'), (1,'5','Salzburg',5,5,'de'), (1,'6','Steiermark',6,6,'de'), (1,'7','Tirol',7,7,'de'), (1,'8','Vorarlberg',8,8,'de'), (1,'9','Wien',9,9,'de'), (2,'3','trifft teilweise zu',3,3,'de'), (2,'4','trifft eher zu',2,4,'de'), (2,'1','trifft überhaupt nicht zu',4,1,'de'), (2,'5','trifft vollkommen zu',1,5,'de'), (2,'2','trifft eher nicht zu',5,2,'de'), (3,'1','Sehr gut',1,1,'de'), (3,'1','Sehr gut',1,1,'de-informal'), (3,'2','Gut',2,2,'de'), (3,'2','Gut',2,2,'de-informal'), (3,'3','Befriedigend',3,3,'de'), (3,'3','Befriedigend',3,3,'de-informal'), (3,'4','Ausreichend',4,4,'de'), (3,'4','Ausreichend',4,4,'de-informal'), (3,'5','Mangelhaft',5,5,'de'), (3,'5','Mangelhaft',5,5,'de-informal'), (3,'6','Ungenügend',6,6,'de'), (3,'6','Ungenügend',6,6,'de-informal'), (4,'1','kein Schulabschluss',1,1,'de'), (4,'2','Pflichtschulabschluss',2,2,'de'), (4,'3','Berufsschulabschluss',3,3,'de'), (4,'4','Berufsreife',4,4,'de'), (4,'5','Fach- oder Handelsschulabschluss',5,5,'de'), (4,'6','Matura',6,6,'de'), (4,'7','Fachhochschulabschluss',7,7,'de'), (4,'8','Hochschulabschluss',8,8,'de'), (22,'1','kein Abschluss',1,1,'de'), (5,'135','Oman',135,135,'de'), (5,'134','Österreich',134,134,'de'), (5,'133','Norwegen',133,133,'de'), (5,'132','Niue',132,132,'de'), (5,'131','Nigeria',131,131,'de'), (5,'130','Niger',130,130,'de'), (5,'129','Niederlande',129,129,'de'), (5,'128','Nicaragua',128,128,'de'), (5,'127','Neuseeland',127,127,'de'), (5,'126','Nepal',126,126,'de'), (5,'125','Nauru',125,125,'de'), (5,'124','Namibia',124,124,'de'), (5,'123','Myanmar',123,123,'de'), (5,'121','Montenegro',121,121,'de'), (5,'122','Mosambik',122,122,'de'), (5,'120','Mongolei',120,120,'de'), (5,'119','Monaco',119,119,'de'), (5,'118','Moldau (Republik Moldau)',118,118,'de'), (5,'117','Mikronesien',117,117,'de'), (5,'116','Mexiko',116,116,'de'), (5,'115','Mauritius',115,115,'de'), (5,'114','Mauretanien',114,114,'de'), (5,'113','Marshallinseln',113,113,'de'), (5,'112','Marokko',112,112,'de'), (5,'109','Malediven',109,109,'de'), (5,'110','Mali',110,110,'de'), (5,'111','Malta',111,111,'de'), (5,'108','Malaysia',108,108,'de'), (5,'107','Malawi',107,107,'de'), (5,'106','Madagaskar',106,106,'de'), (5,'105','Macau',105,105,'de'), (5,'104','Luxemburg',104,104,'de'), (5,'103','Litauen',103,103,'de'), (5,'102','Liechtenstein',102,102,'de'), (5,'101','Libyen / Libysch-Arabische Dschamahirija',101,101,'de'), (5,'100','Liberia',100,100,'de'), (5,'99','Libanon',99,99,'de'), (5,'98','Lettland',98,98,'de'), (5,'97','Lesotho',97,97,'de'), (5,'96','Laos',96,96,'de'), (5,'95','Kuwait',95,95,'de'), (5,'94','Kuba',94,94,'de'), (5,'93','Kroatien',93,93,'de'), (5,'92','Korea (Republik Korea, Südkorea)',92,92,'de'), (5,'91','Korea (Demokratische Volksrepublik, Nordkorea)',91,91,'de'), (5,'90','Kongo (Republik Kongo)',90,90,'de'), (5,'89','Kongo (Demokratische Republik Kongo)',89,89,'de'), (5,'88','Komoren',88,88,'de'), (5,'87','Kolumbien',87,87,'de'), (5,'86','Kiribati',86,86,'de'), (5,'85','Kirgisistan',85,85,'de'), (5,'84','Kenia',84,84,'de'), (5,'83','Katar',83,83,'de'), (5,'82','Kasachstan',82,82,'de'), (5,'81','Kap Verde',81,81,'de'), (5,'80','Kanada',80,80,'de'), (5,'79','Kamerun',79,79,'de'), (5,'78','Kambodscha',78,78,'de'), (5,'77','Kaiman-Inseln',77,77,'de'), (5,'75','Jemen',75,75,'de'), (5,'76','Jordanien',76,76,'de'), (5,'74','Japan',74,74,'de'), (5,'73','Jamaika',73,73,'de'), (5,'72','Italien',72,72,'de'), (5,'71','Israel',71,71,'de'), (5,'70','Island',70,70,'de'), (5,'68','Iran',68,68,'de'), (5,'69','Irland',69,69,'de'), (5,'67','Irak',67,67,'de'), (5,'66','Indonesien',66,66,'de'), (5,'65','Indien',65,65,'de'), (5,'64','Hongkong',64,64,'de'), (5,'63','Honduras',63,63,'de'), (5,'61','Haiti',61,61,'de'), (5,'62','Heiliger Stuhl / Vatikan',62,62,'de'), (5,'60','Guyana',60,60,'de'), (5,'59','Guinea-Bissau',59,59,'de'), (5,'58','Guinea',58,58,'de'), (5,'57','Guatemala',57,57,'de'), (5,'56','Großbritannien / Vereinigtes Königreich',56,56,'de'), (5,'54','Grenada',54,54,'de'), (5,'55','Griechenland',55,55,'de'), (5,'53','Ghana',53,53,'de'), (5,'52','Georgien',52,52,'de'), (5,'51','Gambia',51,51,'de'), (5,'50','Gabun',50,50,'de'), (5,'49','Frankreich',49,49,'de'), (5,'48','Finnland',48,48,'de'), (5,'47','Fidschi',47,47,'de'), (5,'45','Eritrea',45,45,'de'), (5,'46','Estland',46,46,'de'), (5,'44','El Salvador',44,44,'de'), (5,'43','ehemalige jugoslawische Republik Mazedonien',43,43,'de'), (5,'42','Ecuador',42,42,'de'), (5,'41','Dschibuti',41,41,'de'), (5,'39','Dominica',39,39,'de'), (5,'40','Dominikanische Republik',40,40,'de'), (5,'38','Deutschland',38,38,'de'), (5,'37','Dänemark',37,37,'de'), (5,'35','Costa Rica',35,35,'de'), (5,'36','Côte d\'Ivoire',36,36,'de'), (5,'34','Cookinseln',34,34,'de'), (5,'33','China',33,33,'de'), (5,'32','Chile',32,32,'de'), (5,'31','Burundi',31,31,'de'), (5,'30','Burkina Faso',30,30,'de'), (5,'29','Bulgarien',29,29,'de'), (5,'28','Brunei Darussalam',28,28,'de'), (5,'27','Britische Jungferninseln',27,27,'de'), (5,'26','Brasilien',26,26,'de'), (5,'25','Botsuana',25,25,'de'), (5,'24','Bosnien und Herzegowina',24,24,'de'), (5,'23','Bolivien',23,23,'de'), (5,'21','Benin',21,21,'de'), (5,'22','Bhutan',22,22,'de'), (5,'20','Belize',20,20,'de'), (5,'18','Belarus',18,18,'de'), (5,'19','Belgien',19,19,'de'), (5,'16','Bangladesch',16,16,'de'), (5,'17','Barbados',17,17,'de'), (5,'15','Bahrain',15,15,'de'), (5,'96','Laos',96,96,'de-informal'), (5,'97','Lesotho',97,97,'de-informal'), (5,'98','Lettland',98,98,'de-informal'), (5,'99','Libanon',99,99,'de-informal'), (5,'100','Liberia',100,100,'de-informal'), (5,'101','Libyen / Libysch-Arabische Dschamahirija',101,101,'de-informal'), (5,'102','Liechtenstein',102,102,'de-informal'), (5,'103','Litauen',103,103,'de-informal'), (5,'104','Luxemburg',104,104,'de-informal'), (5,'105','Macau',105,105,'de-informal'), (5,'106','Madagaskar',106,106,'de-informal'), (5,'107','Malawi',107,107,'de-informal'), (5,'108','Malaysia',108,108,'de-informal'), (5,'109','Malediven',109,109,'de-informal'), (5,'110','Mali',110,110,'de-informal'), (5,'111','Malta',111,111,'de-informal'), (5,'112','Marokko',112,112,'de-informal'), (5,'113','Marshallinseln',113,113,'de-informal'), (5,'114','Mauretanien',114,114,'de-informal'), (5,'115','Mauritius',115,115,'de-informal'), (5,'116','Mexiko',116,116,'de-informal'), (5,'117','Mikronesien',117,117,'de-informal'), (5,'118','Moldau (Republik Moldau)',118,118,'de-informal'), (5,'93','Kroatien',93,93,'de-informal'), (5,'14','Bahamas',14,14,'de'), (5,'13','Australien',13,13,'de'), (5,'12','Aserbaidschan',12,12,'de'), (5,'11','Armenien',11,11,'de'), (5,'9','Antigua und Barbuda',9,9,'de'), (5,'10','Argentinien',10,10,'de'), (5,'7','Andorra',7,7,'de'), (5,'8','Angola',8,8,'de'), (5,'6','Algerien',6,6,'de'), (5,'5','Albanien',5,5,'de'), (5,'3','Äthiopien',3,3,'de'), (5,'4','Afghanistan',4,4,'de'), (5,'2','Äquatorialguinea',2,2,'de'), (5,'1','Ägypten',1,1,'de'), (5,'201','Zentralafrikanische Republik',201,201,'de-informal'), (5,'200','Vietnam',200,200,'de-informal'), (5,'199','Vereinigte Arabische Emirate',199,199,'de-informal'), (5,'198','Venezuela',198,198,'de-informal'), (5,'197','Vanuatu',197,197,'de-informal'), (5,'196','Usbekistan',196,196,'de-informal'), (5,'195','USA / Vereinigte Staaten',195,195,'de-informal'), (5,'194','Uruguay',194,194,'de-informal'), (5,'193','Ungarn',193,193,'de-informal'), (5,'191','Uganda',191,191,'de-informal'), (5,'192','Ukraine',192,192,'de-informal'), (5,'190','Tuvalu',190,190,'de-informal'), (5,'189','Turks- und Caicosinseln',189,189,'de-informal'), (5,'188','Turkmenistan',188,188,'de-informal'), (5,'187','Tunesien',187,187,'de-informal'), (5,'186','Türkei',186,186,'de-informal'), (5,'185','Tschechische Republik',185,185,'de-informal'), (5,'183','Trinidad und Tobago',183,183,'de-informal'), (5,'184','Tschad',184,184,'de-informal'), (5,'182','Tonga',182,182,'de-informal'), (5,'180','Timor-Leste',180,180,'de-informal'), (5,'181','Togo',181,181,'de-informal'), (5,'179','Thailand',179,179,'de-informal'), (5,'178','Tansania',178,178,'de-informal'), (5,'177','Taiwan',177,177,'de-informal'), (5,'176','Tadschikistan',176,176,'de-informal'), (5,'175','São Tomé und Príncipe',175,175,'de-informal'), (5,'174','Syrien',174,174,'de-informal'), (5,'173','Swasiland',173,173,'de-informal'), (5,'172','Suriname',172,172,'de-informal'), (5,'171','Südafrika',171,171,'de-informal'), (5,'170','Sudan',170,170,'de-informal'), (5,'169','St. Vincent und die Grenadinen',169,169,'de-informal'), (5,'168','St. Lucia',168,168,'de-informal'), (5,'167','St. Kitts und Nevis',167,167,'de-informal'), (5,'166','Sri Lanka',166,166,'de-informal'), (5,'165','Spanien',165,165,'de-informal'), (5,'164','Somalia',164,164,'de-informal'), (5,'163','Slowenien',163,163,'de-informal'), (5,'162','Slowakei',162,162,'de-informal'), (5,'161','Singapur',161,161,'de-informal'), (5,'160','Simbabwe',160,160,'de-informal'), (5,'159','Sierra Leone',159,159,'de-informal'), (5,'158','Seychellen',158,158,'de-informal'), (5,'157','Serbien',157,157,'de-informal'), (5,'156','Senegal',156,156,'de-informal'), (5,'155','Schweiz',155,155,'de-informal'), (5,'154','Schweden',154,154,'de-informal'), (5,'153','Saudi-Arabien',153,153,'de-informal'), (5,'152','San Marino',152,152,'de-informal'), (5,'151','Samoa',151,151,'de-informal'), (5,'149','Salomonen',149,149,'de-informal'), (5,'150','Sambia',150,150,'de-informal'), (5,'148','Russische Föderation',148,148,'de-informal'), (5,'147','Rumänien',147,147,'de-informal'), (5,'146','Ruanda',146,146,'de-informal'), (5,'145','Portugal',145,145,'de-informal'), (5,'144','Polen',144,144,'de-informal'), (5,'143','Philippinen',143,143,'de-informal'), (5,'81','Kap Verde',81,81,'de-informal'), (5,'82','Kasachstan',82,82,'de-informal'), (5,'83','Katar',83,83,'de-informal'), (5,'84','Kenia',84,84,'de-informal'), (5,'85','Kirgisistan',85,85,'de-informal'), (5,'86','Kiribati',86,86,'de-informal'), (5,'87','Kolumbien',87,87,'de-informal'), (5,'88','Komoren',88,88,'de-informal'), (5,'89','Kongo (Demokratische Republik Kongo)',89,89,'de-informal'), (5,'90','Kongo (Republik Kongo)',90,90,'de-informal'), (5,'91','Korea (Demokratische Volksrepublik, Nordkorea)',91,91,'de-informal'), (5,'142','Peru',142,142,'de-informal'), (5,'141','Paraguay',141,141,'de-informal'), (5,'140','Papua-Neuguinea',140,140,'de-informal'), (5,'139','Panama',139,139,'de-informal'), (5,'138','Palau',138,138,'de-informal'), (5,'137','Palästinensische Gebiete',137,137,'de-informal'), (5,'136','Pakistan',136,136,'de-informal'), (5,'135','Oman',135,135,'de-informal'), (5,'72','Italien',72,72,'de-informal'), (5,'73','Jamaika',73,73,'de-informal'), (5,'74','Japan',74,74,'de-informal'), (5,'75','Jemen',75,75,'de-informal'), (5,'76','Jordanien',76,76,'de-informal'), (5,'77','Kaiman-Inseln',77,77,'de-informal'), (5,'78','Kambodscha',78,78,'de-informal'), (5,'79','Kamerun',79,79,'de-informal'), (5,'70','Island',70,70,'de-informal'), (5,'134','Österreich',134,134,'de-informal'), (5,'133','Norwegen',133,133,'de-informal'), (5,'132','Niue',132,132,'de-informal'), (5,'131','Nigeria',131,131,'de-informal'), (5,'130','Niger',130,130,'de-informal'), (5,'129','Niederlande',129,129,'de-informal'), (5,'128','Nicaragua',128,128,'de-informal'), (5,'127','Neuseeland',127,127,'de-informal'), (5,'126','Nepal',126,126,'de-informal'), (5,'125','Nauru',125,125,'de-informal'), (5,'124','Namibia',124,124,'de-informal'), (5,'123','Myanmar',123,123,'de-informal'), (5,'122','Mosambik',122,122,'de-informal'), (5,'120','Mongolei',120,120,'de-informal'), (5,'121','Montenegro',121,121,'de-informal'), (5,'119','Monaco',119,119,'de-informal'), (5,'95','Kuwait',95,95,'de-informal'), (5,'94','Kuba',94,94,'de-informal'), (5,'92','Korea (Republik Korea, Südkorea)',92,92,'de-informal'), (5,'80','Kanada',80,80,'de-informal'), (5,'71','Israel',71,71,'de-informal'), (5,'69','Irland',69,69,'de-informal'), (5,'68','Iran',68,68,'de-informal'), (5,'67','Irak',67,67,'de-informal'), (5,'66','Indonesien',66,66,'de-informal'), (5,'65','Indien',65,65,'de-informal'), (5,'64','Hongkong',64,64,'de-informal'), (5,'63','Honduras',63,63,'de-informal'), (5,'62','Heiliger Stuhl / Vatikan',62,62,'de-informal'), (5,'61','Haiti',61,61,'de-informal'), (5,'60','Guyana',60,60,'de-informal'), (5,'59','Guinea-Bissau',59,59,'de-informal'), (5,'58','Guinea',58,58,'de-informal'), (5,'57','Guatemala',57,57,'de-informal'), (5,'56','Großbritannien / Vereinigtes Königreich',56,56,'de-informal'), (5,'55','Griechenland',55,55,'de-informal'), (5,'54','Grenada',54,54,'de-informal'), (5,'53','Ghana',53,53,'de-informal'), (5,'52','Georgien',52,52,'de-informal'), (5,'51','Gambia',51,51,'de-informal'), (5,'50','Gabun',50,50,'de-informal'), (5,'49','Frankreich',49,49,'de-informal'), (5,'48','Finnland',48,48,'de-informal'), (5,'47','Fidschi',47,47,'de-informal'), (5,'46','Estland',46,46,'de-informal'), (5,'45','Eritrea',45,45,'de-informal'), (5,'44','El Salvador',44,44,'de-informal'), (5,'43','ehemalige jugoslawische Republik Mazedonien',43,43,'de-informal'), (5,'42','Ecuador',42,42,'de-informal'), (5,'41','Dschibuti',41,41,'de-informal'), (5,'40','Dominikanische Republik',40,40,'de-informal'), (5,'39','Dominica',39,39,'de-informal'), (5,'38','Deutschland',38,38,'de-informal'), (5,'37','Dänemark',37,37,'de-informal'), (5,'36','Côte d\'Ivoire',36,36,'de-informal'), (5,'35','Costa Rica',35,35,'de-informal'), (5,'34','Cookinseln',34,34,'de-informal'), (5,'33','China',33,33,'de-informal'), (5,'32','Chile',32,32,'de-informal'), (5,'31','Burundi',31,31,'de-informal'), (5,'30','Burkina Faso',30,30,'de-informal'), (5,'29','Bulgarien',29,29,'de-informal'), (5,'28','Brunei Darussalam',28,28,'de-informal'), (5,'27','Britische Jungferninseln',27,27,'de-informal'), (5,'26','Brasilien',26,26,'de-informal'), (5,'25','Botsuana',25,25,'de-informal'), (5,'24','Bosnien und Herzegowina',24,24,'de-informal'), (5,'23','Bolivien',23,23,'de-informal'), (5,'22','Bhutan',22,22,'de-informal'), (5,'21','Benin',21,21,'de-informal'), (5,'20','Belize',20,20,'de-informal'), (5,'19','Belgien',19,19,'de-informal'), (5,'18','Belarus',18,18,'de-informal'), (5,'17','Barbados',17,17,'de-informal'), (5,'16','Bangladesch',16,16,'de-informal'), (5,'15','Bahrain',15,15,'de-informal'), (5,'14','Bahamas',14,14,'de-informal'), (5,'13','Australien',13,13,'de-informal'), (5,'12','Aserbaidschan',12,12,'de-informal'), (5,'11','Armenien',11,11,'de-informal'), (5,'10','Argentinien',10,10,'de-informal'), (5,'9','Antigua und Barbuda',9,9,'de-informal'), (5,'8','Angola',8,8,'de-informal'), (5,'7','Andorra',7,7,'de-informal'), (5,'6','Algerien',6,6,'de-informal'), (5,'5','Albanien',5,5,'de-informal'), (5,'4','Afghanistan',4,4,'de-informal'), (5,'3','Äthiopien',3,3,'de-informal'), (5,'2','Äquatorialguinea',2,2,'de-informal'), (5,'1','Ägypten',1,1,'de-informal'), (5,'136','Pakistan',136,136,'de'), (5,'137','Palästinensische Gebiete',137,137,'de'), (5,'138','Palau',138,138,'de'), (5,'139','Panama',139,139,'de'), (5,'140','Papua-Neuguinea',140,140,'de'), (5,'141','Paraguay',141,141,'de'), (5,'142','Peru',142,142,'de'), (5,'143','Philippinen',143,143,'de'), (5,'144','Polen',144,144,'de'), (5,'145','Portugal',145,145,'de'), (5,'146','Ruanda',146,146,'de'), (5,'147','Rumänien',147,147,'de'), (5,'148','Russische Föderation',148,148,'de'), (5,'149','Salomonen',149,149,'de'), (5,'150','Sambia',150,150,'de'), (5,'151','Samoa',151,151,'de'), (5,'152','San Marino',152,152,'de'), (5,'153','Saudi-Arabien',153,153,'de'), (5,'154','Schweden',154,154,'de'), (5,'155','Schweiz',155,155,'de'), (5,'156','Senegal',156,156,'de'), (5,'157','Serbien',157,157,'de'), (5,'158','Seychellen',158,158,'de'), (5,'159','Sierra Leone',159,159,'de'), (5,'160','Simbabwe',160,160,'de'), (5,'161','Singapur',161,161,'de'), (5,'162','Slowakei',162,162,'de'), (5,'163','Slowenien',163,163,'de'), (5,'164','Somalia',164,164,'de'), (5,'165','Spanien',165,165,'de'), (5,'166','Sri Lanka',166,166,'de'), (5,'167','St. Kitts und Nevis',167,167,'de'), (5,'168','St. Lucia',168,168,'de'), (5,'169','St. Vincent und die Grenadinen',169,169,'de'), (5,'170','Sudan',170,170,'de'), (5,'171','Südafrika',171,171,'de'), (5,'172','Suriname',172,172,'de'), (5,'173','Swasiland',173,173,'de'), (5,'174','Syrien',174,174,'de'), (5,'175','São Tomé und Príncipe',175,175,'de'), (5,'176','Tadschikistan',176,176,'de'), (5,'177','Taiwan',177,177,'de'), (5,'178','Tansania',178,178,'de'), (5,'179','Thailand',179,179,'de'), (5,'180','Timor-Leste',180,180,'de'), (5,'181','Togo',181,181,'de'), (5,'182','Tonga',182,182,'de'), (5,'183','Trinidad und Tobago',183,183,'de'), (5,'184','Tschad',184,184,'de'), (5,'185','Tschechische Republik',185,185,'de'), (5,'186','Türkei',186,186,'de'), (5,'187','Tunesien',187,187,'de'), (5,'188','Turkmenistan',188,188,'de'), (5,'189','Turks- und Caicosinseln',189,189,'de'), (5,'190','Tuvalu',190,190,'de'), (5,'191','Uganda',191,191,'de'), (5,'192','Ukraine',192,192,'de'), (5,'193','Ungarn',193,193,'de'), (5,'194','Uruguay',194,194,'de'), (5,'195','USA / Vereinigte Staaten',195,195,'de'), (5,'196','Usbekistan',196,196,'de'), (5,'197','Vanuatu',197,197,'de'), (5,'198','Venezuela',198,198,'de'), (5,'199','Vereinigte Arabische Emirate',199,199,'de'), (5,'200','Vietnam',200,200,'de'), (6,'1','weniger als 1 Stunde',1,1,'de'), (6,'2','1 bis 2 Stunden täglich',2,2,'de'), (6,'3','3 bis 6 Stunden täglich',3,3,'de'), (6,'4','6 bis 12 Stunden täglich',4,4,'de'), (6,'5','mehr als 12 Stunden',5,5,'de'), (7,'1','1 Tag',1,1,'de'), (7,'2','2 Tage',2,2,'de'), (7,'3','3 Tage',3,3,'de'), (7,'4','4 Tage',4,4,'de'), (7,'5','5 Tage',5,5,'de'), (7,'6','6 Tage',6,6,'de'), (7,'7','7 Tage',7,7,'de'), (7,'0','seltener',8,0,'de'), (8,'01','Agree strongly',1,1,'en'), (8,'02','Agree somewhat',2,2,'en'), (8,'03','Neither agree nor disagree',3,3,'en'), (8,'04','Disagree somewhat',4,4,'en'), (8,'05','Disagree strongly',5,5,'en'), (9,'1','trifft überhaupt nicht zu',1,1,'de'), (9,'2','trifft eher nicht zu',2,2,'de'), (9,'3','trifft eher zu',3,3,'de'), (9,'4','trifft voll und ganz zu',4,4,'de'), (10,'1','trifft überhaupt nicht zu',1,1,'de'), (10,'2','trifft weitgehend nicht zu',2,2,'de'), (10,'3','trifft eher nicht zu',3,3,'de'), (10,'4','trifft eher zu',4,4,'de'), (10,'5','trifft weitgehend zu',5,5,'de'), (10,'6','trifft voll und ganz zu',6,6,'de'), (14,'TL4','3',3,0,'en'), (10,'1',NULL,1,1,'deinformal'), (10,'2',NULL,2,2,'deinformal'), (10,'3',NULL,3,3,'deinformal'), (10,'4',NULL,4,4,'deinformal'), (10,'5',NULL,5,5,'deinformal'), (10,'6',NULL,6,6,'deinformal'), (14,'TL5','2',4,0,'en'), (14,'TL6','1 - Dont like it at all',5,0,'en'), (12,'6','trifft voll und ganz zu',6,6,'de'), (12,'5','',5,5,'de'), (12,'6','
trifft voll und ganz zu
',6,6,'de-informal'), (12,'4','',4,4,'de'), (12,'5','',5,5,'de-informal'), (12,'3','',3,3,'de'), (12,'4','',4,4,'de-informal'), (12,'1','trifft überhaupt nicht zu',1,1,'de'), (12,'2','',2,2,'de-informal'), (12,'2','',2,2,'de'), (12,'1','
trifft überhaupt nicht zu
',1,1,'de-informal'), (12,'3','',3,3,'de-informal'), (14,'TL3','4',2,0,'en'), (14,'TL2','5',1,0,'en'), (14,'TL1','6 - Like it very much',0,0,'en'), (15,'1','-2',1,1,'en'), (15,'2','-1',2,2,'en'), (15,'3','0',3,3,'en'), (15,'4','1',4,4,'en'), (15,'5','2',5,5,'en'), (16,'1','1',1,1,'en'), (16,'2','2',2,2,'en'), (16,'3','3',3,3,'en'), (16,'4','4',4,4,'en'), (16,'5','5',5,5,'en'), (15,'2',NULL,2,2,'de-informal'), (15,'1',NULL,1,1,'de-informal'), (20,'SPD','Speed',1,0,'en'), (20,'ACC','Accuracy',3,0,'en'), (20,'DSN','Design',2,0,'en'), (15,'3',NULL,3,3,'de-informal'), (15,'4',NULL,4,4,'de-informal'), (15,'5',NULL,5,5,'de-informal'), (15,'1',NULL,1,1,'de'), (15,'2',NULL,2,2,'de'), (15,'3',NULL,3,3,'de'), (15,'4',NULL,4,4,'de'), (15,'5',NULL,5,5,'de'), (16,'1',NULL,1,1,'de-informal'), (16,'2',NULL,2,2,'de-informal'), (16,'3',NULL,3,3,'de-informal'), (16,'4',NULL,4,4,'de-informal'), (16,'5',NULL,5,5,'de-informal'), (16,'1',NULL,1,1,'de'), (16,'2',NULL,2,2,'de'), (16,'3',NULL,3,3,'de'), (16,'4',NULL,4,4,'de'), (16,'5',NULL,5,5,'de'), (21,'1','15-24',1,1,'en'), (21,'2','25-34',2,2,'en'), (21,'3','35-44',3,3,'en'), (21,'4','45-54',4,4,'en'), (21,'5','55-64',5,5,'en'), (21,'6','65-74',6,6,'en'), (21,'1','15-24',1,1,'de-informal'), (21,'2','25-34',2,2,'de-informal'), (21,'3','35-44',3,3,'de-informal'), (21,'4','45-54',4,4,'de-informal'), (21,'5','55-64',5,5,'de-informal'), (21,'6','65-74',6,6,'de-informal'), (21,'1','15-24',1,1,'de'), (21,'2','25-34',2,2,'de'), (21,'3','35-44',3,3,'de'), (21,'4','45-54',4,4,'de'), (21,'5','55-64',5,5,'de'), (21,'6','65-74',6,6,'de'), (22,'2','noch Schüler',2,2,'de'), (22,'3','Volksschule / Hauptschule',3,3,'de'), (22,'4','Mittlere Reife / POS',4,4,'de'), (22,'5','Fachschulabschluss',5,5,'de'), (22,'6','Fachabitur / Fachhochschulreife',6,6,'de'), (22,'7','Allgemeine Hochschulreife / Abitur / EOS',7,7,'de'), (22,'8','Hochschulabschluss',8,8,'de'), (22,'9','Promotion',9,9,'de'), (22,'10','Sonstiges',10,10,'de'); /*!40000 ALTER TABLE `lime_labels` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_labelsets` -- DROP TABLE IF EXISTS `lime_labelsets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_labelsets` ( `lid` int(11) NOT NULL AUTO_INCREMENT, `label_name` varchar(100) NOT NULL DEFAULT '', `languages` varchar(200) DEFAULT 'en', PRIMARY KEY (`lid`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_labelsets` -- LOCK TABLES `lime_labelsets` WRITE; /*!40000 ALTER TABLE `lime_labelsets` DISABLE KEYS */; INSERT INTO `lime_labelsets` VALUES (1,'Bundesländer AT','de'), (2,'5er Skala RH','de de_informal'), (3,'Schulnoten 1-6','de de-informal'), (4,'Schulabschlüsse','de'), (5,'Länder','de-informal de'), (6,'Stunden pro Tag_Kategorien','de'), (7,'Tage pro Woche (1-7)','de'), (8,'Feelings','en'), (9,'4er Skala MAM','de de_informal'), (10,'6er Skala MAM','de deinformal'), (12,'6er Entscheidungsleiste MAM','de-informal de'), (14,'Test Labelset','en'), (15,'-2_to_+2','de-informal de en'), (16,'1_to_5','de-informal de en'), (20,'Search Engine Criteria','en'), (21,'Array - Age Range','de-informal de en'), (22,'Bildungsgrad_Schulabschluss','de'); /*!40000 ALTER TABLE `lime_labelsets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_old_survey_47876_20090602225720` -- DROP TABLE IF EXISTS `lime_old_survey_47876_20090602225720`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_old_survey_47876_20090602225720` ( `id` int(11) NOT NULL AUTO_INCREMENT, `submitdate` datetime DEFAULT NULL, `startlanguage` varchar(20) NOT NULL DEFAULT '', `token` varchar(36) DEFAULT NULL, `datestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `startdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `47876X63X224` double DEFAULT NULL, `47876X63X225` char(1) DEFAULT NULL, `47876X63X226` text DEFAULT NULL, `47876X54X191` char(1) DEFAULT NULL, `47876X54X192` char(1) DEFAULT NULL, `47876X55X193` char(1) DEFAULT NULL, `47876X55X194` char(1) DEFAULT NULL, `47876X55X195` char(1) DEFAULT NULL, `47876X56X196` char(1) DEFAULT NULL, `47876X56X197` char(1) DEFAULT NULL, `47876X56X198` char(1) DEFAULT NULL, `47876X56X199` char(1) DEFAULT NULL, `47876X56X200` char(1) DEFAULT NULL, `47876X56X201` char(1) DEFAULT NULL, `47876X56X202` char(1) DEFAULT NULL, `47876X57X203` char(1) DEFAULT NULL, `47876X57X204` char(1) DEFAULT NULL, `47876X57X205` char(1) DEFAULT NULL, `47876X57X206` char(1) DEFAULT NULL, `47876X58X207` char(1) DEFAULT NULL, `47876X58X208` char(1) DEFAULT NULL, `47876X58X209` char(1) DEFAULT NULL, `47876X58X210` char(1) DEFAULT NULL, `47876X58X211` char(1) DEFAULT NULL, `47876X58X212` char(1) DEFAULT NULL, `47876X58X213` char(1) DEFAULT NULL, `47876X59X214` char(1) DEFAULT NULL, `47876X59X215` char(1) DEFAULT NULL, `47876X59X216` char(1) DEFAULT NULL, `47876X60X217` char(1) DEFAULT NULL, `47876X60X218` char(1) DEFAULT NULL, `47876X60X219` char(1) DEFAULT NULL, `47876X60X220` char(1) DEFAULT NULL, `47876X61X221` char(1) DEFAULT NULL, `47876X61X222` char(1) DEFAULT NULL, `47876X62X223` char(1) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_old_survey_47876_20090602225720` -- LOCK TABLES `lime_old_survey_47876_20090602225720` WRITE; /*!40000 ALTER TABLE `lime_old_survey_47876_20090602225720` DISABLE KEYS */; INSERT INTO `lime_old_survey_47876_20090602225720` VALUES (1,'0000-00-00 00:00:00','de','','2009-05-25 20:35:30','2009-05-25 20:29:14',33,'F','CRM Consulting','4','3','2','1','3','5','3','2','4','2','4','5','4','3','4','3','4','4','4','4','4','4','4','1','3','4','3','4','4','5','5','3','5'), (2,'2009-05-25 20:44:57','de','','2009-05-25 20:44:57','2009-05-25 20:43:58',85,'M','test','5','5','5','4','3','2','2','2','2','2','3','3','3','3','4','4','5','5','5','2','2','2','2','2','2','2','2','2','3','4','4','4','4'); /*!40000 ALTER TABLE `lime_old_survey_47876_20090602225720` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_question_attributes` -- DROP TABLE IF EXISTS `lime_question_attributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_question_attributes` ( `qaid` int(11) NOT NULL AUTO_INCREMENT, `qid` int(11) NOT NULL DEFAULT 0, `attribute` varchar(50) DEFAULT NULL, `value` varchar(20) DEFAULT NULL, PRIMARY KEY (`qaid`), KEY `question_attributes_idx2` (`qid`) ) ENGINE=MyISAM AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_question_attributes` -- LOCK TABLES `lime_question_attributes` WRITE; /*!40000 ALTER TABLE `lime_question_attributes` DISABLE KEYS */; INSERT INTO `lime_question_attributes` VALUES (27,269,'random_order','1'), (26,268,'random_order','1'), (25,268,'display_columns','3'), (24,264,'maximum_chars','3'), (19,224,'maximum_chars','2'), (18,224,'suffix','Jahre'), (28,270,'random_order','1'), (29,271,'random_order','1'), (30,281,'answer_width','50'), (31,281,'dualscale_headerA','satisfaction'), (32,281,'dualscale_headerB','importance'), (33,307,'answer_width','50'), (34,307,'dualscale_headerA','satisfaction'), (35,307,'dualscale_headerB','importance'), (36,308,'multiflexible_max','20'), (37,308,'multiflexible_step','2'), (38,308,'multiflexible_min','10'), (39,310,'answer_width','50'), (40,326,'equals_num_value','10'), (41,326,'slider_layout','1'), (42,327,'dropdown_dates','1'), (43,328,'equals_num_value','10'), (44,310,'dualscale_headerA','satisfaction'), (45,310,'dualscale_headerB','importance'), (46,310,'use_dropdown','true'), (47,311,'multiflexible_max','20'), (48,311,'multiflexible_step','2'), (49,311,'multiflexible_min','10'), (50,311,'multiflexible_checkbox','1'), (51,312,'answer_width','50'), (52,329,'prefix','prefix'), (53,317,'suffix','suffix'), (54,317,'prefix','prefix'), (55,329,'suffix','suffix'); /*!40000 ALTER TABLE `lime_question_attributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_questions` -- DROP TABLE IF EXISTS `lime_questions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_questions` ( `qid` int(11) NOT NULL AUTO_INCREMENT, `sid` int(11) NOT NULL DEFAULT 0, `gid` int(11) NOT NULL DEFAULT 0, `type` char(1) NOT NULL DEFAULT 'T', `title` varchar(20) NOT NULL DEFAULT '', `question` text NOT NULL, `preg` text DEFAULT NULL, `help` text DEFAULT NULL, `other` char(1) NOT NULL DEFAULT 'N', `mandatory` char(1) DEFAULT NULL, `lid` int(11) NOT NULL DEFAULT 0, `lid1` int(11) NOT NULL DEFAULT 0, `question_order` int(11) NOT NULL DEFAULT 0, `language` varchar(20) NOT NULL DEFAULT 'en', PRIMARY KEY (`qid`,`language`), KEY `questions_idx2` (`sid`), KEY `questions_idx3` (`gid`), KEY `questions_idx4` (`type`) ) ENGINE=MyISAM AUTO_INCREMENT=339 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_questions` -- LOCK TABLES `lime_questions` WRITE; /*!40000 ALTER TABLE `lime_questions` DISABLE KEYS */; INSERT INTO `lime_questions` VALUES (250,67268,69,'Z','6a','Frage 6.1
\r\n
\r\nDie Mitarbeiter sind motiviert und identifizieren \r\n\r\nsich mit dem Unternehmen.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf \r\n\r\nIhr Unternehmen zutrifft:','N','Y',10,0,0,'de'), (251,67268,69,'Z','6b','Frage 6.2
\r\n
\r\nDie interne Kommunikation vollzieht sich in einem entspannten und offenen Klima.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'), (252,67268,69,'Z','6c','Frage 6.3
\r\n
\r\nMitarbeiter können ihre Meinungen und Wünsche äußern und diese werden \r\n\r\nberücksichtigt.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr \r\n\r\nUnternehmen zutrifft:','N','Y',10,0,2,'de'), (253,67268,70,'Z','7a','Frage 7.1
\r\n
\r\nDas Kaufverhalten der Kunden ist konstant bis steigend.
','','Bitte schätzen \r\n\r\nSie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,0,'de'), (254,67268,70,'Z','7b','Frage 7.2
\r\n
\r\nDie Kunden nutzen die unterschiedlichen Feedback-Möglichkeiten.
','','Bitte \r\n\r\nschätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'), (255,67268,70,'Z','7c','Frage 7.3
\r\n
\r\nDas Kunden-Feedback hat Einfluss auf die Produkte des Unternehmens.
','','Bitte \r\n\r\nschätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,2,'de'), (256,67268,70,'Z','7d','Frage 7.4
\r\n
\r\nKunden schätzen die Glaubwürdigkeit, Kompetenz und Unabhängigkeit des \r\n\r\nUnternehmens bzw. seiner Produkte.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende \r\n\r\nAussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,3,'de'), (257,67268,71,'Z','8a','Frage 8.1
\r\n
\r\nDas Unternehmen und seine Produkte haben den Ruf, in ihrem Wirkungsbereich kompetent und \r\n\r\nglaubwürdig zu sein.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf \r\n\r\nIhr Unternehmen zutrifft:','N','Y',10,0,0,'de'), (258,67268,71,'Z','8b','Frage 8.2
\r\n
\r\nImage und Glaubwürdigkeit stärken die herausragende Marktposition des \r\n\r\nUnternehmens und seiner Produkte in deren Wirkungsumfeld.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie \r\n\r\nsehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'), (259,67268,72,'Z','9a','Frage 9.1
\r\n
\r\nDie Umsatzzahlen des Unternehmens sind konstant bis steigend.
','','Bitte \r\n\r\nschätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,0,'de'), (260,67268,73,'W','0a','Bitte geben Sie Ihre Altersklasse an:','','','N','Y',21,0,0,'de'), (261,67268,73,'G','0b','Bitte geben Sie Ihr Geschlecht an:','','','N','Y',0,0,1,'de'), (262,67268,73,'S','0c','Bitte geben Sie den Unternehmensbereich an, in dem Sie tätig sind:\r\n
 
\r\n
 
\r\n
 
','','Sollten Sie diese \r\n\r\nInformation nicht preisgeben wollen, tragen Sie bitte "keine Angabe" ein.\r\n
 
\r\n
 
\r\n
 
','N','Y',0,0,2,'de'), (249,67268,68,'Z','5g','Frage 5.7
\r\n
\r\nFür die interne Kommunikation stehen institutionalisierte Prozesse und Verfahren zur \r\n\r\nVerfügung.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr \r\n\r\nUnternehmen zutrifft:','N','Y',10,0,6,'de'), (248,67268,68,'Z','5f','Frage 5.6
\r\n
\r\nExternen Kommunikationspartnern wird die Möglichkeit für Feedback gegeben, das \r\n\r\nim Unternehmen gesammelt, verarbeitet und berücksichtigt wird.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen \r\n\r\nein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,5,'de'), (247,67268,68,'Z','5e','Frage 5.5
\r\n
\r\nDie externe Kommunikation erfolgt zielgruppengerecht unter Verwendung unterschiedlicher \r\n\r\ngeeigneter Kommunikationskanäle und -mittel.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die \r\n\r\nuntenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,4,'de'), (244,67268,68,'Z','5b','Frage 5.2
\r\n
\r\nEs gibt einen übergeordneten Kommunikationsverantwortlichen im Unternehmen.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'), (245,67268,68,'Z','5c','Frage 5.3
\r\n
\r\nEs gibt definierte Kommunikationsprozesse, die eingehalten und überwacht werden.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,2,'de'), (246,67268,68,'Z','5d','Frage 5.4
\r\n
\r\nDie externe Kommunikation bedient sich standardisierter Prozesse und erprobter technischer \r\n\r\nHilfsmittel.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr \r\n\r\nUnternehmen zutrifft:','N','Y',10,0,3,'de'), (243,67268,68,'Z','5a','Frage 5.1
\r\n
\r\nKommunikationsaufgaben sind organisatorisch in den Abteilungen abgebildet und \r\n\r\nverankert.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen \r\n\r\nzutrifft:','N','Y',10,0,0,'de'), (242,67268,67,'Z','4d','Frage 4.4
\r\n
\r\nDie Pflege externer Partnerschaften und Kooperationen mit Dritten wird aktiv betrieben.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,3,'de'), (240,67268,67,'Z','4b','Frage 4.2
\r\n
\r\nDie notwendigen technischen Mittel für Informations- und \r\n\r\nKommunikationsaktivitäten stehen zur Verfügung und der Zugriff darauf ist für alle, die ihn benötigen, möglich.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'), (241,67268,67,'Z','4c','Frage 4.3
\r\n
\r\nDer Einsatz der Kommunikationsinstrumente erfolgt koordiniert und ist auf das jeweilige \r\n\r\nKommunikationsziel und die jeweilige Kommunikationssituation abgestimmt.
','','Bitte schätzen Sie anhand der angegebenen Antwort-\r\n\r\nOptionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,2,'de'), (238,67268,66,'Z','3g','Frage 3.7
\r\n
\r\nEs gibt Richtlinien für den einheitlichen Kommunikationsauftritt des Unternehmens im \r\n\r\nSinne der Corporate Identity.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage \r\n\r\nauf Ihr Unternehmen zutrifft:','N','Y',10,0,6,'de'), (239,67268,67,'Z','4a','Frage 4.1
\r\n
\r\nIn den Bereichen Produktentwicklung, Kundenkommunikation und Kundenbetreuung stehen \r\n\r\nausreichend personelle Ressourcen zur Bewältigung der unterschiedlichen kommunikativen Aufgaben zur Verfügung und deren Zusammenarbeit ist \r\n\r\ngegeben.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen \r\n\r\nzutrifft:','N','Y',10,0,0,'de'), (237,67268,66,'Z','3f','Frage 3.6
\r\n
\r\nDas Unternehmen kennt und pflegt die unterschiedlichen Faktoren, die aus kommunikativer \r\n\r\nSicht Anteil am Erfolg des Unternehmens haben.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die \r\n\r\nuntenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,5,'de'), (236,67268,66,'Z','3e','Frage 3.5
\r\n
\r\nDie Werbestrategie des Unternehmens ist auf die einzelnen Produkte abgestimmt.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,4,'de'), (234,67268,66,'Z','3c','Frage 3.3
\r\n
\r\nProduktstrategie und Portfolio sind im Unternehmen allen Mitarbeitern bekannt.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,2,'de'), (235,67268,66,'Z','3d','Frage 3.4
\r\n
\r\nDie Kommunikationsstrategie richtet sich an der Zielgruppenorientierung des Unternehmens \r\n\r\naus, welche sich auf die Ergebnisse von Unternehmensanalysen und Marktforschungen stützt.
','','Bitte schätzen Sie anhand der \r\n\r\nangegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,3,'de'), (233,67268,66,'Z','3b','Frage 3.2
\r\n
\r\nDas Konzept zur Kommunikationsstrategie wird regelmäßig überprüft und \r\n\r\naktualisiert.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr \r\n\r\nUnternehmen zutrifft:','N','Y',10,0,1,'de'), (230,67268,65,'Z','2b','Frage 2.2
\r\n
\r\nDie Anliegen und Ziele der Mitarbeiter bzw. des Unternehmens werden in \r\n\r\nregelmäßigen Mitarbeitergesprächen besprochen und festgehalten.
','','Bitte schätzen Sie anhand der angegebenen \r\n\r\nAntwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'), (231,67268,65,'Z','2c','Frage 2.3
\r\n
\r\nIm Unternehmen herrscht ein offener Dialog auch über Hierarchien hinweg.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,2,'de'), (232,67268,66,'Z','3a','Frage 3.1
\r\n
\r\nEs gibt ein Konzept zur Kommunikationsstrategie des Unternehmens, das in schriftlicher \r\n\r\nForm vorliegt und Richtlinien der Kommunikation vorgibt.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr \r\n\r\ndie untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,0,'de'), (220,47876,60,'5','7d','Frage 7.4
\n
\nKunden schätzen die Glaubwürdigkeit, Kompetenz und Unabhängigkeit des \r\n\r\nUnternehmens bzw. seiner Produkte.
','','','N','Y',0,0,3,'de'), (221,47876,61,'5','8a','Frage 8.1
\n
\nDas Unternehmen und seine Produkte haben den Ruf, in ihrem Wirkungsbereich kompetent und \r\n\r\nglaubwürdig zu sein.
','','','N','Y',0,0,0,'de'), (229,67268,65,'Z','2a','Frage 2.1
\r\n
\r\nDie fachliche und soziale Kompetenz der Mitarbeiter sowie ihre \r\n\r\nKommunikationsfähigkeit werden festgestellt und gefördert.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen \r\n\r\nein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,0,'de'), (226,47876,63,'S','0c','Arbeitsbereich:
','','Bitte geben Sie den Unternehmensbereich an, in dem Sie tätig sind.','N','Y',0,0,2,'de'), (227,67268,64,'Z','1a','Frage 1.1
\r\n
\r\nDie Unternehmensführung bringt sich zu Themen der internen und externen Kommunikation \r\n\r\naktiv ein und prägt das Image des Unternehmens nach außen und innen.
','','Bitte schätzen Sie anhand der angegebenen \r\n\r\nAntwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,10,0,'de'), (228,67268,64,'Z','1b','Frage 1.2
\r\n
\r\nDie Unternehmensführung motiviert die Mitarbeiter dazu, am einheitlichen \r\n\r\nkommunikativen Auftritt des Unternehmens mitzuwirken und unterstützt sie dabei.
','','Bitte schätzen Sie anhand der angegebenen \r\n\r\nAntwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'), (222,47876,61,'5','8b','Frage 8.2
\n
\nImage und Glaubwürdigkeit stärken die herausragende Marktposition des Unternehmens \r\n\r\nund seiner Produkte in deren Wirkungsumfeld.
','','','N','Y',0,0,1,'de'), (223,47876,62,'5','9a','Frage 9.1
\n
\nDie Umsatzzahlen des Unternehmens sind konstant bis steigend.
','','','N','Y',0,0,0,'de'), (224,47876,63,'N','0a','Alter:
','','Bitte geben Sie Ihr Alter an.','N','Y',0,0,0,'de'), (225,47876,63,'G','0b','Geschlecht:
','','Bitte geben Sie Ihr Geschlecht an.','N','Y',0,0,1,'de'), (219,47876,60,'5','7c','Frage 7.3
\n
\nDas Kunden-Feedback hat Einfluss auf die Produkte des Unternehmens.
','','','N','Y',0,0,2,'de'), (218,47876,60,'5','7b','Frage 7.2
\n
\nDie Kunden nutzen die unterschiedlichen Feedback-Möglichkeiten.
','','','N','Y',0,0,1,'de'), (214,47876,59,'5','6a','Frage 6.1
\n
\nDie Mitarbeiter sind motiviert und identifizieren sich mit dem Unternehmen.
','','','N','Y',0,0,0,'de'), (215,47876,59,'5','6b','Frage 6.2
\n
\nDie interne Kommunikation vollzieht sich in einem entspannten und offenen Klima.
','','','N','Y',0,0,1,'de'), (216,47876,59,'5','6c','Frage 6.3
\n
\nMitarbeiter können ihre Meinungen und Wünsche äußern und diese werden \r\n\r\nberücksichtigt.
','','','N','Y',0,0,2,'de'), (217,47876,60,'5','7a','Frage 7.1
\n
\nDas Kaufverhalten der Kunden ist konstant bis steigend.
','','','N','Y',0,0,0,'de'), (213,47876,58,'5','5g','Frage 5.7
\n
\nFür die interne Kommunikation stehen institutionalisierte Prozesse und Verfahren zur \r\n\r\nVerfügung.
','','','N','Y',0,0,6,'de'), (210,47876,58,'5','5d','Frage 5.4
\n
\nDie externe Kommunikation bedient sich standardisierter Prozesse und erprobter technischer \r\n\r\nHilfsmittel.
','','','N','Y',0,0,3,'de'), (211,47876,58,'5','5e','Frage 5.5
\n
\nDie externe Kommunikation erfolgt zielgruppengerecht unter Verwendung unterschiedlicher \r\n\r\ngeeigneter Kommunikationskanäle und -mittel.
','','','N','Y',0,0,4,'de'), (212,47876,58,'5','5f','Frage 5.6
\n
\nExternen Kommunikationspartnern wird die Möglichkeit für Feedback gegeben, das im \r\n\r\nUnternehmen gesammelt, verarbeitet und berücksichtigt wird.
','','','N','Y',0,0,5,'de'), (209,47876,58,'5','5c','Frage 5.3
\n
\nEs gibt definierte Kommunikationsprozesse, die eingehalten und überwacht werden.
','','','N','Y',0,0,2,'de'), (206,47876,57,'5','4d','Frage 4.4
\n
\nDie Pflege externer Partnerschaften und Kooperationen mit Dritten wird aktiv betrieben.
','','','N','Y',0,0,3,'de'), (207,47876,58,'5','5a','Frage 5.1
\n
\nKommunikationsaufgaben sind organisatorisch in den Abteilungen abgebildet und verankert.
','','','N','Y',0,0,0,'de'), (208,47876,58,'5','5b','Frage 5.2
\n
\nEs gibt einen übergeordneten Kommunikationsverantwortlichen im Unternehmen.
','','','N','Y',0,0,1,'de'), (204,47876,57,'5','4b','Frage 4.2
\n
\nDie notwendigen technischen Mittel für Informations- und Kommunikationsaktivitäten \r\n\r\nstehen zur Verfügung und der Zugriff darauf ist für alle, die ihn benötigen, möglich.
','','','N','Y',0,0,1,'de'), (205,47876,57,'5','4c','Frage 4.3
\n
\nDer Einsatz der Kommunikationsinstrumente erfolgt koordiniert und ist auf das jeweilige \r\n\r\nKommunikationsziel und die jeweilge Kommunikationssituation abgestimmt.
','','','N','Y',0,0,2,'de'), (203,47876,57,'5','4a','Frage 4.1
\n
\nIn den Bereichen Produktentwicklung, Kundenkommunikation und Kundenbetreuung stehen \r\n\r\nausreichend personelle Ressourcen zur Bewältigung der unterschiedlichen kommunikativen Aufgaben zur Verfügung und deren Zusammenarbeit ist \r\n\r\ngegeben.
','','','N','Y',0,0,0,'de'), (200,47876,56,'5','3e','Frage 3.5
\n
\nDie Werbestrategie des Unternehmens ist auf die einzelnen Produkte abgestimmt.
','','','N','Y',0,0,4,'de'), (201,47876,56,'5','3f','Frage 3.6
\n
\nDas Unternehmen kennt und pflegt die unterschiedlichen Faktoren, die aus kommunikativer Sicht \r\n\r\nAnteil am Erfolg des Unternehmens haben.
','','','N','Y',0,0,5,'de'), (202,47876,56,'5','3g','Frage 3.7
\n
\nEs gibt Richtlinien für den einheitlichen Kommunikationsauftritt des Unternehmens im \r\n\r\nSinne der Corporate Identity.
','','','N','Y',0,0,6,'de'), (199,47876,56,'5','3d','Frage 3.4
\n
\nDie Kommunikationsstrategie richtet sich an der Zielgruppenorientierung des Unternehmens aus, \r\n\r\nwelche sich auf die Ergebnisse von Unternehmensanalysen und Marktforschungen stützt.
','','','N','Y',0,0,3,'de'), (198,47876,56,'5','3c','Frage 3.3
\n
\nProduktstrategie und Portfolio sind im Unternehmen allen Mitarbeitern bekannt.
','','','N','Y',0,0,2,'de'), (195,47876,55,'5','2c','Frage 2.3
\n
\nIm Unternehmen herrscht ein offener Dialog auch über Hierarchien hinweg.
','','','N','Y',0,0,2,'de'), (196,47876,56,'5','3a','Frage 3.1
\n
\nEs gibt ein Konzept zur Kommunikationsstrategie des Unternehmens, das in schriftlicher Form \r\n\r\nvorliegt und Richtlinien der Kommunikation vorgibt.
','','','N','Y',0,0,0,'de'), (197,47876,56,'5','3b','Frage 3.2
\n
\nDas Konzept zur Kommunikationsstrategie wird regelmäßig überprüft und \r\n\r\naktualisiert.
','','','N','Y',0,0,1,'de'), (192,47876,54,'5','1b','Frage 1.2
\n
\nDie Unternehmensführung motiviert die Mitarbeiter dazu, am einheitlichen kommunikativen \r\n\r\nAuftritt des Unternehmens mitzuwirken und unterstützt sie dabei.
','','','N','Y',0,0,1,'de'), (193,47876,55,'5','2a','Frage 2.1
\n
\nDie fachliche und soziale Kompetenz der Mitarbeiter sowie ihre Kommunikationsfähigkeit \r\n\r\nwerden festgestellt und gefördert.
','','','N','Y',0,0,0,'de'), (194,47876,55,'5','2b','Frage 2.2
\n
\nDie Anliegen und Ziele der Mitarbeiter bzw. des Unternehmens werden in regelmäßigen \r\n\r\nMitarbeitergesprächen besprochen und festgehalten.
','','','N','Y',0,0,1,'de'), (191,47876,54,'5','1a','Frage 1.1
\n
\nDie Unternehmensführung bringt sich zu Themen der internen und externen Kommunikation \r\n\r\naktiv ein und prägt das Image des Unternehmens nach außen und innen.
','','','N','Y',0,0,0,'de'), (263,29975,74,'S','01','What is your name?','','','N','Y',0,0,0,'en'), (264,29975,74,'N','03','And for our records, specifically how old are you?','','This is a numerical question. Only numbers may be \r\n\r\nentered. There is also a question_attribute added to the question to limit the characters to no more than 3. This, of course, limits the \r\n\r\npossible answer to no more than 999, which seems reasonable for an age question.','N','N',0,0,2,'en'), (265,29975,74,'L','02','What is your age group?','','','N','Y',0,0,1,'en'), (266,29975,75,'T','01','Hi, {INSERTANS:29975X74X263} please tell us a little about yourself. What was your first job, and did you enjoy it?','','','N','N',0,0,0,'en'), (267,29975,75,'L','03','Given your extraordinary age of {INSERTANS:29975X74X264} {INSERTANS:29975X74X263}, how do you find using this survey \r\n\r\ntool?','','This question is conditional, and only appears if someone is over 100 years old. It also has a \"random order\", which means that the \r\n\r\noptions will appear in a different, random, order for each different participant.','Y','N',0,0,1,'en'), (268,29975,76,'L','01','
 
Which of these ads makes you want to find out more?
 
','','This is an example of using graphics/images within a question. It uses attributes to set the pictures in columns, and also to randomise the \r\n\r\ndisplay.','N','Y',0,0,0,'en'), (269,29975,76,'F','02a','Please have a good look at this ad, and then complete the questions below.
\n','','This question only displays if lawyer one was chosen.','N','N',8,0,1,'en'), (270,29975,76,'F','03a','Please have a good look at this ad, and then complete the questions below.
\n','','This question only displays if lawyer two was chosen.','N','N',8,0,2,'en'), (271,29975,76,'F','04a','Please have a good look at this ad, and then complete the questions below.
\n','','This question only displays if lawyer three was chosen.','N','N',8,0,3,'en'), (272,31565,77,'I','code_en','qeustion_en','','questionhelp_en','N','N',0,0,0,'en'), (272,31565,77,'I','code_en','qeustion_hr','','questionhelp_cr','N','N',0,0,0,'hr'), (272,31565,77,'I','code_en','qeustion_nl','','questionhelp_nl','N','N',0,0,0,'nl'), (273,31565,77,'M','code','question_en','','questionhelp_en','N','N',0,0,1,'en'), (273,31565,77,'M','code','question_hr','','questionhelp_hr','N','N',0,0,1,'hr'), (273,31565,77,'M','code','question_nl','','questionhelp_nl','N','N',0,0,1,'nl'), (274,40,78,'A','A','Type A - Array 5 Point Choice Question','','','N','N',0,0,0,'en'), (275,40,78,'B','B','Type B - Array 10 point choice Question','','This is the help text for this question. ','N','N',0,0,1,'en'), (276,40,78,'C','C','Type C - Array Yes/No/Uncertain Question','','','N','N',0,0,2,'en'), (277,40,78,'E','E','Type E - Array Increase/Same/Decrease Question','','This is the questions help text.','N','N',0,0,3,'en'), (278,40,78,'F','F','Type F - Array using Flexible Labels question','','This is a array using a flexible label set. Flexible labels sets can \r\n\r\nbe created with as many answer as you like to. We created only one for this survey that will be re-used over and over.','N','N',14,0,4,'en'), (279,40,78,'H','H','Type H - Array Flexible Labels by Column question','','This is the same question type as before just the orientation has \r\n\r\nchanged','N','N',14,0,5,'en'), (280,40,78,'F','Semantic','Semantic Differential Question Type
','','This question type is a modification of Array (flexible labels).
','N','N',15,0,6,'en'), (281,40,78,'1','DualScale','Array (Flexible Labels) dual scale
','','','N','N',16,16,7,'en'), (282,40,79,'Q','Q','Type Q - Multiple Short Text Question','','This is a Multiple Short Text Question','N','N',0,0,0,'en'), (283,40,79,'T','T','Type T - Long Text Question?','','Helptext','N','N',0,0,2,'en'), (284,40,79,'S','S','Type S - Short Free Text?','','helptext','N','N',0,0,1,'en'), (285,40,79,'U','U','Type U - Huge Free text?','','Helptext','N','N',0,0,3,'en'), (286,40,80,'X','X','Type X - Boilerplate question','','This is the boilerplate question type. It\'s not so much a question but a simple text \r\n\r\ndisplay.','N','Y',0,0,4,'en'), (287,40,80,'G','G','Type G - Gender question?','','This is a standard question aksing for the participiant\'s sex.','N','N',0,0,1,'en'), (288,40,80,'N','N','Type N - Numerical Input Question','','','N','N',0,0,2,'en'), (289,40,80,'R','R','Type R - Ranking Question','','','N','N',0,0,3,'en'), (290,40,80,'Y','Y','Type Y - Yes/No Question','','','N','N',0,0,5,'en'), (291,40,80,'D','D','Type D - Date question?','','Helptext','N','N',0,0,0,'en'), (292,40,81,'Z','Z','Type Z - List Flexible Labels Dropdown','','This question is reusing the same label set as some of the array questions.','N','N',14,0,5,'en'), (293,40,81,'W','W','Type W - List Flexible Labels Dropdown question type','','This question is reusing the same label set as some of the \r\n\r\narray questions.','N','N',14,0,4,'en'), (294,40,81,'O','O','Type O - List with Comment Question','','','N','N',0,0,3,'en'), (295,40,81,'L','L','Type L - List Radio qeustion','','','Y','N',0,0,2,'en'), (296,40,81,'5','5','Type 5 - 5 point choice','','Help2','N','N',0,0,1,'en'), (297,40,81,'!','!','Type ! - List Dropdown Question','','','Y','N',0,0,0,'en'), (298,40,82,'P','P','Type P - Multiple Options Question with Comments ','','This is a Multiple Options Question with the ability to comment \r\n\r\nit.','Y','N',0,0,1,'en'), (299,40,82,'M','M','Type M - Multiple Options Question','','This is a type M multiple Options questions.','Y','N',0,0,0,'en'), (300,29846,83,'A','A','Type A - Array 5 Point Choice Question','','','N','N',0,0,0,'en'), (301,29846,83,'B','B','Type B - Array 10 point choice Question','','This is the help text for this question. ','N','N',0,0,1,'en'), (302,29846,83,'C','C','Type C - Array Yes/No/Uncertain Question','','','N','N',0,0,2,'en'), (303,29846,83,'E','E','Type E - Array Increase/Same/Decrease Question','','This is the questions help text.','N','N',0,0,3,'en'), (304,29846,83,'F','F','Type F - Array using Flexible Labels question','','This is a array using a flexible label set. Flexible labels sets \r\n\r\ncan be created with as many answer as you like to. We created only one for this survey that will be re-used over and over.','N','N',14,0,4,'en'), (305,29846,83,'H','H','Type H - Array Flexible Labels by Column question','','This is the same question type as before just the orientation \r\n\r\nhas changed','N','N',14,0,6,'en'), (306,29846,83,'F','Semantic','Semantic Differential Question Type
','','This question type is a modification of Array (flexible \r\n\r\nlabels).
','N','N',15,0,7,'en'), (307,29846,83,'1','DualScale','Array (Flexible Labels) dual scale (radio)
','','','N','N',16,16,8,'en'), (308,29846,83,':',':','Array (Multi Flexi) (Numbers) - Allows a table of dropdowns containing number selections set by question attributes.
','','','N','N',20,0,10,'en'), (309,29846,83,';',';','Array (Multi Flexi) (Text) - Allows a table of text inputs
','','','N','N',20,0,11,'en'), (310,29846,83,'1','DualScale','Array (Flexible Labels) dual scale (dropdown)
','','','N','N',16,16,9,'en'), (311,29846,83,':',':','Array (Multi Flexi) (Numbers - checkbox) - Allows a table of dropdowns containing number selections set by question \r\n\r\nattributes.
','','','N','N',20,0,12,'en'), (312,29846,83,'F','F','Type F - Array using Flexible Labels question (answerwidth = 50)
','','This is a array using a flexible label \r\n\r\nset. Flexible labels sets can be created with as many answer as you like to. We created only one for this survey that will be re-used over and \r\n\r\nover.','N','N',14,0,5,'en'), (313,29846,84,'Q','Q','Type Q - Multiple Short Text Question','','This is a Multiple Short Text Question','N','N',0,0,0,'en'), (314,29846,84,'T','T','Type T - Long Text Question?','','Helptext','N','N',0,0,4,'en'), (315,29846,84,'S','S','Type S - Short Free Text?','','helptext','N','N',0,0,3,'en'), (316,29846,84,'U','U','Type U - Huge Free text?','','Helptext','N','N',0,0,5,'en'), (317,29846,84,'Q','Q','Type Q - Multiple Short Text Question (with suffix and prefix)
','','This is a Multiple Short Text Question','N','N',0,0,1,'en'), (318,29846,84,'Q','Q','Type Q - Multiple Short Text Question (long "answers")
','','This is a Multiple Short Text Question','N','N',0,0,2,'en'), (319,29846,85,'X','X','Type X - Boilerplate question','','This is the boilerplate question type. It\'s not so much a question but a simple \r\n\r\ntext display.','N','Y',0,0,9,'en'), (320,29846,85,'G','G','Type G - Gender question?','','This is a standard question aksing for the participiant\'s sex.','N','N',0,0,2,'en'), (321,29846,85,'N','N','Type N - Numerical Input Question','','','N','Y',0,0,3,'en'), (322,29846,85,'R','R','Type R - Ranking Question','','','N','N',0,0,8,'en'), (323,29846,85,'Y','Y','Type Y - Yes/No Question','','','N','N',0,0,10,'en'), (324,29846,85,'D','D','Type D - Date question?','','Helptext','N','N',0,0,0,'en'), (325,29846,85,'K','K','Multiple Numerical Input
','','','N','N',0,0,4,'en'), (326,29846,85,'K','K','Multiple Numerical Input (slider layout)
','','You can slide the button along.
','N','Y',0,0,7,'en'), (327,29846,85,'D','D','Type D - Date question? (dropdown dates)
','','Helptext','N','N',0,0,1,'en'), (328,29846,85,'K','K','Multiple Numerical Input (equals 10)
','','add numbers to the boxes above
','N','N',0,0,6,'en'), (329,29846,85,'K','K','Multiple Numerical Input (with prefix and suffix)
','','','N','N',0,0,5,'en'), (330,29846,86,'Z','Z','Type Z - List Flexible Labels (Radio)','','This question is reusing the same label set as some of the array \r\n\r\nquestions.','N','N',14,0,5,'en'), (331,29846,86,'W','W','Type W - List Flexible Labels Dropdown question type','','This question is reusing the same label set as some of the \r\n\r\narray questions.','N','N',14,0,4,'en'), (332,29846,86,'O','O','Type O - List with Comment Question','','','N','N',0,0,3,'en'), (333,29846,86,'L','L','Type L - List Radio qeustion','','','Y','N',0,0,2,'en'), (334,29846,86,'5','5','Type 5 - 5 point choice','','Help2','N','N',0,0,1,'en'), (335,29846,86,'!','!','Type ! - List Dropdown Question','','','Y','N',0,0,0,'en'), (336,29846,87,'P','P','Type P - Multiple Options Question with Comments ','','This is a Multiple Options Question with the ability to comment \r\n\r\nit.','Y','N',0,0,1,'en'), (337,29846,87,'M','M','Type M - Multiple Options Question','','This is a type M multiple Options questions.','Y','N',0,0,0,'en'), (338,67268,73,'M','0d','Bitte geben Sie Ihren Ausbildungsweg an (Mehrfachnennungen möglich):
','','','N','Y',0,0,3,'de'); /*!40000 ALTER TABLE `lime_questions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_quota` -- DROP TABLE IF EXISTS `lime_quota`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_quota` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sid` int(11) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `qlimit` int(8) DEFAULT NULL, `action` int(2) DEFAULT NULL, `active` int(1) NOT NULL DEFAULT 1, PRIMARY KEY (`id`), KEY `quota_idx2` (`sid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_quota` -- LOCK TABLES `lime_quota` WRITE; /*!40000 ALTER TABLE `lime_quota` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_quota` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_quota_members` -- DROP TABLE IF EXISTS `lime_quota_members`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_quota_members` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sid` int(11) DEFAULT NULL, `qid` int(11) DEFAULT NULL, `quota_id` int(11) DEFAULT NULL, `code` varchar(5) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `sid` (`sid`,`qid`,`quota_id`,`code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_quota_members` -- LOCK TABLES `lime_quota_members` WRITE; /*!40000 ALTER TABLE `lime_quota_members` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_quota_members` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_saved_control` -- DROP TABLE IF EXISTS `lime_saved_control`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_saved_control` ( `scid` int(11) NOT NULL AUTO_INCREMENT, `sid` int(11) NOT NULL DEFAULT 0, `srid` int(11) NOT NULL DEFAULT 0, `identifier` text NOT NULL, `access_code` text NOT NULL, `email` text DEFAULT NULL, `ip` text NOT NULL, `saved_thisstep` text NOT NULL, `status` char(1) NOT NULL DEFAULT '', `saved_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `refurl` text DEFAULT NULL, PRIMARY KEY (`scid`), KEY `saved_control_idx2` (`sid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_saved_control` -- LOCK TABLES `lime_saved_control` WRITE; /*!40000 ALTER TABLE `lime_saved_control` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_saved_control` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_settings_global` -- DROP TABLE IF EXISTS `lime_settings_global`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_settings_global` ( `stg_name` varchar(50) NOT NULL DEFAULT '', `stg_value` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`stg_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_settings_global` -- LOCK TABLES `lime_settings_global` WRITE; /*!40000 ALTER TABLE `lime_settings_global` DISABLE KEYS */; INSERT INTO `lime_settings_global` VALUES ('DBVersion','133'), ('SessionName','ls37928383855338684449'); /*!40000 ALTER TABLE `lime_settings_global` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_survey_67268` -- DROP TABLE IF EXISTS `lime_survey_67268`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_survey_67268` ( `id` int(11) NOT NULL AUTO_INCREMENT, `submitdate` datetime DEFAULT NULL, `startlanguage` varchar(20) NOT NULL DEFAULT '', `token` varchar(36) DEFAULT NULL, `datestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `startdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `67268X73X260` varchar(5) DEFAULT NULL, `67268X73X261` char(1) DEFAULT NULL, `67268X73X262` text DEFAULT NULL, `67268X73X3381` varchar(5) DEFAULT NULL, `67268X73X3382` varchar(5) DEFAULT NULL, `67268X73X3383` varchar(5) DEFAULT NULL, `67268X73X3384` varchar(5) DEFAULT NULL, `67268X73X3385` varchar(5) DEFAULT NULL, `67268X73X3386` varchar(5) DEFAULT NULL, `67268X73X3387` varchar(5) DEFAULT NULL, `67268X73X3388` varchar(5) DEFAULT NULL, `67268X73X3389` varchar(5) DEFAULT NULL, `67268X64X227` varchar(5) DEFAULT NULL, `67268X64X228` varchar(5) DEFAULT NULL, `67268X65X229` varchar(5) DEFAULT NULL, `67268X65X230` varchar(5) DEFAULT NULL, `67268X65X231` varchar(5) DEFAULT NULL, `67268X66X232` varchar(5) DEFAULT NULL, `67268X66X233` varchar(5) DEFAULT NULL, `67268X66X234` varchar(5) DEFAULT NULL, `67268X66X235` varchar(5) DEFAULT NULL, `67268X66X236` varchar(5) DEFAULT NULL, `67268X66X237` varchar(5) DEFAULT NULL, `67268X66X238` varchar(5) DEFAULT NULL, `67268X67X239` varchar(5) DEFAULT NULL, `67268X67X240` varchar(5) DEFAULT NULL, `67268X67X241` varchar(5) DEFAULT NULL, `67268X67X242` varchar(5) DEFAULT NULL, `67268X68X243` varchar(5) DEFAULT NULL, `67268X68X244` varchar(5) DEFAULT NULL, `67268X68X245` varchar(5) DEFAULT NULL, `67268X68X246` varchar(5) DEFAULT NULL, `67268X68X247` varchar(5) DEFAULT NULL, `67268X68X248` varchar(5) DEFAULT NULL, `67268X68X249` varchar(5) DEFAULT NULL, `67268X69X250` varchar(5) DEFAULT NULL, `67268X69X251` varchar(5) DEFAULT NULL, `67268X69X252` varchar(5) DEFAULT NULL, `67268X70X253` varchar(5) DEFAULT NULL, `67268X70X254` varchar(5) DEFAULT NULL, `67268X70X255` varchar(5) DEFAULT NULL, `67268X70X256` varchar(5) DEFAULT NULL, `67268X71X257` varchar(5) DEFAULT NULL, `67268X71X258` varchar(5) DEFAULT NULL, `67268X72X259` varchar(5) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_survey_67268` -- LOCK TABLES `lime_survey_67268` WRITE; /*!40000 ALTER TABLE `lime_survey_67268` DISABLE KEYS */; INSERT INTO `lime_survey_67268` VALUES (1,NULL,'de','','2009-06-16 11:21:26','2009-06-16 11:18:20','2','F','Falter Verlagsgesellschaft','','','','','','','','','Y','4','3','2','2','3','3','4','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (2,'2009-06-16 11:30:14','de','','2009-06-16 11:30:14','2009-06-16 11:20:15','5','M','EDV','','','','Y','','','','','','1','2','2','1','3','1','1','2','3','4','3','4','5','6','5','3','4','1','2','4','5','4','2','5','4','3','5','5','4','5','6','5','4'), (3,'2009-06-16 11:28:40','de','','2009-06-16 11:28:40','2009-06-16 11:22:19','2','M','Redaktion','','','','','','','Y','','','5','4','5','6','6','2','2','6','5','6','6','5','2','5','5','6','3','6','4','2','4','3','2','5','6','5','2','5','4','6','6','6','4'), (4,'2009-06-16 11:32:59','de','','2009-06-16 11:32:59','2009-06-16 11:23:00','3','F','keine angabe','','','','','','','','Y','','2','4','1','1','5','1','1','3','4','5','5','6','6','5','4','6','3','6','3','3','6','5','2','6','6','5','4','4','4','6','6','6','4'), (5,'2009-06-16 11:33:04','de','','2009-06-16 11:33:04','2009-06-16 11:23:04','3','M','keine Angabe','','Y','Y','','','','','','','1','4','1','1','4','1','1','1','4','5','4','6','6','5','4','6','1','6','1','1','6','5','1','5','6','3','4','4','3','6','6','6','4'), (6,NULL,'de','','2009-06-16 11:31:46','2009-06-16 11:26:36','2','F','Redaktion','','','','','','','','','Y','5','4','3','3','6','2','2','4','3','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (7,'2009-06-16 11:45:05','de','','2009-06-16 11:45:05','2009-06-16 11:40:17','3','M','redaktion','','','','','','','','','Y','4','4','4','3','6','3','3','5','4','5','6','4','4','5','5','5','4','5','5','5','5','5','5','5','6','5','4','6','4','6','6','5','4'), (8,'2009-06-16 11:53:03','de','','2009-06-16 11:53:03','2009-06-16 11:43:58','2','M','Verlag / Corporate Publishing','','','','Y','','','','','','5','4','2','5','6','1','1','4','3','5','4','3','3','5','5','5','5','4','3','5','4','5','5','6','6','5','5','4','4','6','6','5','4'), (9,'2009-06-16 11:57:58','de','','2009-06-16 11:57:58','2009-06-16 11:49:46','3','F','Falte Verlag / Buchverlag','','','','','','','','','Y','3','3','1','1','5','1','1','1','3','6','4','4','5','6','4','5','5','5','3','4','5','4','2','5','4','4','5','5','4','6','6','6','5'), (10,NULL,'de','','2009-06-16 11:59:02','2009-06-16 11:55:51','4','M','frei','','','','','','','','','Y','4','3','1','4','3','1','1','3','1','5','5','4','3','4','4','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (11,'2009-06-16 12:06:16','de','','2009-06-16 12:06:16','2009-06-16 11:56:23','3','M','produktion','','','','','','','','Y','','5','4','4','3','3','3','3','4','4','4','4','5','5','3','3','4','4','5','5','4','5','4','4','6','5','5','5','4','5','5','5','5','4'), (12,'2009-06-16 12:05:09','de','','2009-06-16 12:05:09','2009-06-16 11:56:41','2','F','Falter Verlagsgesellschaft','','','','','','','','','Y','4','3','2','1','3','2','2','3','3','5','4','3','3','5','4','4','1','1','2','4','4','5','2','3','3','3','3','5','4','5','5','4','4'), (13,NULL,'de','','2009-06-16 12:21:38','2009-06-16 12:21:13','4','F','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (14,'2009-06-16 12:50:50','de','','2009-06-16 12:50:50','2009-06-16 12:38:38','4','F','Falter Programmredaktion','','','','','Y','','','','','5','3','3','4','4','2','3','1','3','4','2','3','3','4','4','4','3','1','3','3','2','3','1','4','4','4','4','3','3','5','6','5','4'), (15,'2009-06-16 13:01:23','de','','2009-06-16 13:01:23','2009-06-16 12:53:01','4','F','anzeigenverkauf','','','','Y','','','','','','5','3','1','1','5','1','1','1','1','1','1','5','1','5','5','1','1','5','5','4','4','1','1','5','1','3','3','1','1','6','6','6','4'), (16,NULL,'de','','2009-06-16 13:05:09','2009-06-16 13:05:06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (17,'2009-06-16 13:24:41','de','','2009-06-16 13:24:41','2009-06-16 13:19:13','2','F','journalismus, zeitungs-magazinverlag','','Y','','Y','','','','','','3','4','2','2','4','1','1','4','4','5','5','3','4','3','4','5','5','4','4','4','4','3','2','4','4','4','4','3','3','6','5','5','4'), (18,'2009-06-16 15:59:58','de','','2009-06-16 15:59:58','2009-06-16 15:54:18','4','M','Anzeigenabteilung','','','','Y','','','','Y','','5','5','3','5','6','3','3','3','3','5','5','6','4','5','5','5','5','6','5','5','5','5','4','5','4','5','4','4','5','5','5','5','4'), (19,NULL,'de','','2009-06-16 20:11:34','2009-06-16 20:11:25','2','F','f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (20,'2009-06-17 13:51:03','de','','2009-06-17 13:51:03','2009-06-17 13:44:39','3','M','Redaktion','','','','Y','','','','Y','','5','4','4','4','5','1','2','3','4','5','4','5','3','4','4','4','3','3','2','3','3','2','3','4','4','5','5','5','4','6','6','6','5'), (21,'2009-06-18 14:09:08','de','','2009-06-18 14:09:08','2009-06-18 13:58:36','4','F','Verlag','','','','','Y','','','','','2','3','1','2','2','1','1','1','1','5','2','1','2','6','2','4','2','1','2','2','3','3','3','5','2','3','4','4','4','5','5','4','3'), (22,'2009-06-19 14:44:44','de','','2009-06-19 14:44:44','2009-06-19 11:32:49','3','F','keine Angabe','','','','','','','','','Y','3','3','2','1','2','1','1','3','4','4','4','4','3','5','4','4','2','1','1','4','4','4','2','2','2','3','4','3','4','5','5','5','4'), (23,NULL,'de','','2009-06-19 11:34:42','2009-06-19 11:32:53','3','M','Medien','','','','Y','','','','','','5','5','6','6','5','4','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (24,'2009-06-19 11:49:25','de','','2009-06-19 11:49:25','2009-06-19 11:45:40','2','M','Redaktion','','','','','','','','','Y','3','1','2','4','6','1','1','1','1','2','1','1','1','2','1','2','1','1','2','1','2','1','1','5','5','4','5','3','3','6','6','6','4'), (25,'2009-06-19 11:52:17','de','','2009-06-19 11:52:17','2009-06-19 11:46:08','3','F','vertrieb','','Y','Y','Y','','','','Y','','5','2','2','1','5','2','3','1','2','4','4','5','3','4','2','5','5','1','2','4','5','4','1','5','5','4','5','3','2','5','5','6','5'), (26,NULL,'de','','2009-06-19 12:19:40','2009-06-19 12:14:59','3','F','Falter Buchverlag','','','','','','','','','Y','3','3','1','1','5','3','3','2','5','6','5','6','5','5','5','5','5','5','4','3','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (27,'2009-06-19 12:37:00','de','','2009-06-19 12:37:00','2009-06-19 12:28:09','4','M','redaktion','','','','','','','','','Y','4','1','1','1','3','1','1','3','1','4','3','2','2','4','4','3','3','1','1','3','4','3','1','4','4','4','4','3','4','6','6','6','6'), (28,NULL,'de','','2009-06-19 12:44:05','2009-06-19 12:38:14','1','M','verkauf','','','','','','','Y','','','6','5','5','5','6','2','3','5','4','6','4','3','5','5','3','4','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (29,NULL,'de','','2009-06-20 16:19:58','2009-06-20 16:13:34','3','M','Zeitung','','','','','','','','','Y','3','3','3','2','5','1','1','2','2','5','4','3','4','4','4','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (30,'2009-06-23 10:05:12','de','','2009-06-23 10:05:12','2009-06-23 09:48:28','2','F','Anzeigenabteilung','','','','','Y','','','','','5','3','3','1','5','1','1','4','1','3','3','3','3','4','4','3','3','2','2','4','3','2','3','4','4','3','3','4','4','4','5','4','3'), (31,'2009-06-24 15:42:59','de','','2009-06-24 15:42:59','2009-06-24 15:36:49','4','M','corporate publishing','','Y','','Y','','','','','Y','3','2','3','4','3','1','1','1','1','4','3','1','2','5','2','6','5','1','1','4','2','2','1','6','4','5','5','5','5','5','6','6','6'); /*!40000 ALTER TABLE `lime_survey_67268` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_surveys` -- DROP TABLE IF EXISTS `lime_surveys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_surveys` ( `sid` int(11) NOT NULL DEFAULT 0, `owner_id` int(11) NOT NULL DEFAULT 0, `admin` varchar(50) DEFAULT NULL, `active` char(1) NOT NULL DEFAULT 'N', `expires` date DEFAULT NULL, `startdate` date DEFAULT NULL, `adminemail` text DEFAULT NULL, `private` char(1) DEFAULT NULL, `faxto` varchar(20) DEFAULT NULL, `format` char(1) DEFAULT NULL, `template` varchar(100) DEFAULT 'default', `language` varchar(50) DEFAULT NULL, `additional_languages` varchar(255) DEFAULT NULL, `datestamp` char(1) DEFAULT 'N', `usecookie` char(1) DEFAULT 'N', `notification` char(1) DEFAULT '0', `allowregister` char(1) DEFAULT 'N', `attribute1` varchar(255) DEFAULT NULL, `attribute2` varchar(255) DEFAULT NULL, `allowsave` char(1) DEFAULT 'Y', `autonumber_start` bigint(11) DEFAULT 0, `autoredirect` char(1) DEFAULT 'N', `allowprev` char(1) DEFAULT 'Y', `printanswers` char(1) DEFAULT 'N', `ipaddr` char(1) DEFAULT 'N', `useexpiry` char(1) NOT NULL DEFAULT 'N', `usestartdate` char(1) NOT NULL DEFAULT 'N', `refurl` char(1) DEFAULT 'N', `datecreated` date DEFAULT NULL, `publicstatistics` char(1) DEFAULT 'N', `publicgraphs` char(1) DEFAULT 'N', `listpublic` char(1) DEFAULT 'N', `htmlemail` char(1) DEFAULT 'N', `tokenanswerspersistence` char(1) DEFAULT 'N', `assessments` char(1) DEFAULT 'N', `usecaptcha` char(1) DEFAULT 'N', `bounce_email` text DEFAULT NULL, PRIMARY KEY (`sid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_surveys` -- LOCK TABLES `lime_surveys` WRITE; /*!40000 ALTER TABLE `lime_surveys` DISABLE KEYS */; INSERT INTO `lime_surveys` VALUES (29975,1,'','N','0000-00-00','2009-05-01','','Y','','S','default','en','','Y','N','0','N','','','N',0,'N','Y','N','Y','N','N','Y','2007-10-18','N','N','N','N','N','N','N',''), (67268,1,'Markus A. Mascelli','Y','2009-06-30','2009-06-01','mam@heimam.at','N','','S','limespired_mam','de','','Y','N','2','N','','','Y',0,'N','Y','N','N','Y','N','N','2009-05-15','N','N','N','Y','N','Y','B','mam@heimam.at'), (47876,1,'Markus A. Mascelli','N','2009-07-01','2009-05-01','mam@heimam.at','N','','S','limespired_mam','de','','Y','N','2','N','','','Y',3,'N','Y','N','N','Y','N','N','2009-05-15','N','N','Y','Y','N','Y','B','mam@heimam.at'), (31565,1,'','N',NULL,NULL,'','Y','','S','default','en','hr nl','N','N','0','N','','','Y',0,'N','Y','N','N','N','N','N','2007-02-11','N','N','N','N','N','N','N',''), (40,1,'Administratorname','N',NULL,NULL,'admin@localhost','Y','000-00000000','G','default','en','','Y','N','0','N','','','Y',0,'N','Y','N','N','N','N','N','2008-04-21','N','N','N','N','N','N','N','admin@localhost'), (29846,1,'Administratorname','N',NULL,NULL,'admin@localhost','Y','000-00000000','G','default','en','','Y','N','0','N','','','Y',4,'N','Y','Y','N','N','N','N','2008-04-21','N','N','N','N','N','N','N','admin@localhost'); /*!40000 ALTER TABLE `lime_surveys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_surveys_languagesettings` -- DROP TABLE IF EXISTS `lime_surveys_languagesettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_surveys_languagesettings` ( `surveyls_survey_id` int(10) unsigned NOT NULL DEFAULT 0, `surveyls_language` varchar(45) NOT NULL DEFAULT 'en', `surveyls_title` varchar(200) NOT NULL DEFAULT '', `surveyls_description` text DEFAULT NULL, `surveyls_welcometext` text DEFAULT NULL, `surveyls_endtext` text DEFAULT NULL, `surveyls_url` varchar(255) DEFAULT NULL, `surveyls_urldescription` varchar(255) DEFAULT NULL, `surveyls_email_invite_subj` varchar(255) DEFAULT NULL, `surveyls_email_invite` text DEFAULT NULL, `surveyls_email_remind_subj` varchar(255) DEFAULT NULL, `surveyls_email_remind` text DEFAULT NULL, `surveyls_email_register_subj` varchar(255) DEFAULT NULL, `surveyls_email_register` text DEFAULT NULL, `surveyls_email_confirm_subj` varchar(255) DEFAULT NULL, `surveyls_email_confirm` text DEFAULT NULL, PRIMARY KEY (`surveyls_survey_id`,`surveyls_language`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_surveys_languagesettings` -- LOCK TABLES `lime_surveys_languagesettings` WRITE; /*!40000 ALTER TABLE `lime_surveys_languagesettings` DISABLE KEYS */; INSERT INTO `lime_surveys_languagesettings` VALUES (29975,'en','Slightly Trickier Sample Survey','

This is a sample survey designed for \r\n\r\ntesting LimeSurvey.

One of the first things you\'ll need to do, in order to make this work properly, is to fix up the "reference to \r\n\r\nprevious answers" codes in the first two questions of Group 2. These questions contain (INSERTANS:1X2X3) code that needs the numbers changed \r\n\r\nto match questions 1 and 3 of Group 1. In order to find this number out, browse to question 1 of Group 1, and then copy the code from the URL bar in \r\n\r\nyour web browser, starting from the number after "SID="

IE: 29975&gid=2&qid=4

Then, replace \r\n\r\nthe "&gid=" with an X, and replace the "&qid=" with an X. So you should have:

29975X2X4

Then, you can \r\n\r\nreplace the number in the curly brackets of question 1, group 2, so that it says:

(INSERTANS:29975X2X4)

Do the same with the other codes \r\n\r\nin the questions.

More information on using the answers to previous questions in your questions is available in the documentation.

','Welcome to the LimeSurvey Sample Survey',NULL,NULL,'','Invitation to participate in survey','Dear {FIRSTNAME},\n\nYou have been invited to \r\n\r\nparticipate in a survey.\n\nThe survey is titled:\n\"{SURVEYNAME}\"\n\n\"{SURVEYDESCRIPTION}\"\n\nTo participate, please click on the link below.\n\r\n\r\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick here to do the survey:\n{SURVEYURL}','Reminder \r\n\r\nto participate in survey','Dear {FIRSTNAME},\n\nRecently we invited you to participate in a survey.\n\nWe note that you have not yet completed the \r\n\r\nsurvey, and wish to remind you that the survey is still available should you wish to take part.\n\nThe survey is titled:\n\"{SURVEYNAME}\"\n\r\n\r\n\n\"{SURVEYDESCRIPTION}\"\n\nTo participate, please click on the link below.\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\r\n\r\n\n----------------------------------------------\nClick here to do the survey:\n{SURVEYURL}','Survey Registration Confirmation','Dear \r\n\r\n{FIRSTNAME},\n\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.\n\nTo complete \r\n\r\nthis survey, click on the following URL:\n\n{SURVEYURL}\n\nIf you have any questions about this survey, or if you did not register to participate \r\n\r\nand believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of completed survey','Dear {FIRSTNAME},\n\nThis \r\n\r\nemail is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.\n\nIf you \r\n\r\nhave any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.\n\nSincerely,\n\n{ADMINNAME}'), (67268,'de','Bewertung der Integrierten Kommunikation im Unternehmen','

Online-Umfrage im Rahmen der Diplomarbeit in der Studienrichtung \r\n\r\nPublizistik- und Kommunikationswissenschaft an der Universität Wien

','

Liebe Teilnehmerin, lieber Teilnehmer,
\r\n
\r\n
\r\n\r\n\r\ndanke, dass Sie sich bereit erklärt haben, an dieser Umfrage teilzunehmen.
\r\n
\r\nDie Umfrage besteht aus 9 Abschnitten mit \r\n\r\ninsgesamt 33 Fragen.
\r\nDie Beantwortung der Fragen wird nur zirka 15 Minuten in Anspruch nehmen.
\r\n
\r\nDie Befragung und \r\n\r\ndie anschließende Auswertung erfolgt selbstverständlich absolut anonym.
\r\nDie Angaben zu Ihrer Person, die zu Beginn der Umfrage \r\n\r\ngestellt werden, dienen lediglich der statistischen Auswertung und werden absolut vertraulich behandelt.
\r\n
\r\n
\r\nHier geht es \r\n\r\nzur Umfrage:

','
\r\nVielen Dank für Ihre Teilnahme!
\r\n
','','','Einladung zur Teilnahme an einer Umfrage','Hallo \r\n\r\n{FIRSTNAME},

Hiermit möchten wir Sie zu einer Umfrage einladen.

Der Titel der Umfrage ist
\'{SURVEYNAME}\'

\'{SURVEYDESCRIPTION}\'

Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf den unten stehenden Link.

Mit freundlichen \r\n\r\nGrüßen,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Klicken Sie hier um die Umfrage zu \r\n\r\nstarten:
{SURVEYURL}','Erinnerung an Teilnahme an einer Umfrage','Hallo {FIRSTNAME},

Vor kurzem haben wir Sie zu einer Umfrage \r\n\r\neingeladen.

Zu unserem Bedauern haben wir bemerkt, dass Sie die Umfrage noch nicht ausgefüllt haben. Wir möchten Ihnen mitteilen, dass \r\n\r\ndie Umfrage noch aktiv ist und würden uns freuen, wenn Sie teilnehmen könnten.

Der Titel der Umfrage ist
\'{SURVEYNAME}\'

\'{SURVEYDESCRIPTION}\'

Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf den unten stehenden Link.

Mit freundlichen \r\n\r\nGrüßen,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Klicken Sie hier um die Umfrage zu \r\n\r\nstarten:
{SURVEYURL}','Registrierungsbestätigung für Teilnahmeumfrage','Hallo {FIRSTNAME},

Sie (oder jemand, der Ihre Email \r\n\r\nbenutzt hat) haben sich für eine Umfrage mit dem Titel {SURVEYNAME} angemeldet.

Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf \r\n\r\nden folgenden Link.

{SURVEYURL}

Wenn Sie irgendwelche Fragen zu dieser Umfrage haben oder wenn Sie sich _nicht_ für diese \r\n\r\nUmfrage angemeldet haben und sie glauben, dass Ihnen diese Email irrtümlicherweise zugeschickt worden ist, kontaktieren Sie bitte {ADMINNAME} unter \r\n\r\n{ADMINEMAIL}.','Abschlussbestätigung einer Umfrage','Hallo {FIRSTNAME},

Vielen Dank für die Teilnahme an der Umfrage mit dem Titel \r\n\r\n{SURVEYNAME}. Ihre Antworten wurden bei uns gespeichert.

Wenn Sie irgendwelche Fragen zu dieser Email haben, kontaktieren Sie bitte \r\n\r\n{ADMINNAME} unter {ADMINEMAIL}.

Mit freundlichen Grüßen,

{ADMINNAME}'), (47876,'de','Bewertung der Integrierten Kommunikation im Unternehmen TEST','

Online-Umfrage im Rahmen der Diplomarbeit in der Studienrichtung \r\n\r\nPublizistik- und Kommunikationswissenschaft an der Universität Wien

','

Liebe Teilnehmerin, lieber Teilnehmer,
\r\n
\r\n
\r\n\r\n\r\ndanke, dass Sie sich bereit erklärt haben, an dieser Umfrage teilzunehmen.
\r\n
\r\nDie Umfrage besteht aus 9 Abschnitten mit \r\n\r\ninsgesamt 33 Fragen.
\r\nDie Beantwortung der Fragen wird nur zirka 15 Minuten in Anspruch nehmen.
\r\n
\r\nDie Befragung und \r\n\r\ndie anschließende Auswertung erfolgt selbstverständlich absolut anonym.
\r\nDie Angaben zu Ihrer Person, die zu Beginn der Umfrage \r\n\r\ngestellt werden, dienen lediglich der statistischen Auswertung und werden absolut vertraulich behandelt.
\r\n
\r\n
\r\nHier geht es \r\n\r\nzur Umfrage:

','
\r\nVielen Dank für Ihre Teilnahme!
\r\n
','','','Einladung zur Teilnahme an einer Umfrage','Hallo \r\n\r\n{FIRSTNAME},

Hiermit möchten wir Sie zu einer Umfrage einladen.

Der Titel der Umfrage ist
\'{SURVEYNAME}\'

\'{SURVEYDESCRIPTION}\'

Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf den unten stehenden Link.

Mit freundlichen \r\n\r\nGrüßen,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Klicken Sie hier um die Umfrage zu \r\n\r\nstarten:
{SURVEYURL}','Erinnerung an Teilnahme an einer Umfrage','Hallo {FIRSTNAME},

Vor kurzem haben wir Sie zu einer Umfrage \r\n\r\neingeladen.

Zu unserem Bedauern haben wir bemerkt, dass Sie die Umfrage noch nicht ausgefüllt haben. Wir möchten Ihnen mitteilen, dass \r\n\r\ndie Umfrage noch aktiv ist und würden uns freuen, wenn Sie teilnehmen könnten.

Der Titel der Umfrage ist
\'{SURVEYNAME}\'

\'{SURVEYDESCRIPTION}\'

Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf den unten stehenden Link.

Mit freundlichen \r\n\r\nGrüßen,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Klicken Sie hier um die Umfrage zu \r\n\r\nstarten:
{SURVEYURL}','Registrierungsbestätigung für Teilnahmeumfrage','Hallo {FIRSTNAME},

Sie (oder jemand, der Ihre Email \r\n\r\nbenutzt hat) haben sich für eine Umfrage mit dem Titel {SURVEYNAME} angemeldet.

Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf \r\n\r\nden folgenden Link.

{SURVEYURL}

Wenn Sie irgendwelche Fragen zu dieser Umfrage haben oder wenn Sie sich _nicht_ für diese \r\n\r\nUmfrage angemeldet haben und sie glauben, dass Ihnen diese Email irrtümlicherweise zugeschickt worden ist, kontaktieren Sie bitte {ADMINNAME} unter \r\n\r\n{ADMINEMAIL}.','Abschlussbestätigung einer Umfrage','Hallo {FIRSTNAME},

Vielen Dank für die Teilnahme an der Umfrage mit dem Titel \r\n\r\n{SURVEYNAME}. Ihre Antworten wurden bei uns gespeichert.

Wenn Sie irgendwelche Fragen zu dieser Email haben, kontaktieren Sie bitte \r\n\r\n{ADMINNAME} unter {ADMINEMAIL}.

Mit freundlichen Grüßen,

{ADMINNAME}'), (31565,'en','Test for language question','description_en','welcome_en',NULL,NULL,'urldescrip_en','Invitation to participate in survey','Dear {FIRSTNAME},\n\nYou have been invited to participate in a survey.\n\nThe survey is titled:\n\"{SURVEYNAME}\"\n\n\"{SURVEYDESCRIPTION}\"\n\nTo \r\n\r\nparticipate, please click on the link below.\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick \r\n\r\nhere to do the survey:\n{SURVEYURL}','Reminder to participate in survey','Dear {FIRSTNAME},\n\nRecently we invited you to participate in a \r\n\r\nsurvey.\n\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take \r\n\r\npart.\n\nThe survey is titled:\n\"{SURVEYNAME}\"\n\n\"{SURVEYDESCRIPTION}\"\n\nTo participate, please click on the link below.\n\nSincerely,\n\n\r\n\r\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick here to do the survey:\n{SURVEYURL}','Survey Registration \r\n\r\nConfirmation','Dear {FIRSTNAME},\n\nYou, or someone using your email address, have registered to participate in an online survey titled \r\n\r\n{SURVEYNAME}.\n\nTo complete this survey, click on the following URL:\n\n{SURVEYURL}\n\nIf you have any questions about this survey, or if you did \r\n\r\nnot register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of completed survey','Dear {FIRSTNAME},\n\nThis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you \r\n\r\nfor participating.\n\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.\n\nSincerely,\n\n\r\n\r\n{ADMINNAME}'), (31565,'hr','short_title_hr','description_hr','welcome_hr',NULL,NULL,'urldescrip_hr','example@example.com','email_invite_hr','example@example.com','email_remind_hr','example@example.com','email_register_hr','example@example.com','email_confirm_hr'), (31565,'nl','short_title_nl','description_nl','welcome_nl',NULL,NULL,'urldescrip_nl','example@example.com','email_invite_nl','example@example.com','email_remind_nl','example@example.com','email_register_nl','example@example.com','email_confirm_nl'), (40,'en','Sample Survey','This is a sample survey showing of all the question types you can use in LimeSurvey.','This is the welcome text for \r\n\r\nthe survey!
\nYou can can edit it in the survey properties.',NULL,NULL,'','Invitation to participate in survey','Dear {FIRSTNAME},\n\nYou \r\n\r\nhave been invited to participate in a survey.\n\nThe survey is titled:\n"{SURVEYNAME}"\n\n"{SURVEYDESCRIPTION}"\n\nTo \r\n\r\nparticipate, please click on the link below.\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick \r\n\r\nhere to do the survey:\n{SURVEYURL}','Reminder to participate in survey','Dear {FIRSTNAME},\n\nRecently we invited you to participate in a \r\n\r\nsurvey.\n\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take \r\n\r\npart.\n\nThe survey is titled:\n"{SURVEYNAME}"\n\n"{SURVEYDESCRIPTION}"\n\nTo participate, please click on the link below.\n\r\n\r\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick here to do the survey:\n{SURVEYURL}','Survey \r\n\r\nRegistration Confirmation','Dear {FIRSTNAME},\n\nYou, or someone using your email address, have registered to participate in an online survey \r\n\r\ntitled {SURVEYNAME}.\n\nTo complete this survey, click on the following URL:\n\n{SURVEYURL}\n\nIf you have any questions about this survey, or if \r\n\r\nyou did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of completed \r\n\r\nsurvey','Dear {FIRSTNAME},\n\nThis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. \r\n\r\nThank you for participating.\n\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.\n\nSincerely,\n\n\r\n\r\n{ADMINNAME}'), (29846,'en','Sample Survey for v1.8 (all questions plus most options)','This is a sample survey showing all the question types you can use in \r\n\r\nLimeSurvey version 1.80.
\nIt also shows some of the options available for each question.
','This is the welcome text for the survey!
\nYou can can edit it in the survey properties.',NULL,NULL,'','Invitation to participate in survey','Dear {FIRSTNAME},\n\nYou have been \r\n\r\ninvited to participate in a survey.\n\nThe survey is titled:\n"{SURVEYNAME}"\n\n"{SURVEYDESCRIPTION}"\n\nTo participate, please \r\n\r\nclick on the link below.\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick here to do the \r\n\r\nsurvey:\n{SURVEYURL}','Reminder to participate in survey','Dear {FIRSTNAME},\n\nRecently we invited you to participate in a survey.\n\nWe note \r\n\r\nthat you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.\n\nThe survey is \r\n\r\ntitled:\n"{SURVEYNAME}"\n\n"{SURVEYDESCRIPTION}"\n\nTo participate, please click on the link below.\n\nSincerely,\n\n{ADMINNAME} \r\n\r\n({ADMINEMAIL})\n\n----------------------------------------------\nClick here to do the survey:\n{SURVEYURL}','Survey Registration Confirmation','Dear {FIRSTNAME},\n\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.\n\nTo \r\n\r\ncomplete this survey, click on the following URL:\n\n{SURVEYURL}\n\nIf you have any questions about this survey, or if you did not register to \r\n\r\nparticipate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of completed survey','Dear \r\n\r\n{FIRSTNAME},\n\nThis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for \r\n\r\nparticipating.\n\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.\n\nSincerely,\n\n{ADMINNAME}'); /*!40000 ALTER TABLE `lime_surveys_languagesettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_surveys_rights` -- DROP TABLE IF EXISTS `lime_surveys_rights`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_surveys_rights` ( `sid` int(10) unsigned NOT NULL DEFAULT 0, `uid` int(10) unsigned NOT NULL DEFAULT 0, `edit_survey_property` tinyint(1) NOT NULL DEFAULT 0, `define_questions` tinyint(1) NOT NULL DEFAULT 0, `browse_response` tinyint(1) NOT NULL DEFAULT 0, `export` tinyint(1) NOT NULL DEFAULT 0, `delete_survey` tinyint(1) NOT NULL DEFAULT 0, `activate_survey` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`sid`,`uid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_surveys_rights` -- LOCK TABLES `lime_surveys_rights` WRITE; /*!40000 ALTER TABLE `lime_surveys_rights` DISABLE KEYS */; INSERT INTO `lime_surveys_rights` VALUES (67268,1,1,1,1,1,1,1), (29975,1,1,1,1,1,1,1), (47876,1,1,1,1,1,1,1), (31565,1,1,1,1,1,1,1), (40,1,1,1,1,1,1,1), (29846,1,1,1,1,1,1,1); /*!40000 ALTER TABLE `lime_surveys_rights` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_templates` -- DROP TABLE IF EXISTS `lime_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_templates` ( `folder` varchar(255) NOT NULL DEFAULT '', `creator` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`folder`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_templates` -- LOCK TABLES `lime_templates` WRITE; /*!40000 ALTER TABLE `lime_templates` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_templates_rights` -- DROP TABLE IF EXISTS `lime_templates_rights`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_templates_rights` ( `uid` int(11) NOT NULL DEFAULT 0, `folder` varchar(255) NOT NULL DEFAULT '', `use` int(1) NOT NULL DEFAULT 0, PRIMARY KEY (`uid`,`folder`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_templates_rights` -- LOCK TABLES `lime_templates_rights` WRITE; /*!40000 ALTER TABLE `lime_templates_rights` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_templates_rights` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_user_groups` -- DROP TABLE IF EXISTS `lime_user_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_user_groups` ( `ugid` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL DEFAULT '', `description` text NOT NULL, `owner_id` int(10) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`ugid`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_user_groups` -- LOCK TABLES `lime_user_groups` WRITE; /*!40000 ALTER TABLE `lime_user_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_user_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_user_in_groups` -- DROP TABLE IF EXISTS `lime_user_in_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_user_in_groups` ( `ugid` int(10) unsigned NOT NULL DEFAULT 0, `uid` int(10) unsigned NOT NULL DEFAULT 0, KEY `user_in_groups_idx1` (`ugid`,`uid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_user_in_groups` -- LOCK TABLES `lime_user_in_groups` WRITE; /*!40000 ALTER TABLE `lime_user_in_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_user_in_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_users` -- DROP TABLE IF EXISTS `lime_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_users` ( `uid` int(11) NOT NULL AUTO_INCREMENT, `users_name` varchar(64) NOT NULL DEFAULT '', `password` blob NOT NULL, `full_name` varchar(50) NOT NULL DEFAULT '', `parent_id` int(10) unsigned NOT NULL DEFAULT 0, `lang` varchar(20) DEFAULT NULL, `email` text DEFAULT NULL, `create_survey` tinyint(1) NOT NULL DEFAULT 0, `create_user` tinyint(1) NOT NULL DEFAULT 0, `delete_user` tinyint(1) NOT NULL DEFAULT 0, `superadmin` tinyint(1) NOT NULL DEFAULT 0, `configurator` tinyint(1) NOT NULL DEFAULT 0, `manage_template` tinyint(1) NOT NULL DEFAULT 0, `manage_label` tinyint(1) NOT NULL DEFAULT 0, `htmleditormode` varchar(7) DEFAULT 'default', `one_time_pw` blob DEFAULT NULL, PRIMARY KEY (`uid`), UNIQUE KEY `users_name` (`users_name`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_users` -- LOCK TABLES `lime_users` WRITE; /*!40000 ALTER TABLE `lime_users` DISABLE KEYS */; INSERT INTO `lime_users` VALUES (1,'mam','06ddf8ed75a7f41957239a65972cc2fbc28f41007f6f0278fc6250fac40dcac0','Markus A. \r\n\r\nMascelli',0,'de','mam@heimam.at',1,1,1,1,1,1,1,'default',''); /*!40000 ALTER TABLE `lime_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `mambo_netspot` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mambo_netspot` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */; USE `mambo_netspot`; -- -- Table structure for table `netspot_banner` -- DROP TABLE IF EXISTS `netspot_banner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_banner` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT 0, `type` varchar(10) NOT NULL DEFAULT 'banner', `name` varchar(50) NOT NULL DEFAULT '', `imptotal` int(11) NOT NULL DEFAULT 0, `impmade` int(11) NOT NULL DEFAULT 0, `clicks` int(11) NOT NULL DEFAULT 0, `imageurl` varchar(100) NOT NULL DEFAULT '', `clickurl` varchar(200) NOT NULL DEFAULT '', `date` datetime DEFAULT NULL, `showBanner` tinyint(1) NOT NULL DEFAULT 0, `checked_out` tinyint(1) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `custombannercode` text DEFAULT NULL, PRIMARY KEY (`bid`), KEY `viewbanner` (`showBanner`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_banner` -- LOCK TABLES `netspot_banner` WRITE; /*!40000 ALTER TABLE `netspot_banner` DISABLE KEYS */; INSERT INTO `netspot_banner` VALUES (1,1,'banner','Ka-Ching',0,42,0,'ka-chingBanner.gif','http://www.miro.com.au','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL), (2,1,'banner','Oi!',0,48,0,'OiBanner.gif','http://www.miro.com.au','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL); /*!40000 ALTER TABLE `netspot_banner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_bannerclient` -- DROP TABLE IF EXISTS `netspot_bannerclient`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_bannerclient` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL DEFAULT '', `contact` varchar(60) NOT NULL DEFAULT '', `email` varchar(60) NOT NULL DEFAULT '', `extrainfo` text NOT NULL, `checked_out` tinyint(1) NOT NULL DEFAULT 0, `checked_out_time` time DEFAULT NULL, `editor` varchar(50) DEFAULT NULL, PRIMARY KEY (`cid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_bannerclient` -- LOCK TABLES `netspot_bannerclient` WRITE; /*!40000 ALTER TABLE `netspot_bannerclient` DISABLE KEYS */; INSERT INTO `netspot_bannerclient` VALUES (1,'Miro \r\n\r\nInternational Pty.','Administrator','admin@miro.com.au','',0,'00:00:00',NULL); /*!40000 ALTER TABLE `netspot_bannerclient` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_bannerfinish` -- DROP TABLE IF EXISTS `netspot_bannerfinish`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_bannerfinish` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT 0, `type` varchar(10) NOT NULL DEFAULT '', `name` varchar(50) NOT NULL DEFAULT '', `impressions` int(11) NOT NULL DEFAULT 0, `clicks` int(11) NOT NULL DEFAULT 0, `imageurl` varchar(50) NOT NULL DEFAULT '', `datestart` datetime DEFAULT NULL, `dateend` datetime DEFAULT NULL, PRIMARY KEY (`bid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_bannerfinish` -- LOCK TABLES `netspot_bannerfinish` WRITE; /*!40000 ALTER TABLE `netspot_bannerfinish` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_bannerfinish` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_categories` -- DROP TABLE IF EXISTS `netspot_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT 0, `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `section` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `ordering` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `count` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `cat_idx` (`section`,`published`,`access`), KEY `idx_section` (`section`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_categories` -- LOCK TABLES `netspot_categories` WRITE; /*!40000 ALTER TABLE `netspot_categories` DISABLE KEYS */; INSERT INTO `netspot_categories` VALUES (1,0,'Latest','Latest News','taking_notes.jpg','1','left','The latest news from the Mambo Team',1,0,'0000-00-00 00:00:00','',0,0,1,''), (2,0,'Mambo','Mambo','clock.jpg','com_weblinks','left','A selection of links that are all related to the Mambo project.',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''), (3,0,'Newsflash','Newsflash','','2','left','',1,0,'0000-00-00 00:00:00','',0,0,0,''), (4,0,'Mambo','Mambo','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''), (5,0,'Business: general','Business: general','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''), (7,0,'Examples','Example FAQs','key.jpg','3','left','Here you will find an example set of FAQs.',1,0,'0000-00-00 00:00:00',NULL,0,0,2,''), (9,0,'Finance','Finance','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,5,0,0,''), (10,0,'Linux','Linux','','com_newsfeeds','left','
\r\n',1,0,'0000-00-00 00:00:00',NULL,6,0,0,''), (11,0,'Internet','Internet','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,7,0,0,''), (12,0,'Contacts','Contacts','','com_contact_details','left','Contact Details for this website',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''); /*!40000 ALTER TABLE `netspot_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_components` -- DROP TABLE IF EXISTS `netspot_components`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_components` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `link` varchar(255) NOT NULL DEFAULT '', `menuid` int(11) unsigned NOT NULL DEFAULT 0, `parent` int(11) unsigned NOT NULL DEFAULT 0, `admin_menu_link` varchar(255) NOT NULL DEFAULT '', `admin_menu_alt` varchar(255) NOT NULL DEFAULT '', `option` varchar(50) NOT NULL DEFAULT '', `ordering` int(11) NOT NULL DEFAULT 0, `admin_menu_img` varchar(255) NOT NULL DEFAULT '', `iscore` tinyint(4) NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_components` -- LOCK TABLES `netspot_components` WRITE; /*!40000 ALTER TABLE `netspot_components` DISABLE KEYS */; INSERT INTO `netspot_components` VALUES (1,'Banners','',0,0,'','Banner Management','com_banners',0,'js/ThemeOffice/component.png',0,''), (2,'Manage Banners','',0,1,'option=com_banners','Active Banners','com_banners',1,'js/ThemeOffice/edit.png',0,''), (3,'Manage Clients','',0,1,'option=com_banners&task=listclients','Manage Clients','com_banners',2,'js/ThemeOffice/categories.png',0,''), (4,'Web Links','option=com_weblinks',0,0,'','Manage Weblinks','com_weblinks',0,'js/ThemeOffice/globe2.png',0,''), (5,'Weblink Items','',0,4,'option=com_weblinks','View existing weblinks','com_weblinks',1,'js/ThemeOffice/edit.png',0,''), (6,'Weblink Categories','',0,4,'option=categories§ion=com_weblinks','Manage weblink categories','',2,'js/ThemeOffice/categories.png',0,''), (7,'Contacts','option=com_contact',0,0,'','Edit contact details','com_contact',0,'js/ThemeOffice/user.png',1,''), (8,'Manage Contacts','',0,7,'option=com_contact','Edit contact details','com_contact',0,'js/ThemeOffice/edit.png',1,''), (9,'Contact Categories','',0,7,'option=categories§ion=com_contact_details','Manage contact categories','',2,'js/ThemeOffice/categories.png',1,''), (10,'FrontPage','option=com_frontpage',0,0,'','Manage Front Page Items','com_frontpage',0,'js/ThemeOffice/component.png',1,''), (11,'Polls','option=com_poll',0,0,'option=com_poll','Manage Polls','com_poll',0,'js/ThemeOffice/component.png',0,''), (12,'News Feeds','option=com_newsfeeds',0,0,'','News Feeds Management','com_newsfeeds',0,'js/ThemeOffice/component.png',0,''), (13,'Manage News Feeds','',0,12,'option=com_newsfeeds','Manage News Feeds','com_newsfeeds',1,'js/ThemeOffice/edit.png',0,''), (14,'Manage Categories','',0,12,'option=com_categories§ion=com_newsfeeds','Manage Categories','',2,'js/ThemeOffice/categories.png',0,''), (15,'Login','option=com_login',0,0,'','','com_login',0,'',1,''), (16,'Search','option=com_search',0,0,'','','com_search',0,'',1,''), (17,'Syndicate','',0,0,'option=com_syndicate&hidemainmenu=1','Manage Syndication Settings','com_syndicate',0,'js/ThemeOffice/component.png',0,''), (18,'Mass Mail','',0,0,'option=com_massmail&hidemainmenu=1','Send Mass Mail','com_massmail',0,'js/ThemeOffice/mass_email.png',0,''); /*!40000 ALTER TABLE `netspot_components` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_contact_details` -- DROP TABLE IF EXISTS `netspot_contact_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_contact_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `con_position` varchar(50) DEFAULT NULL, `address` text DEFAULT NULL, `suburb` varchar(50) DEFAULT NULL, `state` varchar(20) DEFAULT NULL, `country` varchar(50) DEFAULT NULL, `postcode` varchar(10) DEFAULT NULL, `telephone` varchar(25) DEFAULT NULL, `fax` varchar(25) DEFAULT NULL, `misc` mediumtext DEFAULT NULL, `image` varchar(100) DEFAULT NULL, `imagepos` varchar(20) DEFAULT NULL, `email_to` varchar(100) DEFAULT NULL, `default_con` tinyint(1) unsigned NOT NULL DEFAULT 0, `published` tinyint(1) unsigned NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, `user_id` int(11) NOT NULL DEFAULT 0, `catid` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_contact_details` -- LOCK TABLES `netspot_contact_details` WRITE; /*!40000 ALTER TABLE `netspot_contact_details` DISABLE KEYS */; INSERT INTO `netspot_contact_details` VALUES (1,'Name','Position','Street','Suburb','State','Country','Zip Code','Telephone','Fax','Miscellanous info','asterisk.png','top','email@email.com',1,1,0,'0000-00-00 00:00:00',1,'',0,12,0); /*!40000 ALTER TABLE `netspot_contact_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_content` -- DROP TABLE IF EXISTS `netspot_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_content` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `title_alias` varchar(100) NOT NULL DEFAULT '', `introtext` mediumtext NOT NULL, `fulltext` mediumtext NOT NULL, `state` tinyint(3) NOT NULL DEFAULT 0, `sectionid` int(11) unsigned NOT NULL DEFAULT 0, `mask` int(11) unsigned NOT NULL DEFAULT 0, `catid` int(11) unsigned NOT NULL DEFAULT 0, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(11) unsigned NOT NULL DEFAULT 0, `created_by_alias` varchar(100) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(11) unsigned NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `images` text NOT NULL, `urls` text NOT NULL, `attribs` text NOT NULL, `version` int(11) unsigned NOT NULL DEFAULT 1, `parentid` int(11) unsigned NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, `metakey` text NOT NULL, `metadesc` text NOT NULL, `access` int(11) unsigned NOT NULL DEFAULT 0, `hits` int(11) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `idx_section` (`sectionid`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`state`), KEY `idx_catid` (`catid`), KEY `idx_mask` (`mask`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_content` -- LOCK TABLES `netspot_content` WRITE; /*!40000 ALTER TABLE `netspot_content` DISABLE KEYS */; INSERT INTO `netspot_content` VALUES (1,'Welcome to Mambo','Welcome','If you\'ve read \r\n\r\n\r\n\r\nanything at all about Content Management Systems (CMS), you\'ll probably know at least three things: CMS are the most exciting way to do \r\n\r\nbusiness, CMS can be really, I mean really, complicated and lastly \r\n\r\nPortals are absolutely, outrageously, often unaffordably \r\n\r\nexpensive.

{mosimage}Mambo is set to change all that ... Mambo is different from the normal models for portal software. For a start, \r\n\r\nit\'s \r\n\r\nnot complicated. Mambo has been developed for the masses. It\'s licensed under the GNU/GPL license, easy to install and administer and \r\n\r\nreliable. Mambo doesn\'t even require the user or administrator of the system \r\n\r\nto know HTML to operate it once it\'s up and running.','

Mambo features:

\r\n\r\r\n\r\n\n

Extensive Administration:

\r\n',1,1,0,1,'0000-00-00 00:00:00',62,'Web \r\n\r\nMaster','2004-06-12 12:33:27',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','asterisk.png|left|Mambo Logo|1|Mambo Flower Logo|bottom|center|120','','',1,0,1,'','',0,0), (2,'Newsflash 1','','Mambo 4.5 is \'Power In Simplicity\'!. It has never been easier to create\r\nyour own dynamic site. Manage all your content \r\n\r\nfrom the best CMS admin\r\ninterface.','',1,2,1,3,'0000-00-00 00:00:00',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','','','',1,0,1,'','',0,0), (3,'Newsflash 2','','Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the \r\n\r\nneed for better RAM was due to some fool increasing the front-\r\n\r\nside bus speed. In future, busses will be told to slow down in residential \r\n\r\nmotherboards.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,2,'','',0,0), (4,'Newsflash 3','','Aoccdrnig to a rscheearch at an Elingsh uinervtisy, it deosn\'t mttaer in waht oredr the ltteers in a wrod are, the olny \r\n\r\niprmoetnt tihng is taht frist and lsat ltteer is at the rghit pclae. \r\n\r\nThe rset can be a toatl mses and you can sitll raed it wouthit porbelm. \r\n\r\nTihs is bcuseae we do not raed ervey lteter by itslef but the wrod as a wlohe.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,3,'','',0,1), (5,'Mambo License Guidelines','','Learn more about how Mambo is licensed and how this affects you.

Mambo is released under the GNU \r\n\r\nGeneral Public license (GNU GPL).The\r\nGNU GPL provides for a \r\n\r\nperson or persons to distribute Mambo for a fee,\r\nbut not actually charging \r\n\r\nfor the software itself, because Mambo is\r\nfree. Mambo is free to share and change, but if you do change it in\r\nanyway, can you also \r\n\r\r\n\r\n\nchange the license and make it commercial? No! The\r\nwhole GPL is devoted to ensuring this does not happen. Copyright, a\r\nmuch more refined and \r\n\r\nstringent law will prevent this as well.

So with \r\n\r\nregard to Mambo, the GPL and copyright:

You MAY \r\n\r\ndistribute it and charge for that service. You MAY change it, add design and content to it and you MAY charge \r\r\n\r\n\n\r\nfor that. You may NOT alter the license and you must NOT alter the copyright. You do NOT \r\n\r\n have to show a \'Powered by Mambo\' graphic, as it not a copyright \r\n\r\nnotice.

In other words, you must NOT pretend that Mambo is \r\n\r\nyours, and you must NOT charge people for Mambo.

\r\nUse Mambo to empower yourself and your clients by taking away the\r\n\'Black Magic\' \r\r\n\r\n\n\r\nthat surrounds putting content on the internet. Charge\r\nfor the value you add and not for the hard work that Miro, the Mambo\r\nDevelopment \r\n\r\nTeam and the Mambo community have put into it.

\r\n\r\nGuidelines:

Mambo is \"free\" software released under the \r\n\r\nGNU General Public License (GPL).

The\r\nword \"free\'\' has two legitimate general meanings; it can refer either\r\nto freedom \r\n\r\nor \r\n\r\nto price. When we speak of \"free software\'\', we\'re\r\ntalking about freedom, not price. (Think of \"free speech\'\', not \"free\r\nbeer\'\'.)

\r\n\r\n

Free software is a matter of the users\' freedom\r\nto \r\n\r\nrun, copy, distribute, study, change and improve the software. More\r\r\n\r\n\nprecisely, it refers to four kinds of freedom, for the users of the\r\nsoftware:

{mospagebreak heading=Introduction&title=Guidelines}

1. What license is \r\n\r\nMambo released under?

Mambo is released under the \r\n\r\nGNU GPL. A copy of this is included with your copy of Mambo and can \r\n\r\nalso be found at http://www.fsf.org/licenses/gpl.html. Unofficial translations can also be found at \r\n\r\r\n\r\n\nhttp://www.fsf.org/licenses/translations.html.

2. Who owns the copyright to Mambo?

The\r\ncopyright to \r\n\r\nMambo is held by Miro International Pty Ltd. Miro were the\r\r\n\r\n\noriginal authors of Mambo and continue to actively support the project.

\r\n\r\n

3. Are there any restrictions to your use of Mambo?

The GNU GPL grants you the freedom to use the software \r\n\r\nfor \r\n\r\nwhatever purpose you see fit.

4. May I charge money for Mambo?

The\r\nGPL allows everyone the freedom to do this. The \r\n\r\nright to charge money\r\nto distribute Mambo is part of the \r\n\r\ndefinition of \"free\" software.

When\r\npeople think of \"selling \r\n\r\nsoftware\'\', they usually imagine doing it the\r\nway most companies do it: making the software proprietary rather than\r\nfree. So to avoid \r\n\r\n\r\n\r\nambiguity you may you may charge to distribute the\r\nsoftware and any other service you provide along the way. You may not\r\ncharge for the \r\n\r\nsoftware itself.

Remember if someone pays your fee the GPL also \r\n\r\ngives him or her the freedom to pass on the software with or \r\n\r\nwithout a fee.

5. May I remove \"powered by Mambo, Copyright Miro etc\" from the footer?

Yes you can although we \r\n\r\nwould \r\n\r\nhope that you would retain it as a badge of honour.

6. May I remove the \"copyright\" statements from the source code to \r\n\r\nMambo?

No, you must keep all copyright notices and credits in \r\n\r\nthe source code.

7. Does the GPL mean that my \r\n\r\nwebsite content is also GPL?

No.\r\nThe copyright and license of Mambo does not cover the content that you\r\ncreate. Using Mambo \r\n\r\ndoes \r\n\r\nnot place any restrictions, legally, on the\r\nlicense or copyright you use for the content of your website.

8. I have \r\n\r\nmodified Mambo for my own web site. Do I have to release these \r\n\r\nmodifications?

The\r\nGPL permits anyone to make a \r\n\r\nmodified version for their own use without\r\nthe requirement to distribute it or pass on those changes to others.

9. I have made \r\n\r\n\r\n\r\na modification (hack) to the Mambo core code. Do I have to release it under the GPL?

If\r\nyou chose to distribute your \r\n\r\nmodifications to others it must be\r\nreleased under the same terms that \r\n\r\nyou received the original code. So\r\nyour modifications must be \r\n\r\nreleased under the GPL. You may of course in\r\nthis case modify the headers for the source code to include your own\r\ncopyright statement. If you \r\n\r\n\r\n\r\ndo so you must clearly annotate in the\r\nsource code your amendments, changes or additions.

10. I have written a Component, \r\n\r\nModule, Template for Mambo. Do I have to release it under the GPL? \r\n\r\n

No The GPL allows you to write your own extensions \r\n\r\nfor Mambo and to release those extensions under whatever license you chose.

11.\r\nI have written a Component, Module, Template \r\r\n\r\n\n\r\nfor Mambo and released it\r\nunder the GPL and I charge a fee for it, but website X is giving it\r\naway for free.

If someone \r\n\r\npays your fee the GPL also\r\ngives him or her the freedom to pass on \r\n\r\nthe software with or without a\r\nfee. Placing a restriction on \r\n\r\nsomeone\'s use of GPL licensed software is\r\nin breach of the GPL itself.

12. May I purchase a copy of Mambo, which has the \r\n\r\ncopyright \r\n\r\nstatements removed?

Although other GPL products may be available in this way Mambo is not.

\r\n\r\n

13. I believe person A is in breach of the GPL what should I do?

You \r\n\r\nshould report it. First check all the facts \r\n\r\nthat you can and then report it by sending an e-mail to license-violation@mamboserver.com.

14. Who has the power to \r\n\r\nenforce the GNU GPL \r\n\r\nlicense of Mambo?

Only\r\nthe copyright holder, Miro International Pty Ltd, has the power to do\r\r\n\r\n\nthis. If the Mambo Development Team finds, or is made aware of, a\r\nbreach of the GPL they will \r\n\r\nreport it to Miro for them to take any\r\r\n\r\n\nnecessary action.

Miro takes copyright infringement very seriously and will prosecute to the full extent of the \r\n\r\nlaw.

\r\n\r\n

15.\r\nWebsite X is using, or offering, my non-GPL Component, Module, Template\r\nwithout my permission, \r\n\r\nor in breach of its license, can you help me?

Whilst\r\nthis is not within the \r\n\r\nremit or responsibility of Mambo we are \r\n\r\nwilling\r\nto act as intermediaries in this on your behalf. In most cases these\r\nsituations arise out of simple misunderstandings and can be \r\n\r\nsettled\r\namicably. You should \r\n\r\ne-mail full details to license-violation@mamboserver.com.

DISCLAIMER

\r\n\r\n

This\r\ndocument refers to the software program Mambo, Version 4.x and all\r\nsubsequent versions, \r\n\r\nreleased under the GNU General Public \r\n\r\nLicense and\r\ncopyright Miro International Pty Ltd.

This document is subject to additions, modifications and other changes at any time \r\n\r\nwithout notice.

A\r\r\n\r\n\nlawyer has not prepared this document. You should consult a lawyer\r\nexperienced in copyright, licensing and \r\n\r\nintellectual property for\r\nclarification.

Document Rev. 1.4 - 17th August 2004

\r\n\r\n


','',1,0,0,0,'2004-08-19 20:11:07',62,'','2004-08-19 20:14:49',62,0,'0000-00-00 00:00:00','2004-08-19 00:00:00','0000-00-00 00:00:00','','','menu_image=\nitem_title=1\npageclass_sfx=\r\n\r\n\nback_button=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=',1,0,11,'','',0,10), (6,'Example News Item 1','News1','{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero \r\n\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd \r\n\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy \r\n\r\neirmod \r\n\r\ntempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea \r\n\r\nrebum.','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\r\n\r\n\nvelit esse molestie consequat, vel illum dolore eu \r\n\r\nfeugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te \r\n\r\nfeugait nulla \r\n\r\nfacilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet \r\n\r\ndolore magna aliquam erat volutpat.

\r\n\r\n

Ut wisi enim ad minim veniam, quis \r\n\r\nnostrud exerci tation\r\nullamcorper suscipit lobortis \r\n\r\nnisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum \r\n\r\ndolore eu \r\n\r\nfeugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue \r\n\r\nduis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

Nam liber tempor cum soluta \r\n\r\nnobis eleifend option congue\r\nnihil imperdiet doming \r\n\r\nid quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt \r\n\r\nut laoreet \r\n\r\ndolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis \r\n\r\nnisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure \r\n\r\ndolor in hendrerit in vulputate\r\nvelit esse molestie \r\n\r\nconsequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no \r\n\r\nsea \r\n\r\ntakimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod \r\n\r\ntempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At \r\n\r\nvero\r\neos et accusam et justo duo dolores et ea rebum. \r\n\r\nStet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At \r\n\r\naccusam \r\n\r\naliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et \r\n\r\ngubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem \r\n\r\nipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\r\n\r\n\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n

Consetetur \r\n\r\nsadipscing elitr, sed \r\n\r\ndiam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et \r\n\r\naccusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus \r\n\r\nest Lorem ipsum dolor sit amet. Lorem ipsum \r\n\r\ndolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam \r\n\r\nvoluptua. At vero eos et \r\n\r\naccusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum \r\n\r\ndolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod \r\n\r\ntempor invidunt ut labore et dolore\r\r\n\r\n\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata \r\n\r\nsanctus est\r\nLorem ipsum dolor \r\n\r\nsit amet.

',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:05:05',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/coffee.jpg|left||0\r\nfood/bread.jpg|right||0','','',1,0,2,'','',0,4), (7,'Example News Item 2','News2','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat,\r\nsed diam voluptua. At \r\n\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd \r\n\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy \r\n\r\n\r\n\r\neirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. \r\n\r\nStet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum \r\n\r\ndolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing \r\n\r\nelitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo \r\r\n\r\n\n\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:11:30',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/bun.jpg|right||0','','',1,0,3,'','',0,2), (8,'Example News Item 3','News3','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut \r\n\r\nlabore et dolore magna aliquyam erat,\r\nsed diam voluptua. At \r\n\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd \r\n\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy \r\n\r\n\r\n\r\neirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. \r\n\r\nStet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum \r\n\r\ndolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing \r\n\r\nelitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo \r\r\n\r\n\n\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,1,0,1,'2004-04-12 11:54:06',62,'','2004-07-07 18:08:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/pears.jpg|right||0','','',1,0,4,'','',0,1), (9,'Example News Item 4','News4','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et \r\n\r\ndolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum \r\n\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet \r\n\r\r\n\r\n\nclita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in \r\n\r\nvulputate\r\nvelit esse molestie consequat, vel illum dolore eu \r\n\r\nfeugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim \r\n\r\nqui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer \r\n\r\r\n\r\n\nadipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n{mospagebreak}

{mosimage}\r\n\r\nUt wisi enim ad minim veniam, quis nostrud exerci tation\r\r\n\r\n\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\r\n\r\n\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at \r\n\r\nvero \r\n\r\neros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\r\n\r\n\n

{mosimage}Nam liber tempor cum soluta nobis eleifend option \r\n\r\ncongue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. \r\n\r\nLorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam \r\n\r\nerat \r\n\r\nvolutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in \r\n\r\nvulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla \r\n\r\nfacilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem \r\n\r\nipsum \r\n\r\ndolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna \r\n\r\naliquyam erat, sed diam voluptua. At vero\r\neos et accusam et \r\n\r\njusto duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata \r\n\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore \r\n\r\r\n\r\n\ndolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea \r\n\r\nsed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. \r\n\r\nLorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam \r\n\r\nnonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n{mospagebreak}

Consetetur sadipscing elitr, sed diam \r\n\r\r\n\r\n\nnonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea \r\n\r\nrebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est \r\n\r\nLorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur \r\n\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\n\r\n\r\n\r\n\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor \r\n\r\nsit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam \r\n\r\nvoluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor \r\n\r\nsit \r\n\r\namet.

',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/strawberry.jpg|left||0\r\nfruit/pears.jpg|right||0\r\r\n\r\n\nfruit/cherry.jpg|left||0','','',1,0,5,'','',0,6), (10,'Example FAQ Item 1','FAQ1','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et \r\n\r\ndolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum \r\n\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet \r\n\r\r\n\r\n\nclita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,3,0,7,'2004-05-12 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','','','',1,0,5,'','',0,8), (11,'Example FAQ Item 2','FAQ2','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et \r\n\r\ndolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum \r\n\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet \r\n\r\r\n\r\n\nclita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in \r\n\r\nvulputate\r\nvelit esse molestie consequat, vel illum dolore eu \r\n\r\nfeugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim \r\n\r\nqui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer \r\n\r\r\n\r\n\nadipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n

{mosimage}Ut wisi enim ad \r\n\r\nminim veniam, quis nostrud exerci tation\r\nullamcorper suscipit \r\n\r\nlobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum \r\n\r\niriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\n\r\r\n\r\n\n\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}\r\n\r\nNam liber tempor cum soluta nobis eleifend option congue\r\nnihil \r\n\r\nimperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\r\n\r\n\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut \r\n\r\r\n\r\n\nwisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\r\n\r\n\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit \r\n\r\nesse molestie consequat, vel illum dolore eu feugiat nulla \r\n\r\nfacilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor \r\n\r\nsit \r\n\r\namet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna \r\n\r\naliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores \r\n\r\net ea rebum. Stet clita kasd gubergren, no\r\nsea takimata \r\n\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\r\n\r\n\nduo \r\n\r\neirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed \r\n\r\ntakimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor \r\n\r\nsit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy \r\n\r\neirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\r\n\r\n\ninvidunt ut \r\n\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet \r\n\r\nclita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum \r\n\r\ndolor sit\r\namet, consetetur sadipscing elitr, \r\n\r\nsed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores \r\n\r\net ea rebum. Stet \r\n\r\nclita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\r\n\r\n\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna \r\n\r\naliquyam erat, sed diam voluptua. At vero eos et \r\n\r\naccusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',1,3,0,7,'2004-05-12 11:54:06',62,'Web master','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','fruit/cherry.jpg|left||0\r\nfruit/peas.jpg|right||0\r\nfood/milk.jpg|left||0','','',1,0,5,'','',0,10); /*!40000 ALTER TABLE `netspot_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_content_frontpage` -- DROP TABLE IF EXISTS `netspot_content_frontpage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_content_frontpage` ( `content_id` int(11) NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_content_frontpage` -- LOCK TABLES `netspot_content_frontpage` WRITE; /*!40000 ALTER TABLE `netspot_content_frontpage` DISABLE KEYS */; INSERT INTO `netspot_content_frontpage` VALUES (1,1), (2,2), (3,3), (4,4), (5,5); /*!40000 ALTER TABLE `netspot_content_frontpage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_content_rating` -- DROP TABLE IF EXISTS `netspot_content_rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_content_rating` ( `content_id` int(11) NOT NULL DEFAULT 0, `rating_sum` int(11) unsigned NOT NULL DEFAULT 0, `rating_count` int(11) unsigned NOT NULL DEFAULT 0, `lastip` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_content_rating` -- LOCK TABLES `netspot_content_rating` WRITE; /*!40000 ALTER TABLE `netspot_content_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_content_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_core_acl_aro` -- DROP TABLE IF EXISTS `netspot_core_acl_aro`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_core_acl_aro` ( `aro_id` int(11) NOT NULL AUTO_INCREMENT, `section_value` varchar(240) NOT NULL DEFAULT '0', `value` varchar(240) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT 0, `name` varchar(255) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`aro_id`), UNIQUE KEY `section_value_value_aro` (`section_value`,`value`), UNIQUE KEY `netspot_gacl_section_value_value_aro` (`section_value`,`value`), KEY `hidden_aro` (`hidden`), KEY `netspot_gacl_hidden_aro` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_core_acl_aro` -- LOCK TABLES `netspot_core_acl_aro` WRITE; /*!40000 ALTER TABLE `netspot_core_acl_aro` DISABLE KEYS */; INSERT INTO `netspot_core_acl_aro` VALUES (10,'users','62',0,'Administrator',0); /*!40000 ALTER TABLE `netspot_core_acl_aro` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_core_acl_aro_groups` -- DROP TABLE IF EXISTS `netspot_core_acl_aro_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_core_acl_aro_groups` ( `group_id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT 0, `name` varchar(255) NOT NULL DEFAULT '', `lft` int(11) NOT NULL DEFAULT 0, `rgt` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`group_id`), KEY `parent_id_aro_groups` (`parent_id`), KEY `netspot_gacl_parent_id_aro_groups` (`parent_id`), KEY `netspot_gacl_lft_rgt_aro_groups` (`lft`,`rgt`) ) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_core_acl_aro_groups` -- LOCK TABLES `netspot_core_acl_aro_groups` WRITE; /*!40000 ALTER TABLE `netspot_core_acl_aro_groups` DISABLE KEYS */; INSERT INTO `netspot_core_acl_aro_groups` VALUES (17,0,'ROOT',1,22), (28,17,'USERS',2,21), (29,28,'Public Frontend',3,12), (18,29,'Registered',4,11), (19,18,'Author',5,10), (20,19,'Editor',6,9), (21,20,'Publisher',7,8), (30,28,'Public Backend',13,20), (23,30,'Manager',14,19), (24,23,'Administrator',15,18), (25,24,'Super Administrator',16,17); /*!40000 ALTER TABLE `netspot_core_acl_aro_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_core_acl_aro_sections` -- DROP TABLE IF EXISTS `netspot_core_acl_aro_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_core_acl_aro_sections` ( `section_id` int(11) NOT NULL AUTO_INCREMENT, `value` varchar(230) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT 0, `name` varchar(230) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`section_id`), UNIQUE KEY `value_aro_sections` (`value`), UNIQUE KEY `netspot_gacl_value_aro_sections` (`value`), KEY `hidden_aro_sections` (`hidden`), KEY `netspot_gacl_hidden_aro_sections` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_core_acl_aro_sections` -- LOCK TABLES `netspot_core_acl_aro_sections` WRITE; /*!40000 ALTER TABLE `netspot_core_acl_aro_sections` DISABLE KEYS */; INSERT INTO `netspot_core_acl_aro_sections` VALUES (10,'users',1,'Users',0); /*!40000 ALTER TABLE `netspot_core_acl_aro_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_core_acl_groups_aro_map` -- DROP TABLE IF EXISTS `netspot_core_acl_groups_aro_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_core_acl_groups_aro_map` ( `group_id` int(11) NOT NULL DEFAULT 0, `section_value` varchar(240) NOT NULL DEFAULT '', `aro_id` int(11) NOT NULL DEFAULT 0, UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_core_acl_groups_aro_map` -- LOCK TABLES `netspot_core_acl_groups_aro_map` WRITE; /*!40000 ALTER TABLE `netspot_core_acl_groups_aro_map` DISABLE KEYS */; INSERT INTO `netspot_core_acl_groups_aro_map` VALUES (25,'',10); /*!40000 ALTER TABLE `netspot_core_acl_groups_aro_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_core_log_items` -- DROP TABLE IF EXISTS `netspot_core_log_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_core_log_items` ( `time_stamp` date NOT NULL DEFAULT '0000-00-00', `item_table` varchar(50) NOT NULL DEFAULT '', `item_id` int(11) unsigned NOT NULL DEFAULT 0, `hits` int(11) unsigned NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_core_log_items` -- LOCK TABLES `netspot_core_log_items` WRITE; /*!40000 ALTER TABLE `netspot_core_log_items` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_core_log_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_core_log_searches` -- DROP TABLE IF EXISTS `netspot_core_log_searches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_core_log_searches` ( `search_term` varchar(128) NOT NULL DEFAULT '', `hits` int(11) unsigned NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_core_log_searches` -- LOCK TABLES `netspot_core_log_searches` WRITE; /*!40000 ALTER TABLE `netspot_core_log_searches` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_core_log_searches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_groups` -- DROP TABLE IF EXISTS `netspot_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_groups` ( `id` tinyint(3) unsigned NOT NULL DEFAULT 0, `name` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_groups` -- LOCK TABLES `netspot_groups` WRITE; /*!40000 ALTER TABLE `netspot_groups` DISABLE KEYS */; INSERT INTO `netspot_groups` VALUES (0,'Public'), (1,'Registered'), (2,'Special'); /*!40000 ALTER TABLE `netspot_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_mambots` -- DROP TABLE IF EXISTS `netspot_mambots`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_mambots` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `element` varchar(100) NOT NULL DEFAULT '', `folder` varchar(100) NOT NULL DEFAULT '', `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, `published` tinyint(3) NOT NULL DEFAULT 0, `iscore` tinyint(3) NOT NULL DEFAULT 0, `client_id` tinyint(3) NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_folder` (`published`,`client_id`,`access`,`folder`) ) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_mambots` -- LOCK TABLES `netspot_mambots` WRITE; /*!40000 ALTER TABLE `netspot_mambots` DISABLE KEYS */; INSERT INTO `netspot_mambots` VALUES (1,'MOS Image','mosimage','content',0,-10000,1,1,0,0,'0000-00-00 00:00:00',''), (2,'MOS Pagination','mospaging','content',0,10000,1,1,0,0,'0000-00-00 00:00:00',''), (3,'Legacy Mambot Includer','legacybots','content',0,1,0,1,0,0,'0000-00-00 00:00:00',''), (4,'SEF','mossef','content',0,3,1,0,0,0,'0000-00-00 00:00:00',''), (5,'MOS Rating','mosvote','content',0,4,1,1,0,0,'0000-00-00 00:00:00',''), (6,'Search Content','content.searchbot','search',0,1,1,1,0,0,'0000-00-00 00:00:00',''), (7,'Search Weblinks','weblinks.searchbot','search',0,2,1,1,0,0,'0000-00-00 00:00:00',''), (8,'Code support','moscode','content',0,2,0,0,0,0,'0000-00-00 00:00:00',''), (9,'No WYSIWYG Editor','none','editors',0,0,0,1,0,0,'0000-00-00 00:00:00',''), (10,'TinyMCE WYSIWYG Editor','tinymce','editors',0,0,1,1,0,0,'0000-00-00 00:00:00','theme=advanced'), (11,'MOS Image Editor Button','mosimage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''), (12,'MOS Pagebreak Editor Button','mospage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''), (13,'Search Contacts','contacts.searchbot','search',0,3,1,1,0,0,'0000-00-00 00:00:00',''), (14,'Search Categories','categories.searchbot','search',0,4,1,0,0,0,'0000-00-00 00:00:00',''), (15,'Search Sections','sections.searchbot','search',0,5,1,0,0,0,'0000-00-00 00:00:00',''), (16,'Email Cloaking','mosemailcloak','content',0,5,1,0,0,0,'0000-00-00 00:00:00',''), (17,'GeSHi','geshi','content',0,5,0,0,0,0,'0000-00-00 00:00:00',''), (18,'Search Newsfeeds','newsfeeds.searchbot','search',0,6,1,0,0,0,'0000-00-00 00:00:00',''), (19,'Load Module Positions','mosloadposition','content',0,6,1,0,0,0,'0000-00-00 00:00:00',''); /*!40000 ALTER TABLE `netspot_mambots` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_menu` -- DROP TABLE IF EXISTS `netspot_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `menutype` varchar(25) DEFAULT NULL, `name` varchar(100) DEFAULT NULL, `link` text DEFAULT NULL, `type` varchar(50) NOT NULL DEFAULT '', `published` tinyint(1) NOT NULL DEFAULT 0, `parent` int(11) unsigned NOT NULL DEFAULT 0, `componentid` int(11) unsigned NOT NULL DEFAULT 0, `sublevel` int(11) DEFAULT 0, `ordering` int(11) DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `pollid` int(11) NOT NULL DEFAULT 0, `browserNav` tinyint(4) DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `utaccess` tinyint(3) unsigned NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `componentid` (`componentid`,`menutype`,`published`,`access`), KEY `menutype` (`menutype`) ) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_menu` -- LOCK TABLES `netspot_menu` WRITE; /*!40000 ALTER TABLE `netspot_menu` DISABLE KEYS */; INSERT INTO `netspot_menu` VALUES (1,'mainmenu','Home','index.php?option=com_frontpage','components',1,0,10,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'leading=1\r\nintro=2\r\nlink=1\r\nimage=1\r\npage_title=0\r\r\n\r\n\r\n\r\n\nheader=Welcome to the Frontpage\r\norderby_sec=front\r\nprint=0\r\npdf=0\r\nemail=0'), (2,'mainmenu','News','index.php?option=com_content&task=section&id=1','content_section',1,0,1,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''), (3,'mainmenu','Contact Us','index.php?option=com_contact','components',1,0,7,0,6,0,'0000-00-00 00:00:00',0,0,0,3,''), (23,'mainmenu','Links','index.php?option=com_weblinks','components',1,0,4,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=web_links.jpg\npageclass_sfx=\nback_button=\npage_title=1\nheader=\r\n\r\n\nheadings=1\nhits=\r\n\r\n\nitem_description=1\nother_cat=1\ndescription=1\ndescription_text=\nimage=-1\nimage_align=right\nweblink_icons='), (5,'mainmenu','Search','index.php?option=com_search','components',1,0,16,0,7,0,'0000-00-00 00:00:00',0,0,0,3,''), (6,'mainmenu','Mambo License','index.php?option=com_content&task=view&id=5','content_typed',1,0,11,0,2,0,'0000-00-00 00:00:00',0,0,0,0,''), (7,'mainmenu','News Feeds','index.php?option=com_newsfeeds','components',1,0,12,0,8,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-\r\n\r\n1\npageclass_sfx=\nback_button=\npage_title=1\nheader='), (8,'mainmenu','Wrapper','index.php?option=com_wrapper','wrapper',1,0,0,0,10,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-\r\n\r\n1\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nscrolling=auto\r\n\r\n\nwidth=100%\nheight=600\nheight_auto=1\nurl=www.mamboserver.com'), (9,'mainmenu','Blog','index.php?option=com_content&task=blogsection&id=0','content_blog_section',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=A blog \r\n\r\nof all section with no images\r\n\r\n\npage_title=1\nleading=1\nintro=3\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\r\n\r\n\r\n\r\n\npagination=2\npagination_results=1\nimage=0\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\r\n\r\n\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\r\n\r\n\nemail=\nsectionid='), (10,'othermenu','MamboServer','http://www.mamboserver.com','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''), (11,'othermenu','Administrator','administrator/','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'), (12,'othermenu','MamboForge','http://mamboforge.net','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''), (21,'usermenu','Your Details','index.php?option=com_user&task=UserDetails','url',1,0,0,0,1,0,'2000-00-00 00:00:00',0,0,1,3,''), (13,'usermenu','Submit News','index.php?option=com_content&task=new§ionid=1&Itemid=0','url',1,0,0,0,2,0,'2000-00-00 00:00:00',0,0,1,2,''), (14,'usermenu','Submit WebLink','index.php?option=com_weblinks&task=new','url',1,0,0,0,4,0,'2000-00-00 00:00:00',0,0,1,2,''), (15,'usermenu','Check-In My Items','index.php?option=com_user&task=CheckIn','url',1,0,0,0,5,0,'0000-00-00 00:00:00',0,0,1,2,''), (16,'usermenu','Logout','index.php?option=com_login','components',1,0,15,0,5,0,'0000-00-00 00:00:00',0,0,1,3,''), (17,'topmenu','Home','index.php','url',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,''), (18,'topmenu','Contact Us','index.php?option=com_contact&Itemid=3','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''), (19,'topmenu','News','index.php?option=com_content&task=section&id=1&Itemid=2','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''), (20,'topmenu','Links','index.php?option=com_weblinks&Itemid=22','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'), (25,'mainmenu','FAQ\'s','index.php?option=com_content&task=category§ionid=3&id=7','content_category',1,0,7,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npage_title=1\npageclass_sfx=\r\n\r\n\nback_button=\norderby=\ndate_format=\ndate=\nauthor=\ntitle=1\nhits=\r\n\r\n\nheadings=1\nnavigation=1\norder_select=1\ndisplay=1\ndisplay_num=50\nfilter=1\nfilter_type=title\r\n\r\n\r\n\r\n\nother_cat=1\nempty_cat=0\ncat_items=1\ncat_description=1'); /*!40000 ALTER TABLE `netspot_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_messages` -- DROP TABLE IF EXISTS `netspot_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_messages` ( `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id_from` int(10) unsigned NOT NULL DEFAULT 0, `user_id_to` int(10) unsigned NOT NULL DEFAULT 0, `folder_id` int(10) unsigned NOT NULL DEFAULT 0, `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `state` int(11) NOT NULL DEFAULT 0, `priority` int(1) unsigned NOT NULL DEFAULT 0, `subject` varchar(230) NOT NULL DEFAULT '', `message` text NOT NULL, PRIMARY KEY (`message_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_messages` -- LOCK TABLES `netspot_messages` WRITE; /*!40000 ALTER TABLE `netspot_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_messages_cfg` -- DROP TABLE IF EXISTS `netspot_messages_cfg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_messages_cfg` ( `user_id` int(10) unsigned NOT NULL DEFAULT 0, `cfg_name` varchar(100) NOT NULL DEFAULT '', `cfg_value` varchar(255) NOT NULL DEFAULT '', UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_messages_cfg` -- LOCK TABLES `netspot_messages_cfg` WRITE; /*!40000 ALTER TABLE `netspot_messages_cfg` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_messages_cfg` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_modules` -- DROP TABLE IF EXISTS `netspot_modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_modules` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, `content` text NOT NULL, `ordering` int(11) NOT NULL DEFAULT 0, `position` varchar(10) DEFAULT NULL, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT 0, `module` varchar(50) DEFAULT NULL, `numnews` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `showtitle` tinyint(3) unsigned NOT NULL DEFAULT 1, `params` text NOT NULL, `iscore` tinyint(4) NOT NULL DEFAULT 0, `client_id` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `published` (`published`,`access`), KEY `newsfeeds` (`module`,`published`) ) ENGINE=MyISAM AUTO_INCREMENT=34 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_modules` -- LOCK TABLES `netspot_modules` WRITE; /*!40000 ALTER TABLE `netspot_modules` DISABLE KEYS */; INSERT INTO `netspot_modules` VALUES (1,'Polls','',1,'right',0,'0000-00-00 00:00:00',1,'mod_poll',0,0,1,'',0,0), (2,'User Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,1,1,'menutype=usermenu',1,0), (3,'Main Menu','',1,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=mainmenu',1,0), (4,'Login Form','',3,'left',0,'0000-00-00 00:00:00',1,'mod_login',0,0,1,'',1,0), (5,'Syndicate','',4,'left',0,'0000-00-00 00:00:00',1,'mod_rssfeed',0,0,1,'',1,0), (6,'Latest News','',4,'user1',0,'0000-00-00 00:00:00',1,'mod_latestnews',0,0,1,'',1,0), (7,'Statistics','',4,'left',0,'0000-00-00 00:00:00',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0), (8,'Who\'s Online','',1,'right',0,'0000-00-00 00:00:00',1,'mod_whosonline',0,0,1,'online=1\nusers=1\nmoduleclass_sfx=',0,0), (9,'Popular','',6,'user2',0,'0000-00-00 00:00:00',1,'mod_mostread',0,0,1,'',0,0), (10,'Template Chooser','',6,'left',0,'0000-00-00 00:00:00',0,'mod_templatechooser',0,0,1,'show_preview=1',0,0), (11,'Archive','',7,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'',1,0), (12,'Sections','',8,'left',0,'0000-00-00 00:00:00',0,'mod_sections',0,0,1,'',1,0), (13,'Newsflash','',1,'top',0,'0000-00-00 00:00:00',1,'mod_newsflash',0,0,1,'catid=3\r\nstyle=random\r\nitems=\r\nmoduleclass_sfx=',0,0), (14,'Related Items','',9,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0), (15,'Search','',1,'user4',0,'0000-00-00 00:00:00',1,'mod_search',0,0,0,'',0,0), (16,'Random Image','',9,'right',0,'0000-00-00 00:00:00',1,'mod_random_image',0,0,1,'',0,0), (17,'Top Menu','',1,'user3',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=topmenu\nmenu_style=list_flat\nmenu_images=n\r\n\r\n\nmenu_images_align=left\nexpand_menu=n\nclass_sfx=-nav\r\n\r\n\nmoduleclass_sfx=\r\n\r\n\nindent_image1=0\nindent_image2=0\nindent_image3=0\nindent_image4=0\nindent_image5=0\nindent_image6=0',1,0), (18,'Banners','',1,'banner',0,'0000-00-00 00:00:00',1,'mod_banners',0,0,0,'banner_cids=\nmoduleclass_sfx=\n',1,0), (19,'Components','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_components',0,99,1,'',1,1), (20,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,99,1,'',0,1), (21,'Latest Items','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,99,1,'',0,1), (22,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,99,1,'',0,1), (23,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,99,1,'',1,1), (24,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,99,1,'',1,1), (25,'Full Menu','',1,'top',0,'0000-00-00 00:00:00',1,'mod_fullmenu',0,99,1,'',1,1), (26,'Pathway','',1,'pathway',0,'0000-00-00 00:00:00',1,'mod_pathway',0,99,1,'',1,1), (27,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,99,1,'',1,1), (28,'System Message','',1,'inset',0,'0000-00-00 00:00:00',1,'mod_mosmsg',0,99,1,'',1,1), (29,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,99,1,'',1,1), (30,'Mamboforge','',1,'cpanel',0,'0000-00-00 00:00:00',0,'',0,99,1,'rssurl=http://mamboforge.net/export/rss_sfnews.php\r\n\r\n\nrssitems=5\nrssdesc=1\ncache=0\nmoduleclass_sfx=',0,1), (31,'Other Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=othermenu\nmenu_style=vert_indent\r\n\r\n\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nclass_sfx=\r\n\r\n\nmoduleclass_sfx=\nindent_image=0\nindent_image1=\nindent_image2=\r\n\r\n\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=',0,0), (32,'Wrapper','',10,'left',0,'0000-00-00 00:00:00',1,'mod_wrapper',0,0,1,'',0,0), (33,'Logged','',0,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,99,1,'',0,1); /*!40000 ALTER TABLE `netspot_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_modules_menu` -- DROP TABLE IF EXISTS `netspot_modules_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_modules_menu` ( `moduleid` int(11) NOT NULL DEFAULT 0, `menuid` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`moduleid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_modules_menu` -- LOCK TABLES `netspot_modules_menu` WRITE; /*!40000 ALTER TABLE `netspot_modules_menu` DISABLE KEYS */; INSERT INTO `netspot_modules_menu` VALUES (1,1), (2,0), (3,0), (4,1), (5,1), (6,1), (6,2), (6,4), (6,27), (6,36), (8,1), (9,1), (9,2), (9,4), (9,27), (9,36), (10,1), (13,0), (15,0), (17,0), (18,0), (31,0); /*!40000 ALTER TABLE `netspot_modules_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_newsfeeds` -- DROP TABLE IF EXISTS `netspot_newsfeeds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_newsfeeds` ( `catid` int(11) NOT NULL DEFAULT 0, `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `link` text NOT NULL, `filename` varchar(200) DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `numarticles` int(11) unsigned NOT NULL DEFAULT 1, `cache_time` int(11) unsigned NOT NULL DEFAULT 3600, `checked_out` tinyint(3) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `published` (`published`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_newsfeeds` -- LOCK TABLES `netspot_newsfeeds` WRITE; /*!40000 ALTER TABLE `netspot_newsfeeds` DISABLE KEYS */; INSERT INTO `netspot_newsfeeds` VALUES (4,1,'Mamboforge.net','http://mamboforge.net/export/rss_sfnews.php','',1,5,3600,0,'0000-00-00 00:00:00',8), (4,2,'Mamboportal','http://www.mamboportal.com/index2.php?option=com_rss&no_html=1','',1,5,3600,0,'0000-00-00 00:00:00',9), (4,3,'Mambohut','http://www.mambohut.com/index2.php?option=com_rss&no_html=1','',1,5,3600,0,'0000-00-00 00:00:00',10), (10,4,'Linux Today','http://linuxtoday.com/backend/my-netscape.rdf','',1,3,3600,0,'0000-00-00 00:00:00',1), (5,5,'Business News','http://headlines.internet.com/internetnews/bus-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',2), (11,6,'Web Developer News','http://headlines.internet.com/internetnews/wd-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',3), (10,7,'Linux Central:New Products','http://linuxcentral.com/backend/lcnew.rdf','',1,3,3600,0,'0000-00-00 00:00:00',4), (10,8,'Linux Central:Best Selling','http://linuxcentral.com/backend/lcbestns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',5), (10,9,'Linux Central:Daily Specials','http://linuxcentral.com/backend/lcspecialns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',6), (9,10,'Internet:Finance News','http://headlines.internet.com/internetnews/fina-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',7); /*!40000 ALTER TABLE `netspot_newsfeeds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_poll_data` -- DROP TABLE IF EXISTS `netspot_poll_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_poll_data` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pollid` int(4) NOT NULL DEFAULT 0, `text` text NOT NULL, `hits` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `pollid` (`pollid`,`text`(1)) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_poll_data` -- LOCK TABLES `netspot_poll_data` WRITE; /*!40000 ALTER TABLE `netspot_poll_data` DISABLE KEYS */; INSERT INTO `netspot_poll_data` VALUES (1,14,'Absolutely simple',1), (2,14,'Reasonably easy',0), (3,14,'Not straight-forward but I worked it out',0), (4,14,'I had to install extra server stuff',0), (5,14,'I had no idea and got my friend to do it',0), (6,14,'My dog ran away with the README ...',0), (7,14,'',0), (8,14,'',0), (9,14,'',0), (10,14,'',0), (11,14,'',0), (12,14,'',0); /*!40000 ALTER TABLE `netspot_poll_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_poll_date` -- DROP TABLE IF EXISTS `netspot_poll_date`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_poll_date` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `vote_id` int(11) NOT NULL DEFAULT 0, `poll_id` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_poll_date` -- LOCK TABLES `netspot_poll_date` WRITE; /*!40000 ALTER TABLE `netspot_poll_date` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_poll_date` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_poll_menu` -- DROP TABLE IF EXISTS `netspot_poll_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_poll_menu` ( `pollid` int(11) NOT NULL DEFAULT 0, `menuid` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`pollid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_poll_menu` -- LOCK TABLES `netspot_poll_menu` WRITE; /*!40000 ALTER TABLE `netspot_poll_menu` DISABLE KEYS */; INSERT INTO `netspot_poll_menu` VALUES (14,1); /*!40000 ALTER TABLE `netspot_poll_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_polls` -- DROP TABLE IF EXISTS `netspot_polls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_polls` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `voters` int(9) NOT NULL DEFAULT 0, `checked_out` int(11) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT 0, `access` int(11) NOT NULL DEFAULT 0, `lag` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_polls` -- LOCK TABLES `netspot_polls` WRITE; /*!40000 ALTER TABLE `netspot_polls` DISABLE KEYS */; INSERT INTO `netspot_polls` VALUES (14,'This Mambo \r\n\r\ninstallation was ....',0,0,'2000-00-00 00:00:00',1,0,86400); /*!40000 ALTER TABLE `netspot_polls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_sections` -- DROP TABLE IF EXISTS `netspot_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_sections` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `scope` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `access` tinyint(3) unsigned NOT NULL DEFAULT 0, `count` int(11) NOT NULL DEFAULT 0, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_scope` (`scope`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_sections` -- LOCK TABLES `netspot_sections` WRITE; /*!40000 ALTER TABLE `netspot_sections` DISABLE KEYS */; INSERT INTO `netspot_sections` VALUES (1,'News','The News','articles.jpg','content','right','Select a news topic \r\n\r\nfrom the list below, then select a news article to read.',1,0,'0000-00-00 00:00:00',1,0,1,''), (2,'Newsflashes','Newsflashes','','content','left','',1,0,'0000-00-00 00:00:00',2,0,1,''), (3,'FAQs','Frequently Asked Questions','pastarchives.jpg','content','left','From the list below choose one of our FAQs topics, then select an \r\n\r\nFAQ to read. If you have a question which is not in this section, \r\n\r\nplease contact us.',1,0,'0000-00-00 00:00:00',2,0,1,''); /*!40000 ALTER TABLE `netspot_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_session` -- DROP TABLE IF EXISTS `netspot_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_session` ( `username` varchar(50) DEFAULT '', `time` varchar(14) DEFAULT '', `session_id` varchar(200) NOT NULL DEFAULT '0', `guest` tinyint(4) DEFAULT 1, `userid` int(11) DEFAULT 0, `usertype` varchar(50) DEFAULT '', `gid` tinyint(3) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`session_id`), KEY `whosonline` (`guest`,`usertype`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_session` -- LOCK TABLES `netspot_session` WRITE; /*!40000 ALTER TABLE `netspot_session` DISABLE KEYS */; INSERT INTO `netspot_session` VALUES ('','1746972073','1b42c5118403b669869dfc347d638091',1,0,'',0), ('','1746972073','871f8d76c6800894a9f2ebe7969e73b8',1,0,'',0); /*!40000 ALTER TABLE `netspot_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_stats_agents` -- DROP TABLE IF EXISTS `netspot_stats_agents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_stats_agents` ( `agent` varchar(255) NOT NULL DEFAULT '', `type` tinyint(1) unsigned NOT NULL DEFAULT 0, `hits` int(11) unsigned NOT NULL DEFAULT 1 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_stats_agents` -- LOCK TABLES `netspot_stats_agents` WRITE; /*!40000 ALTER TABLE `netspot_stats_agents` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_stats_agents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_template_positions` -- DROP TABLE IF EXISTS `netspot_template_positions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_template_positions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `position` varchar(10) NOT NULL DEFAULT '', `description` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_template_positions` -- LOCK TABLES `netspot_template_positions` WRITE; /*!40000 ALTER TABLE `netspot_template_positions` DISABLE KEYS */; INSERT INTO `netspot_template_positions` VALUES (1,'left',''), (2,'right',''), (3,'top',''), (4,'bottom',''), (5,'inset',''), (6,'banner',''), (7,'header',''), (8,'footer',''), (9,'newsflash',''), (10,'legals',''), (11,'pathway',''), (12,'toolbar',''), (13,'cpanel',''), (14,'user1',''), (15,'user2',''), (16,'user3',''), (17,'user4',''), (18,'user5',''), (19,'user6',''), (20,'user7',''), (21,'user8',''), (22,'user9',''), (23,'advert1',''), (24,'advert2',''), (25,'advert3',''), (26,'icon',''), (27,'debug',''); /*!40000 ALTER TABLE `netspot_template_positions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_templates_menu` -- DROP TABLE IF EXISTS `netspot_templates_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_templates_menu` ( `template` varchar(50) NOT NULL DEFAULT '', `menuid` int(11) NOT NULL DEFAULT 0, `client_id` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`template`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_templates_menu` -- LOCK TABLES `netspot_templates_menu` WRITE; /*!40000 ALTER TABLE `netspot_templates_menu` DISABLE KEYS */; INSERT INTO `netspot_templates_menu` VALUES ('visualtech',0,0), ('mambo_admin_blue',0,1); /*!40000 ALTER TABLE `netspot_templates_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_users` -- DROP TABLE IF EXISTS `netspot_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `username` varchar(25) NOT NULL DEFAULT '', `email` varchar(100) NOT NULL DEFAULT '', `password` varchar(100) NOT NULL DEFAULT '', `usertype` varchar(25) NOT NULL DEFAULT '', `block` tinyint(4) NOT NULL DEFAULT 0, `sendEmail` tinyint(4) DEFAULT 0, `gid` tinyint(3) unsigned NOT NULL DEFAULT 1, `registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `activation` varchar(100) NOT NULL DEFAULT '', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `usertype` (`usertype`), KEY `idx_name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=63 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_users` -- LOCK TABLES `netspot_users` WRITE; /*!40000 ALTER TABLE `netspot_users` DISABLE KEYS */; INSERT INTO `netspot_users` VALUES (62,'Administrator','admin','mam@heimam.at','5a9361b28ee51795f1e82d9054919034','Super \r\n\r\nAdministrator',0,1,25,'2006-06-05 11:01:21','2006-10-26 21:39:29','',''); /*!40000 ALTER TABLE `netspot_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_usertypes` -- DROP TABLE IF EXISTS `netspot_usertypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_usertypes` ( `id` tinyint(3) unsigned NOT NULL DEFAULT 0, `name` varchar(50) NOT NULL DEFAULT '', `mask` varchar(11) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_usertypes` -- LOCK TABLES `netspot_usertypes` WRITE; /*!40000 ALTER TABLE `netspot_usertypes` DISABLE KEYS */; INSERT INTO `netspot_usertypes` VALUES (0,'superadministrator',''), (1,'administrator',''), (2,'editor',''), (3,'user',''), (4,'author',''), (5,'publisher',''), (6,'manager',''); /*!40000 ALTER TABLE `netspot_usertypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_weblinks` -- DROP TABLE IF EXISTS `netspot_weblinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_weblinks` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `catid` int(11) NOT NULL DEFAULT 0, `sid` int(11) NOT NULL DEFAULT 0, `title` varchar(250) NOT NULL DEFAULT '', `url` varchar(250) NOT NULL DEFAULT '', `description` varchar(250) NOT NULL DEFAULT '', `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `hits` int(11) NOT NULL DEFAULT 0, `published` tinyint(1) NOT NULL DEFAULT 0, `checked_out` int(11) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `archived` tinyint(1) NOT NULL DEFAULT 0, `approved` tinyint(1) NOT NULL DEFAULT 1, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `catid` (`catid`,`published`,`archived`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_weblinks` -- LOCK TABLES `netspot_weblinks` WRITE; /*!40000 ALTER TABLE `netspot_weblinks` DISABLE KEYS */; INSERT INTO `netspot_weblinks` VALUES (1,2,0,'Mambo','http://www.mamboserver.com','Home of Mambo','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'), (2,2,0,'MamboForge','http://mamboforge.net','Get your Mambo add-ons here!','2004-07-07 10:18:31',0,1,0,'0000-00-00 00:00:00',4,0,1,''), (3,2,0,'Miro International Pty Ltd','http://www.miro.com.au','Where Mambo was born','2004-07-07 11:32:45',1,1,0,'0000-00-00 00:00:00',2,0,1,''), (4,2,0,'php.net','http://www.php.net','The language that Mambo is developed in','2004-07-07 11:33:24',0,1,0,'0000-00-00 00:00:00',3,0,1,''), (5,2,0,'MySQL','http://www.mysql.com','The database that Mambo uses','2004-07-07 10:18:31',0,1,0,'0000-00-00 00:00:00',5,0,1,''); /*!40000 ALTER TABLE `netspot_weblinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `mysql` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysql` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */; USE `mysql`; -- -- Table structure for table `general_log` -- /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE IF NOT EXISTS `general_log` ( `event_time` timestamp(6) NOT NULL DEFAULT current_timestamp(6) ON UPDATE current_timestamp(6), `user_host` mediumtext NOT NULL, `thread_id` bigint(21) unsigned NOT NULL, `server_id` int(10) unsigned NOT NULL, `command_type` varchar(64) NOT NULL, `argument` mediumtext NOT NULL ) ENGINE=CSV DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='General log'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `slow_log` -- /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE IF NOT EXISTS `slow_log` ( `start_time` timestamp(6) NOT NULL DEFAULT current_timestamp(6) ON UPDATE current_timestamp(6), `user_host` mediumtext NOT NULL, `query_time` time(6) NOT NULL, `lock_time` time(6) NOT NULL, `rows_sent` bigint(20) unsigned NOT NULL, `rows_examined` bigint(20) unsigned NOT NULL, `db` varchar(512) NOT NULL, `last_insert_id` int(11) NOT NULL, `insert_id` int(11) NOT NULL, `server_id` int(10) unsigned NOT NULL, `sql_text` mediumtext NOT NULL, `thread_id` bigint(21) unsigned NOT NULL, `rows_affected` bigint(20) unsigned NOT NULL ) ENGINE=CSV DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Slow log'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `column_stats` -- DROP TABLE IF EXISTS `column_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `column_stats` ( `db_name` varchar(64) NOT NULL, `table_name` varchar(64) NOT NULL, `column_name` varchar(64) NOT NULL, `min_value` varbinary(255) DEFAULT NULL, `max_value` varbinary(255) DEFAULT NULL, `nulls_ratio` decimal(12,4) DEFAULT NULL, `avg_length` decimal(12,4) DEFAULT NULL, `avg_frequency` decimal(12,4) DEFAULT NULL, `hist_size` tinyint(3) unsigned DEFAULT NULL, `hist_type` enum('SINGLE_PREC_HB','DOUBLE_PREC_HB','JSON_HB') DEFAULT NULL, `histogram` longblob DEFAULT NULL, PRIMARY KEY (`db_name`,`table_name`,`column_name`) ) ENGINE=Aria DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin PAGE_CHECKSUM=1 TRANSACTIONAL=0 COMMENT='Statistics on Columns'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `column_stats` -- LOCK TABLES `column_stats` WRITE; /*!40000 ALTER TABLE `column_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `column_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `columns_priv` -- DROP TABLE IF EXISTS `columns_priv`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `columns_priv` ( `Host` char(255) NOT NULL DEFAULT '', `Db` char(64) NOT NULL DEFAULT '', `User` char(128) NOT NULL DEFAULT '', `Table_name` char(64) NOT NULL DEFAULT '', `Column_name` char(64) NOT NULL DEFAULT '', `Timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT '', PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`) ) ENGINE=Aria DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin PAGE_CHECKSUM=1 TRANSACTIONAL=1 COMMENT='Column privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `columns_priv` -- LOCK TABLES `columns_priv` WRITE; /*!40000 ALTER TABLE `columns_priv` DISABLE KEYS */; /*!40000 ALTER TABLE `columns_priv` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `db` -- DROP TABLE IF EXISTS `db`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `db` ( `Host` char(255) NOT NULL DEFAULT '', `Db` char(64) NOT NULL DEFAULT '', `User` char(128) NOT NULL DEFAULT '', `Select_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Insert_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Update_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Delete_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Create_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Drop_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Grant_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `References_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Index_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Alter_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Lock_tables_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Create_view_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Show_view_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Create_routine_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Alter_routine_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Execute_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Event_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Trigger_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Delete_history_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', `Show_create_routine_priv` enum('N','Y') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'N', PRIMARY KEY (`Host`,`Db`,`User`), KEY `User` (`User`) ) ENGINE=Aria DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin PAGE_CHECKSUM=1 TRANSACTIONAL=1 COMMENT='Database privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `db` -- LOCK TABLES `db` WRITE; /*!40000 ALTER TABLE `db` DISABLE KEYS */; INSERT INTO `db` VALUES ('localhost','phpmyadmin','pma','Y','Y','Y','Y','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N'); /*!40000 ALTER TABLE `db` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event` -- DROP TABLE IF EXISTS `event`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `event` ( `db` char(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL DEFAULT '', `name` char(64) NOT NULL DEFAULT '', `body` longblob NOT NULL, `definer` varchar(384) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL DEFAULT '', `execute_at` datetime DEFAULT NULL, `interval_value` int(11) DEFAULT NULL, `interval_field` enum('YEAR','QUARTER','MONTH','DAY','HOUR','MINUTE','WEEK','SECOND','MICROSECOND','YEAR_MONTH','DAY_HOUR','DAY_MINUTE','DAY_SECOND','HOUR_MINUTE','HOUR_SECOND','MINUTE_SECOND','DAY_MICROSECOND','HOUR_MICROSECOND','MINUTE_MICROSECOND','SECOND_MICROSECOND') DEFAULT NULL, `created` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `last_executed` datetime DEFAULT NULL, `starts` datetime DEFAULT NULL, `ends` datetime DEFAULT NULL, `status` enum('ENABLED','DISABLED','SLAVESIDE_DISABLED') NOT NULL DEFAULT 'ENABLED', `on_completion` enum('DROP','PRESERVE') NOT NULL DEFAULT 'DROP', `sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','IGNORE_BAD_TABLE_OPTIONS','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH','EMPTY_STRING_IS_NULL','SIMULTANEOUS_ASSIGNMENT','TIME_ROUND_FRACTIONAL') NOT NULL DEFAULT '', `comment` char(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL DEFAULT '', `originator` int(10) unsigned NOT NULL, `time_zone` char(64) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT 'SYSTEM', `character_set_client` char(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `collation_connection` char(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `db_collation` char(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `body_utf8` longblob DEFAULT NULL, PRIMARY KEY (`db`,`name`) ) ENGINE=Aria DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci PAGE_CHECKSUM=1 TRANSACTIONAL=1 COMMENT='Events'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `func` -- DROP TABLE IF EXISTS `func`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `func` ( `name` char(64) NOT NULL DEFAULT '', `ret` tinyint(1) NOT NULL DEFAULT 0, `dl` char(128) NOT NULL DEFAULT '', `type` enum('function','aggregate') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL, PRIMARY KEY (`name`) ) ENGINE=Aria DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin PAGE_CHECKSUM=1 TRANSACTIONAL=1 COMMENT='User defined functions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `func` -- LOCK TABLES `func` WRITE; /*!40000 ALTER TABLE `func` DISABLE KEYS */; /*!40000 ALTER TABLE `func` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `global_priv` -- DROP TABLE IF EXISTS `global_priv`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `global_priv` ( `Host` char(255) NOT NULL DEFAULT '', `User` char(128) NOT NULL DEFAULT '', `Priv` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '{}' CHECK (json_valid(`Priv`)), PRIMARY KEY (`Host`,`User`) ) ENGINE=Aria DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin PAGE_CHECKSUM=1 TRANSACTIONAL=1 COMMENT='Users and global privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `global_priv` -- LOCK TABLES `global_priv` WRITE; /*!40000 ALTER TABLE `global_priv` DISABLE KEYS */; INSERT INTO `global_priv` VALUES ('localhost','mariadb.sys','{\"access\":0,\"plugin\":\"mysql_native_password\",\"authentication_string\":\"\",\"account_locked\":true,\"password_last_changed\":0}'), ('localhost','root','{\"access\": 18446744073709551615, \"password_last_changed\": 1706893252, \"plugin\": \"mysql_native_password\", \"authentication_string\": \"*93C3B67DE2D7D9DBF49CF6141D4E63FEE930D0EC\", \"auth_or\": [{}, {\"plugin\": \"gssapi\", \"authentication_string\": \"SID:BA\"}]}'), ('win-rbuo1fa4vbj','root','{\"access\": 18446744073709551615, \"password_last_changed\": 1706893252, \"plugin\": \"mysql_native_password\", \"authentication_string\": \"*93C3B67DE2D7D9DBF49CF6141D4E63FEE930D0EC\", \"auth_or\": [{}, {\"plugin\": \"gssapi\", \"authentication_string\": \"SID:BA\"}]}'), ('127.0.0.1','root','{\"access\": 18446744073709551615, \"password_last_changed\": 1706893252, \"plugin\": \"mysql_native_password\", \"authentication_string\": \"*93C3B67DE2D7D9DBF49CF6141D4E63FEE930D0EC\", \"auth_or\": [{}, {\"plugin\": \"gssapi\", \"authentication_string\": \"SID:BA\"}]}'), ('::1','root','{\"access\": 18446744073709551615, \"password_last_changed\": 1706893252, \"plugin\": \"mysql_native_password\", \"authentication_string\": \"*93C3B67DE2D7D9DBF49CF6141D4E63FEE930D0EC\", \"auth_or\": [{}, {\"plugin\": \"gssapi\", \"authentication_string\": \"SID:BA\"}]}'), ('%','root','{\"access\": 18446744073709551615, \"password_last_changed\": 1706893252, \"plugin\": \"mysql_native_password\", \"authentication_string\": \"*93C3B67DE2D7D9DBF49CF6141D4E63FEE930D0EC\", \"auth_or\": [{}, {\"plugin\": \"gssapi\", \"authentication_string\": \"SID:BA\"}]}'), ('localhost','admin','{\"access\":1099511627775,\"version_id\":110400,\"plugin\":\"mysql_native_password\",\"authentication_string\":\"*93C3B67DE2D7D9DBF49CF6141D4E63FEE930D0EC\",\"password_last_changed\":1706897218,\"ssl_type\":0,\"ssl_cipher\":\"\",\"x509_issuer\":\"\",\"x509_subject\":\"\",\"max_questions\":0,\"max_updates\":0,\"max_connections\":0,\"max_user_connections\":0}'), ('localhost','pma','{\"access\":825171640320,\"version_id\":110400,\"plugin\":\"mysql_native_password\",\"authentication_string\":\"*03E2854B1BC2353C7FED1F780C55F7845322DC57\",\"password_last_changed\":1706899838,\"ssl_type\":0,\"ssl_cipher\":\"\",\"x509_issuer\":\"\",\"x509_subject\":\"\",\"max_questions\":0,\"max_updates\":0,\"max_connections\":0,\"max_user_connections\":0}'); /*!40000 ALTER TABLE `global_priv` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gtid_slave_pos` -- DROP TABLE IF EXISTS `gtid_slave_pos`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gtid_slave_pos` ( `domain_id` int(10) unsigned NOT NULL, `sub_id` bigint(20) unsigned NOT NULL, `server_id` int(10) unsigned NOT NULL, `seq_no` bigint(20) unsigned NOT NULL, PRIMARY KEY (`domain_id`,`sub_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Replication slave GTID position'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gtid_slave_pos` -- LOCK TABLES `gtid_slave_pos` WRITE; /*!40000 ALTER TABLE `gtid_slave_pos` DISABLE KEYS */; /*!40000 ALTER TABLE `gtid_slave_pos` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `help_category` -- DROP TABLE IF EXISTS `help_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_category` ( `help_category_id` smallint(5) unsigned NOT NULL, `name` char(64) NOT NULL, `parent_category_id` smallint(5) unsigned DEFAULT NULL, `url` text NOT NULL, PRIMARY KEY (`help_category_id`), UNIQUE KEY `name` (`name`) ) ENGINE=Aria DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci PAGE_CHECKSUM=1 TRANSACTIONAL=0 COMMENT='help categories'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `help_category` -- LOCK TABLES `help_category` WRITE; /*!40000 ALTER TABLE `help_category` DISABLE KEYS */; INSERT INTO `help_category` VALUES (1,'Contents',0,''), (2,'Polygon Properties',34,''), (3,'WKT',34,''), (4,'Numeric Functions',37,''), (5,'Plugins',1,''), (6,'MBR',34,''), (7,'Control Flow Functions',37,''), (8,'Transactions',1,''), (9,'Help Metadata',1,''), (10,'Account Management',1,''), (11,'Point Properties',34,''), (12,'Encryption Functions',37,''), (13,'LineString Properties',34,''), (14,'Miscellaneous Functions',37,''), (15,'Logical Operators',47,''), (16,'Functions and Modifiers for Use with GROUP BY',1,''), (17,'Information Functions',37,''), (18,'Assignment Operators',47,''), (19,'Comparison Operators',47,''), (20,'Bit Functions',37,''), (21,'Table Maintenance',1,''), (22,'User-Defined Functions',1,''), (23,'Data Types',1,''), (24,'Compound Statements',1,''), (25,'Geometry Constructors',34,''), (26,'Administration',1,''), (27,'Data Manipulation',1,''), (28,'Utility',1,''), (29,'Language Structure',1,''), (30,'Geometry Relations',34,''), (31,'Date and Time Functions',37,''), (32,'WKB',34,''), (33,'Procedures',1,''), (34,'Geographic Features',1,''), (35,'Geometry Properties',34,''), (36,'String Functions',37,''), (37,'Functions',1,''), (38,'Data Definition',1,''), (39,'Sequences',1,''), (40,'JSON Functions',37,''), (41,'Window Functions',37,''), (42,'Spider Functions',37,''), (43,'Dynamic Column Functions',37,''), (44,'Galera Functions',37,''), (45,'Temporal Tables',1,''), (46,'GeoJSON',34,''), (47,'Operators',1,''), (48,'Arithmetic Operators',47,''), (49,'Replication',1,''), (50,'Prepared Statements',1,''); /*!40000 ALTER TABLE `help_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `help_keyword` -- DROP TABLE IF EXISTS `help_keyword`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_keyword` ( `help_keyword_id` int(10) unsigned NOT NULL, `name` char(64) NOT NULL, PRIMARY KEY (`help_keyword_id`), UNIQUE KEY `name` (`name`) ) ENGINE=Aria DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci PAGE_CHECKSUM=1 TRANSACTIONAL=0 COMMENT='help keywords'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `help_keyword` -- LOCK TABLES `help_keyword` WRITE; /*!40000 ALTER TABLE `help_keyword` DISABLE KEYS */; INSERT INTO `help_keyword` VALUES (1,'work'), (2,'locks'), (3,'locking'), (4,'drop'), (5,'super'), (6,'usage'), (7,'binlog admin'), (8,'binlog monitor'), (9,'binlog replay'), (10,'connection admin'), (11,'federated admin'), (12,'grant option'), (13,'read_only admin'), (14,'replica monitor'), (15,'replication replica'), (16,'roles'), (17,'values'), (18,'value'), (19,'not'), (20,'and'), (21,'or'), (22,':='), (23,'assignment operator'), (24,'='), (25,'!='), (26,'<>'), (27,'not equal'), (28,'less than'), (29,'less than or equal'), (30,'NULL-safe equal'), (31,'equal'), (32,'greater than'), (33,'greater than or equal'), (34,'bitwise and'), (35,'shift left'), (36,'shift right'), (37,'bitwise xor'), (38,'bitwise or'), (39,'bitwise not'), (40,'returns'), (41,'udfs'), (42,'udf calling sequences'), (43,'udf security'), (44,'int1'), (45,'int2'), (46,'int3'), (47,'integer'), (48,'int4'), (49,'int8'), (50,'dec'), (51,'numeric'), (52,'fixed'), (53,'number'), (54,'real'), (55,'double precision'), (56,'nchar'), (57,'long'), (58,'long varchar'), (59,'repeat'), (60,'declare'), (61,'cursor'), (62,'show'), (63,'columns'), (64,'kill connection'), (65,'kill query'), (66,'delete returning'), (67,'sql_big_result'), (68,'minus'), (69,'cte'), (70,'insert returning'), (71,'queries'), (72,'query'), (73,'explain format'), (74,'explain format json'), (75,'rlike'), (76,'character_length'), (77,'escape'), (78,'mode'), (79,'trim_oracle'), (80,'schedule'), (81,'row_format'), (82,'starts'), (83,'host'), (84,'generated columns'), (85,'virtual columns'), (86,'computed columns'), (87,'hidden columns'), (88,'nextval'), (89,'lastval'), (90,'+'), (91,'addition operator'), (92,'/'), (93,'division operator'), (94,'%'), (95,'modulo operator'), (96,'*'), (97,'multiplication operator'), (98,'-'), (99,'subtraction operator'), (100,'master_ssl_verify_cert'), (101,'start replica'), (102,'stop replica'), (103,'reset slave'), (104,'reset replica'), (105,'drop prepare'), (106,'deallocate prepare'); /*!40000 ALTER TABLE `help_keyword` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `help_relation` -- DROP TABLE IF EXISTS `help_relation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_relation` ( `help_topic_id` int(10) unsigned NOT NULL, `help_keyword_id` int(10) unsigned NOT NULL, PRIMARY KEY (`help_keyword_id`,`help_topic_id`), KEY `help_topic_id` (`help_topic_id`) ) ENGINE=Aria DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci PAGE_CHECKSUM=1 TRANSACTIONAL=0 COMMENT='keyword-topic relation'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `help_relation` -- LOCK TABLES `help_relation` WRITE; /*!40000 ALTER TABLE `help_relation` DISABLE KEYS */; INSERT INTO `help_relation` VALUES (94,1), (98,2), (100,2), (102,2), (117,2), (149,2), (154,2), (159,2), (163,2), (164,2), (344,2), (444,2), (98,3), (100,3), (102,3), (117,3), (149,3), (154,3), (159,3), (163,3), (164,3), (344,3), (444,3), (107,4), (113,4), (254,4), (698,4), (708,4), (724,4), (725,4), (726,4), (727,4), (728,4), (729,4), (730,4), (731,4), (733,4), (734,4), (742,4), (108,5), (108,6), (108,7), (108,8), (108,9), (108,10), (108,11), (108,12), (108,13), (108,14), (108,15), (116,16), (169,17), (169,18), (170,19), (171,20), (173,21), (214,22), (214,23), (215,23), (215,24), (216,25), (216,26), (216,27), (217,28), (218,29), (219,30), (220,31), (221,32), (222,33), (236,34), (237,35), (238,36), (240,37), (241,38), (242,39), (253,40), (255,41), (256,42), (257,43), (259,44), (261,45), (262,46), (263,47), (263,48), (264,49), (265,50), (265,51), (265,52), (265,53), (267,54), (267,55), (273,56), (280,57), (280,58), (310,59), (673,59), (317,60), (317,61), (337,62), (338,62), (339,62), (340,62), (341,62), (348,62), (349,62), (350,62), (351,62), (352,62), (353,62), (360,62), (362,62), (363,62), (364,62), (365,62), (366,62), (367,62), (368,62), (369,62), (370,62), (371,62), (372,62), (373,62), (374,62), (375,62), (376,62), (377,62), (378,62), (379,62), (380,62), (381,62), (382,62), (383,62), (384,62), (385,62), (386,62), (387,62), (388,62), (389,62), (390,62), (391,62), (392,62), (393,62), (394,62), (395,62), (396,62), (397,62), (398,62), (399,62), (400,62), (401,62), (402,62), (403,62), (404,62), (414,62), (415,62), (339,63), (409,64), (409,65), (416,66), (420,67), (431,68), (437,69), (438,69), (439,69), (459,70), (466,71), (466,72), (472,73), (472,74), (630,75), (640,76), (659,77), (665,78), (689,79), (700,80), (707,81), (712,82), (718,83), (722,84), (722,85), (722,86), (723,87), (743,88), (744,89), (821,90), (821,91), (822,92), (822,93), (823,94), (823,95), (824,96), (824,97), (825,98), (825,99), (826,100), (827,101), (828,102), (829,103), (829,104), (833,105), (833,106); /*!40000 ALTER TABLE `help_relation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `help_topic` -- DROP TABLE IF EXISTS `help_topic`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_topic` ( `help_topic_id` int(10) unsigned NOT NULL, `name` char(64) NOT NULL, `help_category_id` smallint(5) unsigned NOT NULL, `description` text NOT NULL, `example` text NOT NULL, `url` text NOT NULL, PRIMARY KEY (`help_topic_id`), UNIQUE KEY `name` (`name`) ) ENGINE=Aria DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci PAGE_CHECKSUM=1 TRANSACTIONAL=0 COMMENT='help topics'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `help_topic` -- LOCK TABLES `help_topic` WRITE; /*!40000 ALTER TABLE `help_topic` DISABLE KEYS */; INSERT INTO `help_topic` VALUES (1,'HELP_DATE',9,'Help Contents generated from the MariaDB Knowledge Base on 25 July 2023.','',''), (2,'HELP_VERSION',9,'Help Contents generated for MariaDB 11.0 from the MariaDB Knowledge Base on 25 July 2023.','',''), (3,'AREA',2,'A synonym for ST_AREA.\n\nURL: https://mariadb.com/kb/en/polygon-properties-area/','','https://mariadb.com/kb/en/polygon-properties-area/'), (4,'CENTROID',2,'A synonym for ST_CENTROID.\n\nURL: https://mariadb.com/kb/en/centroid/','','https://mariadb.com/kb/en/centroid/'), (5,'ExteriorRing',2,'A synonym for ST_ExteriorRing.\n\nURL: https://mariadb.com/kb/en/polygon-properties-exteriorring/','','https://mariadb.com/kb/en/polygon-properties-exteriorring/'), (6,'InteriorRingN',2,'A synonym for ST_InteriorRingN.\n\nURL: https://mariadb.com/kb/en/polygon-properties-interiorringn/','','https://mariadb.com/kb/en/polygon-properties-interiorringn/'), (7,'NumInteriorRings',2,'A synonym for ST_NumInteriorRings.\n\nURL: https://mariadb.com/kb/en/polygon-properties-numinteriorrings/','','https://mariadb.com/kb/en/polygon-properties-numinteriorrings/'), (8,'ST_AREA',2,'Syntax\n------\n\nST_Area(poly)\nArea(poly)\n\nDescription\n-----------\n\nReturns as a double-precision number the area of the Polygon value poly, as\nmeasured in its spatial reference system.\n\nST_Area() and Area() are synonyms.\n\nExamples\n--------\n\nSET @poly = \'Polygon((0 0,0 3,3 0,0 0),(1 1,1 2,2 1,1 1))\';\n\nSELECT Area(GeomFromText(@poly));\n+---------------------------+\n| Area(GeomFromText(@poly)) |\n+---------------------------+\n| 4 |\n+---------------------------+\n\nURL: https://mariadb.com/kb/en/st_area/','','https://mariadb.com/kb/en/st_area/'), (9,'ST_CENTROID',2,'Syntax\n------\n\nST_Centroid(mpoly)\nCentroid(mpoly)\n\nDescription\n-----------\n\nReturns a point reflecting the mathematical centroid (geometric center) for\nthe MultiPolygon mpoly. The resulting point will not necessarily be on the\nMultiPolygon.\n\nST_Centroid() and Centroid() are synonyms.\n\nExamples\n--------\n\nSET @poly = ST_GeomFromText(\'POLYGON((0 0,20 0,20 20,0 20,0 0))\');\nSELECT ST_AsText(ST_Centroid(@poly)) AS center;\n+--------------+\n| center |\n+--------------+\n| POINT(10 10) |\n+--------------+\n\nURL: https://mariadb.com/kb/en/st_centroid/','','https://mariadb.com/kb/en/st_centroid/'), (10,'ST_ExteriorRing',2,'Syntax\n------\n\nST_ExteriorRing(poly)\nExteriorRing(poly)\n\nDescription\n-----------\n\nReturns the exterior ring of the Polygon value poly as a LineString.\n\nST_ExteriorRing() and ExteriorRing() are synonyms.\n\nExamples\n--------\n\nSET @poly = \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\n\nSELECT AsText(ExteriorRing(GeomFromText(@poly)));\n+-------------------------------------------+\n| AsText(ExteriorRing(GeomFromText(@poly))) |\n+-------------------------------------------+\n| LINESTRING(0 0,0 3,3 3,3 0,0 0) |\n+-------------------------------------------+\n\nURL: https://mariadb.com/kb/en/st_exteriorring/','','https://mariadb.com/kb/en/st_exteriorring/'), (11,'ST_InteriorRingN',2,'Syntax\n------\n\nST_InteriorRingN(poly,N)\nInteriorRingN(poly,N)\n\nDescription\n-----------\n\nReturns the N-th interior ring for the Polygon value poly as a LineString.\nRings are numbered beginning with 1.\n\nST_InteriorRingN() and InteriorRingN() are synonyms.\n\nExamples\n--------\n\nSET @poly = \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\n\nSELECT AsText(InteriorRingN(GeomFromText(@poly),1));\n+----------------------------------------------+\n| AsText(InteriorRingN(GeomFromText(@poly),1)) |\n+----------------------------------------------+\n| LINESTRING(1 1,1 2,2 2,2 1,1 1) |\n+----------------------------------------------+\n\nURL: https://mariadb.com/kb/en/st_interiorringn/','','https://mariadb.com/kb/en/st_interiorringn/'), (12,'ST_NumInteriorRings',2,'Syntax\n------\n\nST_NumInteriorRings(poly)\nNumInteriorRings(poly)\n\nDescription\n-----------\n\nReturns an integer containing the number of interior rings in the Polygon\nvalue poly.\n\nNote that according the the OpenGIS standard, a POLYGON should have exactly\none ExteriorRing and all other rings should lie within that ExteriorRing and\nthus be the InteriorRings. Practically, however, some systems, including\nMariaDB\'s, permit polygons to have several \'ExteriorRings\'. In the case of\nthere being multiple, non-overlapping exterior rings ST_NumInteriorRings()\nwill return 1.\n\nST_NumInteriorRings() and NumInteriorRings() are synonyms.\n\nExamples\n--------\n\nSET @poly = \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\n\nSELECT NumInteriorRings(GeomFromText(@poly));\n+---------------------------------------+\n| NumInteriorRings(GeomFromText(@poly)) |\n+---------------------------------------+\n| 1 |\n+---------------------------------------+\n\nNon-overlapping \'polygon\':\n\nSELECT ST_NumInteriorRings(ST_PolyFromText(\'POLYGON((0 0,10 0,10 10,0 10,0 0),\n (-1 -1,-5 -1,-5 -5,-1 -5,-1 -1))\')) AS NumInteriorRings;\n+------------------+\n| NumInteriorRings |\n+------------------+\n| 1 |\n+------------------+\n\nURL: https://mariadb.com/kb/en/st_numinteriorrings/','','https://mariadb.com/kb/en/st_numinteriorrings/'), (14,'AsText',3,'A synonym for ST_AsText().\n\nURL: https://mariadb.com/kb/en/wkt-astext/','','https://mariadb.com/kb/en/wkt-astext/'), (15,'AsWKT',3,'A synonym for ST_AsText().\n\nURL: https://mariadb.com/kb/en/wkt-aswkt/','','https://mariadb.com/kb/en/wkt-aswkt/'), (16,'GeomCollFromText',3,'A synonym for ST_GeomCollFromText.\n\nURL: https://mariadb.com/kb/en/wkt-geomcollfromtext/','','https://mariadb.com/kb/en/wkt-geomcollfromtext/'), (17,'GeometryCollectionFromText',3,'A synonym for ST_GeomCollFromText.\n\nURL: https://mariadb.com/kb/en/geometrycollectionfromtext/','','https://mariadb.com/kb/en/geometrycollectionfromtext/'), (18,'GeometryFromText',3,'A synonym for ST_GeomFromText.\n\nURL: https://mariadb.com/kb/en/geometryfromtext/','','https://mariadb.com/kb/en/geometryfromtext/'), (19,'GeomFromText',3,'A synonym for ST_GeomFromText.\n\nURL: https://mariadb.com/kb/en/wkt-geomfromtext/','','https://mariadb.com/kb/en/wkt-geomfromtext/'), (20,'LineFromText',3,'A synonym for ST_LineFromText.\n\nURL: https://mariadb.com/kb/en/wkt-linefromtext/','','https://mariadb.com/kb/en/wkt-linefromtext/'), (21,'LineStringFromText',3,'A synonym for ST_LineFromText.\n\nURL: https://mariadb.com/kb/en/linestringfromtext/','','https://mariadb.com/kb/en/linestringfromtext/'), (22,'MLineFromText',3,'Syntax\n------\n\nMLineFromText(wkt[,srid])\nMultiLineStringFromText(wkt[,srid])\n\nDescription\n-----------\n\nConstructs a MULTILINESTRING value using its WKT representation and SRID.\n\nMLineFromText() and MultiLineStringFromText() are synonyms.\n\nExamples\n--------\n\nCREATE TABLE gis_multi_line (g MULTILINESTRING);\nSHOW FIELDS FROM gis_multi_line;\nINSERT INTO gis_multi_line VALUES\n (MultiLineStringFromText(\'MULTILINESTRING((10 48,10 21,10 0),(16 0,16\n23,16 48))\')),\n (MLineFromText(\'MULTILINESTRING((10 48,10 21,10 0))\')),\n (MLineFromWKB(AsWKB(MultiLineString(\n LineString(Point(1, 2), Point(3, 5)),\n LineString(Point(2, 5), Point(5, 8), Point(21, 7))))));\n\nURL: https://mariadb.com/kb/en/mlinefromtext/','','https://mariadb.com/kb/en/mlinefromtext/'), (23,'MPointFromText',3,'Syntax\n------\n\nMPointFromText(wkt[,srid])\nMultiPointFromText(wkt[,srid])\n\nDescription\n-----------\n\nConstructs a MULTIPOINT value using its WKT representation and SRID.\n\nMPointFromText() and MultiPointFromText() are synonyms.\n\nExamples\n--------\n\nCREATE TABLE gis_multi_point (g MULTIPOINT);\nSHOW FIELDS FROM gis_multi_point;\nINSERT INTO gis_multi_point VALUES\n (MultiPointFromText(\'MULTIPOINT(0 0,10 10,10 20,20 20)\')),\n (MPointFromText(\'MULTIPOINT(1 1,11 11,11 21,21 21)\')),\n (MPointFromWKB(AsWKB(MultiPoint(Point(3, 6), Point(4, 10)))));\n\nURL: https://mariadb.com/kb/en/mpointfromtext/','','https://mariadb.com/kb/en/mpointfromtext/'), (13,'WKT Definition',3,'Description\n-----------\n\nThe Well-Known Text (WKT) representation of Geometry is designed to exchange\ngeometry data in ASCII form. Examples of the basic geometry types include:\n\n+-----------------------------------------------------------------------------+\n| Geometry Types |\n+-----------------------------------------------------------------------------+\n| POINT |\n+-----------------------------------------------------------------------------+\n| LINESTRING |\n+-----------------------------------------------------------------------------+\n| POLYGON |\n+-----------------------------------------------------------------------------+\n| MULTIPOINT |\n+-----------------------------------------------------------------------------+\n| MULTILINESTRING |\n+-----------------------------------------------------------------------------+\n| MULTIPOLYGON |\n+-----------------------------------------------------------------------------+\n| GEOMETRYCOLLECTION |\n+-----------------------------------------------------------------------------+\n| GEOMETRY |\n+-----------------------------------------------------------------------------+\n\nURL: https://mariadb.com/kb/en/wkt-definition/','','https://mariadb.com/kb/en/wkt-definition/'), (24,'MPolyFromText',3,'Syntax\n------\n\nMPolyFromText(wkt[,srid])\nMultiPolygonFromText(wkt[,srid])\n\nDescription\n-----------\n\nConstructs a MULTIPOLYGON value using its WKT representation and SRID.\n\nMPolyFromText() and MultiPolygonFromText() are synonyms.\n\nExamples\n--------\n\nCREATE TABLE gis_multi_polygon (g MULTIPOLYGON);\nSHOW FIELDS FROM gis_multi_polygon;\nINSERT INTO gis_multi_polygon VALUES\n (MultiPolygonFromText(\'MULTIPOLYGON(\n ((28 26,28 0,84 0,84 42,28 26),(52 18,66 23,73 9,48 6,52 18)),\n ((59 18,67 18,67 13,59 13,59 18)))\')),\n (MPolyFromText(\'MULTIPOLYGON(\n ((28 26,28 0,84 0,84 42,28 26),(52 18,66 23,73 9,48 6,52 18)),\n ((59 18,67 18,67 13,59 13,59 18)))\')),\n (MPolyFromWKB(AsWKB(MultiPolygon(Polygon(\n LineString(Point(0, 3), Point(3, 3), Point(3, 0), Point(0, 3)))))));\n\nURL: https://mariadb.com/kb/en/mpolyfromtext/','','https://mariadb.com/kb/en/mpolyfromtext/'), (25,'MultiLineStringFromText',3,'A synonym for MLineFromText.\n\nURL: https://mariadb.com/kb/en/multilinestringfromtext/','','https://mariadb.com/kb/en/multilinestringfromtext/'), (26,'MultiPointFromText',3,'A synonym for MPointFromText.\n\nURL: https://mariadb.com/kb/en/multipointfromtext/','','https://mariadb.com/kb/en/multipointfromtext/'), (27,'MultiPolygonFromText',3,'A synonym for MPolyFromText.\n\nURL: https://mariadb.com/kb/en/multipolygonfromtext/','','https://mariadb.com/kb/en/multipolygonfromtext/'), (28,'PointFromText',3,'A synonym for ST_PointFromText.\n\nURL: https://mariadb.com/kb/en/wkt-pointfromtext/','','https://mariadb.com/kb/en/wkt-pointfromtext/'), (29,'PolyFromText',3,'A synonym for ST_PolyFromText.\n\nURL: https://mariadb.com/kb/en/wkt-polyfromtext/','','https://mariadb.com/kb/en/wkt-polyfromtext/'), (30,'PolygonFromText',3,'A synonym for ST_PolyFromText.\n\nURL: https://mariadb.com/kb/en/polygonfromtext/','','https://mariadb.com/kb/en/polygonfromtext/'), (31,'ST_AsText',3,'Syntax\n------\n\nST_AsText(g)\nAsText(g)\nST_AsWKT(g)\nAsWKT(g)\n\nDescription\n-----------\n\nConverts a value in internal geometry format to its WKT representation and\nreturns the string result.\n\nST_AsText(), AsText(), ST_AsWKT() and AsWKT() are all synonyms.\n\nExamples\n--------\n\nSET @g = \'LineString(1 1,4 4,6 6)\';\n\nSELECT ST_AsText(ST_GeomFromText(@g));\n+--------------------------------+\n| ST_AsText(ST_GeomFromText(@g)) |\n+--------------------------------+\n| LINESTRING(1 1,4 4,6 6) |\n+--------------------------------+\n\nURL: https://mariadb.com/kb/en/st_astext/','','https://mariadb.com/kb/en/st_astext/'), (32,'ST_ASWKT',3,'A synonym for ST_ASTEXT().\n\nURL: https://mariadb.com/kb/en/st_aswkt/','','https://mariadb.com/kb/en/st_aswkt/'), (33,'ST_GeomCollFromText',3,'Syntax\n------\n\nST_GeomCollFromText(wkt[,srid])\nST_GeometryCollectionFromText(wkt[,srid])\nGeomCollFromText(wkt[,srid])\nGeometryCollectionFromText(wkt[,srid])\n\nDescription\n-----------\n\nConstructs a GEOMETRYCOLLECTION value using its WKT representation and SRID.\n\nST_GeomCollFromText(), ST_GeometryCollectionFromText(), GeomCollFromText() and\nGeometryCollectionFromText() are all synonyms.\n\nExample\n-------\n\nCREATE TABLE gis_geometrycollection (g GEOMETRYCOLLECTION);\nSHOW FIELDS FROM gis_geometrycollection;\nINSERT INTO gis_geometrycollection VALUES\n (GeomCollFromText(\'GEOMETRYCOLLECTION(POINT(0 0), LINESTRING(0 0,10\n10))\')),\n (GeometryFromWKB(AsWKB(GeometryCollection(Point(44, 6),\nLineString(Point(3, 6), Point(7, 9)))))),\n (GeomFromText(\'GeometryCollection()\')),\n (GeomFromText(\'GeometryCollection EMPTY\'));\n\nURL: https://mariadb.com/kb/en/st_geomcollfromtext/','','https://mariadb.com/kb/en/st_geomcollfromtext/'), (34,'ST_GeometryCollectionFromText',3,'A synonym for ST_GeomCollFromText.\n\nURL: https://mariadb.com/kb/en/st_geometrycollectionfromtext/','','https://mariadb.com/kb/en/st_geometrycollectionfromtext/'), (35,'ST_GeometryFromText',3,'A synonym for ST_GeomFromText.\n\nURL: https://mariadb.com/kb/en/st_geometryfromtext/','','https://mariadb.com/kb/en/st_geometryfromtext/'), (36,'ST_GeomFromText',3,'Syntax\n------\n\nST_GeomFromText(wkt[,srid])\nST_GeometryFromText(wkt[,srid])\nGeomFromText(wkt[,srid])\nGeometryFromText(wkt[,srid])\n\nDescription\n-----------\n\nConstructs a geometry value of any type using its WKT representation and SRID.\n\nGeomFromText(), GeometryFromText(), ST_GeomFromText() and\nST_GeometryFromText() are all synonyms.\n\nExample\n-------\n\nSET @g = ST_GEOMFROMTEXT(\'POLYGON((1 1,1 5,4 9,6 9,9 3,7 2,1 1))\');\n\nURL: https://mariadb.com/kb/en/st_geomfromtext/','','https://mariadb.com/kb/en/st_geomfromtext/'), (37,'ST_LineFromText',3,'Syntax\n------\n\nST_LineFromText(wkt[,srid])\nST_LineStringFromText(wkt[,srid])\nLineFromText(wkt[,srid])\nLineStringFromText(wkt[,srid])\n\nDescription\n-----------\n\nConstructs a LINESTRING value using its WKT representation and SRID.\n\nST_LineFromText(), ST_LineStringFromText(), ST_LineFromText() and\nST_LineStringFromText() are all synonyms.\n\nExamples\n--------\n\nCREATE TABLE gis_line (g LINESTRING);\nSHOW FIELDS FROM gis_line;\nINSERT INTO gis_line VALUES\n (LineFromText(\'LINESTRING(0 0,0 10,10 0)\')),\n (LineStringFromText(\'LINESTRING(10 10,20 10,20 20,10 20,10 10)\')),\n (LineStringFromWKB(AsWKB(LineString(Point(10, 10), Point(40, 10)))));\n\nURL: https://mariadb.com/kb/en/st_linefromtext/','','https://mariadb.com/kb/en/st_linefromtext/'), (38,'ST_LineStringFromText',3,'A synonym for ST_LineFromText.\n\nURL: https://mariadb.com/kb/en/st_linestringfromtext/','','https://mariadb.com/kb/en/st_linestringfromtext/'), (39,'ST_PointFromText',3,'Syntax\n------\n\nST_PointFromText(wkt[,srid])\nPointFromText(wkt[,srid])\n\nDescription\n-----------\n\nConstructs a POINT value using its WKT representation and SRID.\n\nST_PointFromText() and PointFromText() are synonyms.\n\nExamples\n--------\n\nCREATE TABLE gis_point (g POINT);\nSHOW FIELDS FROM gis_point;\nINSERT INTO gis_point VALUES\n (PointFromText(\'POINT(10 10)\')),\n (PointFromText(\'POINT(20 10)\')),\n (PointFromText(\'POINT(20 20)\')),\n (PointFromWKB(AsWKB(PointFromText(\'POINT(10 20)\'))));\n\nURL: https://mariadb.com/kb/en/st_pointfromtext/','','https://mariadb.com/kb/en/st_pointfromtext/'), (40,'ST_PolyFromText',3,'Syntax\n------\n\nST_PolyFromText(wkt[,srid])\nST_PolygonFromText(wkt[,srid])\nPolyFromText(wkt[,srid])\nPolygonFromText(wkt[,srid])\n\nDescription\n-----------\n\nConstructs a POLYGON value using its WKT representation and SRID.\n\nST_PolyFromText(), ST_PolygonFromText(), PolyFromText() and\nST_PolygonFromText() are all synonyms.\n\nExamples\n--------\n\nCREATE TABLE gis_polygon (g POLYGON);\nINSERT INTO gis_polygon VALUES\n (PolygonFromText(\'POLYGON((10 10,20 10,20 20,10 20,10 10))\')),\n (PolyFromText(\'POLYGON((0 0,50 0,50 50,0 50,0 0), (10 10,20 10,20 20,10\n20,10 10))\'));\n\nURL: https://mariadb.com/kb/en/st_polyfromtext/','','https://mariadb.com/kb/en/st_polyfromtext/'), (41,'ST_PolygonFromText',3,'A synonym for ST_PolyFromText.\n\nURL: https://mariadb.com/kb/en/st_polygonfromtext/','','https://mariadb.com/kb/en/st_polygonfromtext/'), (42,'DIV',4,'Syntax\n------\n\nDIV\n\nDescription\n-----------\n\nInteger division. Similar to FLOOR(), but is safe with BIGINT values.\nIncorrect results may occur for non-integer operands that exceed BIGINT range.\n\nIf the ERROR_ON_DIVISION_BY_ZERO SQL_MODE is used, a division by zero produces\nan error. Otherwise, it returns NULL.\n\nThe remainder of a division can be obtained using the MOD operator.\n\nExamples\n--------\n\nSELECT 300 DIV 7;\n+-----------+\n| 300 DIV 7 |\n+-----------+\n| 42 |\n+-----------+\n\nSELECT 300 DIV 0;\n+-----------+\n| 300 DIV 0 |\n+-----------+\n| NULL |\n+-----------+\n\nURL: https://mariadb.com/kb/en/div/','','https://mariadb.com/kb/en/div/'), (43,'ABS',4,'Syntax\n------\n\nABS(X)\n\nDescription\n-----------\n\nReturns the absolute (non-negative) value of X. If X is not a number, it is\nconverted to a numeric type.\n\nExamples\n--------\n\nSELECT ABS(42);\n+---------+\n| ABS(42) |\n+---------+\n| 42 |\n+---------+\n\nSELECT ABS(-42);\n+----------+\n| ABS(-42) |\n+----------+\n| 42 |\n+----------+\n\nSELECT ABS(DATE \'1994-01-01\');\n+------------------------+\n| ABS(DATE \'1994-01-01\') |\n+------------------------+\n| 19940101 |\n+------------------------+\n\nURL: https://mariadb.com/kb/en/abs/','','https://mariadb.com/kb/en/abs/'), (44,'ACOS',4,'Syntax\n------\n\nACOS(X)\n\nDescription\n-----------\n\nReturns the arc cosine of X, that is, the value whose cosine is X. Returns\nNULL if X is not in the range -1 to 1.\n\nExamples\n--------\n\nSELECT ACOS(1);\n+---------+\n| ACOS(1) |\n+---------+\n| 0 |\n+---------+\n\nSELECT ACOS(1.0001);\n+--------------+\n| ACOS(1.0001) |\n+--------------+\n| NULL |\n+--------------+\n\nSELECT ACOS(0);\n+-----------------+\n| ACOS(0) |\n+-----------------+\n| 1.5707963267949 |\n+-----------------+\n\nSELECT ACOS(0.234);\n+------------------+\n| ACOS(0.234) |\n+------------------+\n| 1.33460644244679 |\n+------------------+\n\nURL: https://mariadb.com/kb/en/acos/','','https://mariadb.com/kb/en/acos/'), (45,'ASIN',4,'Syntax\n------\n\nASIN(X)\n\nDescription\n-----------\n\nReturns the arc sine of X, that is, the value whose sine is X. Returns NULL if\nX is not in the range -1 to 1.\n\nExamples\n--------\n\nSELECT ASIN(0.2);\n+--------------------+\n| ASIN(0.2) |\n+--------------------+\n| 0.2013579207903308 |\n+--------------------+\n\nSELECT ASIN(\'foo\');\n+-------------+\n| ASIN(\'foo\') |\n+-------------+\n| 0 |\n+-------------+\n\nSHOW WARNINGS;\n+---------+------+-----------------------------------------+\n| Level | Code | Message |\n+---------+------+-----------------------------------------+\n| Warning | 1292 | Truncated incorrect DOUBLE value: \'foo\' |\n+---------+------+-----------------------------------------+\n\nURL: https://mariadb.com/kb/en/asin/','','https://mariadb.com/kb/en/asin/'), (46,'ATAN',4,'Syntax\n------\n\nATAN(X)\n\nDescription\n-----------\n\nReturns the arc tangent of X, that is, the value whose tangent is X.\n\nExamples\n--------\n\nSELECT ATAN(2);\n+--------------------+\n| ATAN(2) |\n+--------------------+\n| 1.1071487177940904 |\n+--------------------+\n\nSELECT ATAN(-2);\n+---------------------+\n| ATAN(-2) |\n+---------------------+\n| -1.1071487177940904 |\n+---------------------+\n\nURL: https://mariadb.com/kb/en/atan/','','https://mariadb.com/kb/en/atan/'), (47,'ATAN2',4,'Syntax\n------\n\nATAN(Y,X), ATAN2(Y,X)\n\nDescription\n-----------\n\nReturns the arc tangent of the two variables X and Y. It is similar to\ncalculating the arc tangent of Y / X, except that the signs of both arguments\nare used to determine the quadrant of the result.\n\nExamples\n--------\n\nSELECT ATAN(-2,2);\n+---------------------+\n| ATAN(-2,2) |\n+---------------------+\n| -0.7853981633974483 |\n+---------------------+\n\nSELECT ATAN2(PI(),0);\n+--------------------+\n| ATAN2(PI(),0) |\n+--------------------+\n| 1.5707963267948966 |\n+--------------------+\n\nURL: https://mariadb.com/kb/en/atan2/','','https://mariadb.com/kb/en/atan2/'), (48,'CEIL',4,'Syntax\n------\n\nCEIL(X)\n\nDescription\n-----------\n\nCEIL() is a synonym for CEILING().\n\nURL: https://mariadb.com/kb/en/ceil/','','https://mariadb.com/kb/en/ceil/'), (49,'CEILING',4,'Syntax\n------\n\nCEILING(X)\n\nDescription\n-----------\n\nReturns the smallest integer value not less than X.\n\nExamples\n--------\n\nSELECT CEILING(1.23);\n+---------------+\n| CEILING(1.23) |\n+---------------+\n| 2 |\n+---------------+\n\nSELECT CEILING(-1.23);\n+----------------+\n| CEILING(-1.23) |\n+----------------+\n| -1 |\n+----------------+\n\nURL: https://mariadb.com/kb/en/ceiling/','','https://mariadb.com/kb/en/ceiling/'), (51,'COS',4,'Syntax\n------\n\nCOS(X)\n\nDescription\n-----------\n\nReturns the cosine of X, where X is given in radians.\n\nExamples\n--------\n\nSELECT COS(PI());\n+-----------+\n| COS(PI()) |\n+-----------+\n| -1 |\n+-----------+\n\nURL: https://mariadb.com/kb/en/cos/','','https://mariadb.com/kb/en/cos/'), (52,'COT',4,'Syntax\n------\n\nCOT(X)\n\nDescription\n-----------\n\nReturns the cotangent of X.\n\nExamples\n--------\n\nSELECT COT(42);\n+--------------------+\n| COT(42) |\n+--------------------+\n| 0.4364167060752729 |\n+--------------------+\n\nSELECT COT(12);\n+---------------------+\n| COT(12) |\n+---------------------+\n| -1.5726734063976893 |\n+---------------------+\n\nSELECT COT(0);\nERROR 1690 (22003): DOUBLE value is out of range in \'cot(0)\'\n\nURL: https://mariadb.com/kb/en/cot/','','https://mariadb.com/kb/en/cot/'), (55,'DEGREES',4,'Syntax\n------\n\nDEGREES(X)\n\nDescription\n-----------\n\nReturns the argument X, converted from radians to degrees.\n\nThis is the converse of the RADIANS() function.\n\nExamples\n--------\n\nSELECT DEGREES(PI());\n+---------------+\n| DEGREES(PI()) |\n+---------------+\n| 180 |\n+---------------+\n\nSELECT DEGREES(PI() / 2);\n+-------------------+\n| DEGREES(PI() / 2) |\n+-------------------+\n| 90 |\n+-------------------+\n\nSELECT DEGREES(45);\n+-----------------+\n| DEGREES(45) |\n+-----------------+\n| 2578.3100780887 |\n+-----------------+\n\nURL: https://mariadb.com/kb/en/degrees/','','https://mariadb.com/kb/en/degrees/'), (56,'EXP',4,'Syntax\n------\n\nEXP(X)\n\nDescription\n-----------\n\nReturns the value of e (the base of natural logarithms) raised to the power of\nX. The inverse of this function is LOG() (using a single argument only) or\nLN().\n\nIf X is NULL, this function returns NULL.\n\nExamples\n--------\n\nSELECT EXP(2);\n+------------------+\n| EXP(2) |\n+------------------+\n| 7.38905609893065 |\n+------------------+\n\nSELECT EXP(-2);\n+--------------------+\n| EXP(-2) |\n+--------------------+\n| 0.1353352832366127 |\n+--------------------+\n\nSELECT EXP(0);\n+--------+\n| EXP(0) |\n+--------+\n| 1 |\n+--------+\n\nSELECT EXP(NULL);\n+-----------+\n| EXP(NULL) |\n+-----------+\n| NULL |\n+-----------+\n\nURL: https://mariadb.com/kb/en/exp/','','https://mariadb.com/kb/en/exp/'), (50,'CONV',4,'Syntax\n------\n\nCONV(N,from_base,to_base)\n\nDescription\n-----------\n\nConverts numbers between different number bases. Returns a string\nrepresentation of the number N, converted from base from_base to base to_base.\n\nReturns NULL if any argument is NULL, or if the second or third argument are\nnot in the allowed range.\n\nThe argument N is interpreted as an integer, but may be specified as an\ninteger or a string. The minimum base is 2 and the maximum base is 36. If\nto_base is a negative number, N is regarded as a signed number. Otherwise, N\nis treated as unsigned. CONV() works with 64-bit precision.\n\nSome shortcuts for this function are also available: BIN(), OCT(), HEX(),\nUNHEX(). Also, MariaDB allows binary literal values and hexadecimal literal\nvalues.\n\nExamples\n--------\n\nSELECT CONV(\'a\',16,2);\n+----------------+\n| CONV(\'a\',16,2) |\n+----------------+\n| 1010 |\n+----------------+\n\nSELECT CONV(\'6E\',18,8);\n+-----------------+\n| CONV(\'6E\',18,8) |\n+-----------------+\n| 172 |\n+-----------------+\n\nSELECT CONV(-17,10,-18);\n+------------------+\n| CONV(-17,10,-18) |\n+------------------+\n| -H |\n+------------------+\n\nSELECT CONV(12+\'10\'+\'10\'+0xa,10,10);\n+------------------------------+\n| CONV(12+\'10\'+\'10\'+0xa,10,10) |\n+------------------------------+\n| 42 |\n+------------------------------+\n\nURL: https://mariadb.com/kb/en/conv/','','https://mariadb.com/kb/en/conv/'), (53,'CRC32',4,'Syntax\n------\n\n<= MariaDB 10.7\n\nCRC32(expr)\n\nFrom MariaDB 10.8\n\nCRC32([par,]expr)\n\nDescription\n-----------\n\nComputes a cyclic redundancy check (CRC) value and returns a 32-bit unsigned\nvalue. The result is NULL if the argument is NULL. The argument is expected to\nbe a string and (if possible) is treated as one if it is not.\n\nUses the ISO 3309 polynomial that used by zlib and many others. MariaDB 10.8\nintroduced the CRC32C() function, which uses the alternate Castagnoli\npolynomia.\n\nMariaDB starting with 10.8\n--------------------------\nOften, CRC is computed in pieces. To facilitate this, MariaDB 10.8.0\nintroduced an optional parameter: CRC32(\'MariaDB\')=CRC32(CRC32(\'Maria\'),\'DB\').\n\nExamples\n--------\n\nSELECT CRC32(\'MariaDB\');\n+------------------+\n| CRC32(\'MariaDB\') |\n+------------------+\n| 4227209140 |\n+------------------+\n\nSELECT CRC32(\'mariadb\');\n+------------------+\n| CRC32(\'mariadb\') |\n+------------------+\n| 2594253378 |\n+------------------+\n\nFrom MariaDB 10.8.0\n\nSELECT CRC32(CRC32(\'Maria\'),\'DB\');\n+----------------------------+\n| CRC32(CRC32(\'Maria\'),\'DB\') |\n+----------------------------+\n| 4227209140 |\n+----------------------------+\n\nURL: https://mariadb.com/kb/en/crc32/','','https://mariadb.com/kb/en/crc32/'), (54,'CRC32C',4,'MariaDB starting with 10.8\n--------------------------\nIntroduced in MariaDB 10.8.0 to compute a cyclic redundancy check (CRC) value\nusing the Castagnoli polynomial.\n\nSyntax\n------\n\nCRC32C([par,]expr)\n\nDescription\n-----------\n\nMariaDB has always included a native unary function CRC32() that computes the\nCRC-32 of a string using the ISO 3309 polynomial that used by zlib and many\nothers.\n\nInnoDB and MyRocks use a different polynomial, which was implemented in SSE4.2\ninstructions that were introduced in the Intel Nehalem microarchitecture. This\nis commonly called CRC-32C (Castagnoli).\n\nThe CRC32C function uses the Castagnoli polynomial.\n\nThis allows SELECT…INTO DUMPFILE to be used for the creation of files with\nvalid checksums, such as a logically empty InnoDB redo log file ib_logfile0\ncorresponding to a particular log sequence number.\n\nThe optional parameter allows the checksum to be computed in pieces:\nCRC32C(\'MariaDB\')=CRC32C(CRC32C(\'Maria\'),\'DB\').\n\nExamples\n--------\n\nSELECT CRC32C(\'MariaDB\');\n+-------------------+\n| CRC32C(\'MariaDB\') |\n+-------------------+\n| 809606978 |\n+-------------------+\n\nSELECT CRC32C(CRC32C(\'Maria\'),\'DB\');\n+------------------------------+\n| CRC32C(CRC32C(\'Maria\'),\'DB\') |\n+------------------------------+\n| 809606978 |\n+------------------------------+\n\nURL: https://mariadb.com/kb/en/crc32c/','','https://mariadb.com/kb/en/crc32c/'), (57,'FLOOR',4,'Syntax\n------\n\nFLOOR(X)\n\nDescription\n-----------\n\nReturns the largest integer value not greater than X.\n\nExamples\n--------\n\nSELECT FLOOR(1.23);\n+-------------+\n| FLOOR(1.23) |\n+-------------+\n| 1 |\n+-------------+\n\nSELECT FLOOR(-1.23);\n+--------------+\n| FLOOR(-1.23) |\n+--------------+\n| -2 |\n+--------------+\n\nURL: https://mariadb.com/kb/en/floor/','','https://mariadb.com/kb/en/floor/'), (58,'LN',4,'Syntax\n------\n\nLN(X)\n\nDescription\n-----------\n\nReturns the natural logarithm of X; that is, the base-e logarithm of X. If X\nis less than or equal to 0, or NULL, then NULL is returned.\n\nThe inverse of this function is EXP().\n\nExamples\n--------\n\nSELECT LN(2);\n+-------------------+\n| LN(2) |\n+-------------------+\n| 0.693147180559945 |\n+-------------------+\n\nSELECT LN(-2);\n+--------+\n| LN(-2) |\n+--------+\n| NULL |\n+--------+\n\nURL: https://mariadb.com/kb/en/ln/','','https://mariadb.com/kb/en/ln/'), (60,'LOG10',4,'Syntax\n------\n\nLOG10(X)\n\nDescription\n-----------\n\nReturns the base-10 logarithm of X.\n\nExamples\n--------\n\nSELECT LOG10(2);\n+-------------------+\n| LOG10(2) |\n+-------------------+\n| 0.301029995663981 |\n+-------------------+\n\nSELECT LOG10(100);\n+------------+\n| LOG10(100) |\n+------------+\n| 2 |\n+------------+\n\nSELECT LOG10(-100);\n+-------------+\n| LOG10(-100) |\n+-------------+\n| NULL |\n+-------------+\n\nURL: https://mariadb.com/kb/en/log10/','','https://mariadb.com/kb/en/log10/'), (61,'LOG2',4,'Syntax\n------\n\nLOG2(X)\n\nDescription\n-----------\n\nReturns the base-2 logarithm of X.\n\nExamples\n--------\n\nSELECT LOG2(4398046511104);\n+---------------------+\n| LOG2(4398046511104) |\n+---------------------+\n| 42 |\n+---------------------+\n\nSELECT LOG2(65536);\n+-------------+\n| LOG2(65536) |\n+-------------+\n| 16 |\n+-------------+\n\nSELECT LOG2(-100);\n+------------+\n| LOG2(-100) |\n+------------+\n| NULL |\n+------------+\n\nURL: https://mariadb.com/kb/en/log2/','','https://mariadb.com/kb/en/log2/'), (63,'OCT',4,'Syntax\n------\n\nOCT(N)\n\nDescription\n-----------\n\nReturns a string representation of the octal value of N, where N is a longlong\n(BIGINT) number. This is equivalent to CONV(N,10,8). Returns NULL if N is NULL.\n\nExamples\n--------\n\nSELECT OCT(34);\n+---------+\n| OCT(34) |\n+---------+\n| 42 |\n+---------+\n\nSELECT OCT(12);\n+---------+\n| OCT(12) |\n+---------+\n| 14 |\n+---------+\n\nURL: https://mariadb.com/kb/en/oct/','','https://mariadb.com/kb/en/oct/'), (64,'PI',4,'Syntax\n------\n\nPI()\n\nDescription\n-----------\n\nReturns the value of π (pi). The default number of decimal places displayed is\nsix, but MariaDB uses the full double-precision value internally.\n\nExamples\n--------\n\nSELECT PI();\n+----------+\n| PI() |\n+----------+\n| 3.141593 |\n+----------+\n\nSELECT PI()+0.0000000000000000000000;\n+-------------------------------+\n| PI()+0.0000000000000000000000 |\n+-------------------------------+\n| 3.1415926535897931159980 |\n+-------------------------------+\n\nURL: https://mariadb.com/kb/en/pi/','','https://mariadb.com/kb/en/pi/'), (65,'POW',4,'Syntax\n------\n\nPOW(X,Y)\n\nDescription\n-----------\n\nReturns the value of X raised to the power of Y.\n\nPOWER() is a synonym.\n\nExamples\n--------\n\nSELECT POW(2,3);\n+----------+\n| POW(2,3) |\n+----------+\n| 8 |\n+----------+\n\nSELECT POW(2,-2);\n+-----------+\n| POW(2,-2) |\n+-----------+\n| 0.25 |\n+-----------+\n\nURL: https://mariadb.com/kb/en/pow/','','https://mariadb.com/kb/en/pow/'), (59,'LOG',4,'Syntax\n------\n\nLOG(X), LOG(B,X)\n\nDescription\n-----------\n\nIf called with one parameter, this function returns the natural logarithm of\nX. If X is less than or equal to 0, then NULL is returned.\n\nIf called with two parameters, it returns the logarithm of X to the base B. If\nB is <= 1 or X <= 0, the function returns NULL.\n\nIf any argument is NULL, the function returns NULL.\n\nThe inverse of this function (when called with a single argument) is the EXP()\nfunction.\n\nExamples\n--------\n\nLOG(X):\n\nSELECT LOG(2);\n+-------------------+\n| LOG(2) |\n+-------------------+\n| 0.693147180559945 |\n+-------------------+\n\nSELECT LOG(-2);\n+---------+\n| LOG(-2) |\n+---------+\n| NULL |\n+---------+\n\nLOG(B,X)\n\nSELECT LOG(2,16);\n+-----------+\n| LOG(2,16) |\n+-----------+\n| 4 |\n+-----------+\n\nSELECT LOG(3,27);\n+-----------+\n| LOG(3,27) |\n+-----------+\n| 3 |\n+-----------+\n\nSELECT LOG(3,1);\n+----------+\n| LOG(3,1) |\n+----------+\n| 0 |\n+----------+\n\nSELECT LOG(3,0);\n+----------+\n| LOG(3,0) |\n+----------+\n| NULL |\n+----------+\n\nURL: https://mariadb.com/kb/en/log/','','https://mariadb.com/kb/en/log/'), (62,'MOD',4,'Syntax\n------\n\nMOD(N,M), N % M, N MOD M\n\nDescription\n-----------\n\nModulo operation. Returns the remainder of N divided by M. See also Modulo\nOperator.\n\nIf the ERROR_ON_DIVISION_BY_ZERO SQL_MODE is used, any number modulus zero\nproduces an error. Otherwise, it returns NULL.\n\nThe integer part of a division can be obtained using DIV.\n\nExamples\n--------\n\nSELECT 1042 % 50;\n+-----------+\n| 1042 % 50 |\n+-----------+\n| 42 |\n+-----------+\n\nSELECT MOD(234, 10);\n+--------------+\n| MOD(234, 10) |\n+--------------+\n| 4 |\n+--------------+\n\nSELECT 253 % 7;\n+---------+\n| 253 % 7 |\n+---------+\n| 1 |\n+---------+\n\nSELECT MOD(29,9);\n+-----------+\n| MOD(29,9) |\n+-----------+\n| 2 |\n+-----------+\n\nSELECT 29 MOD 9;\n+----------+\n| 29 MOD 9 |\n+----------+\n| 2 |\n+----------+\n\nURL: https://mariadb.com/kb/en/mod/','','https://mariadb.com/kb/en/mod/'), (66,'POWER',4,'Syntax\n------\n\nPOWER(X,Y)\n\nDescription\n-----------\n\nThis is a synonym for POW(), which returns the value of X raised to the power\nof Y.\n\nURL: https://mariadb.com/kb/en/power/','','https://mariadb.com/kb/en/power/'), (67,'RADIANS',4,'Syntax\n------\n\nRADIANS(X)\n\nDescription\n-----------\n\nReturns the argument X, converted from degrees to radians. Note that π radians\nequals 180 degrees.\n\nThis is the converse of the DEGREES() function.\n\nExamples\n--------\n\nSELECT RADIANS(45);\n+-------------------+\n| RADIANS(45) |\n+-------------------+\n| 0.785398163397448 |\n+-------------------+\n\nSELECT RADIANS(90);\n+-----------------+\n| RADIANS(90) |\n+-----------------+\n| 1.5707963267949 |\n+-----------------+\n\nSELECT RADIANS(PI());\n+--------------------+\n| RADIANS(PI()) |\n+--------------------+\n| 0.0548311355616075 |\n+--------------------+\n\nSELECT RADIANS(180);\n+------------------+\n| RADIANS(180) |\n+------------------+\n| 3.14159265358979 |\n+------------------+\n\nURL: https://mariadb.com/kb/en/radians/','','https://mariadb.com/kb/en/radians/'), (68,'RAND',4,'Syntax\n------\n\nRAND(), RAND(N)\n\nDescription\n-----------\n\nReturns a random DOUBLE precision floating point value v in the range 0 <= v <\n1.0. If a constant integer argument N is specified, it is used as the seed\nvalue, which produces a repeatable sequence of column values. In the example\nbelow, note that the sequences of values produced by RAND(3) is the same both\nplaces where it occurs.\n\nIn a WHERE clause, RAND() is evaluated each time the WHERE is executed.\n\nStatements using the RAND() function are not safe for statement-based\nreplication.\n\nPractical uses\n--------------\n\nThe expression to get a random integer from a given range is the following:\n\nFLOOR(min_value + RAND() * (max_value - min_value +1))\n\nRAND() is often used to read random rows from a table, as follows:\n\nSELECT * FROM my_table ORDER BY RAND() LIMIT 10;\n\nNote, however, that this technique should never be used on a large table as it\nwill be extremely slow. MariaDB will read all rows in the table, generate a\nrandom value for each of them, order them, and finally will apply the LIMIT\nclause.\n\nExamples\n--------\n\nCREATE TABLE t (i INT);\n\nINSERT INTO t VALUES(1),(2),(3);\n\nSELECT i, RAND() FROM t;\n+------+-------------------+\n| i | RAND() |\n+------+-------------------+\n| 1 | 0.255651095188829 |\n| 2 | 0.833920199269355 |\n| 3 | 0.40264774151393 |\n+------+-------------------+\n\nSELECT i, RAND(3) FROM t;\n+------+-------------------+\n| i | RAND(3) |\n+------+-------------------+\n| 1 | 0.90576975597606 |\n| 2 | 0.373079058130345 |\n| 3 | 0.148086053457191 |\n+------+-------------------+\n\nSELECT i, RAND() FROM t;\n+------+-------------------+\n| i | RAND() |\n+------+-------------------+\n| 1 | 0.511478140495232 |\n| 2 | 0.349447508668012 |\n| 3 | 0.212803152588013 |\n+------+-------------------+\n\nUsing the same seed, the same sequence will be returned:\n\nSELECT i, RAND(3) FROM t;\n+------+-------------------+\n| i | RAND(3) |\n+------+-------------------+\n| 1 | 0.90576975597606 |\n| 2 | 0.373079058130345 |\n| 3 | 0.148086053457191 |\n+------+-------------------+\n\nGenerating a random number from 5 to 15:\n\nSELECT FLOOR(5 + (RAND() * 11));\n\nURL: https://mariadb.com/kb/en/rand/','','https://mariadb.com/kb/en/rand/'), (70,'SIGN',4,'Syntax\n------\n\nSIGN(X)\n\nDescription\n-----------\n\nReturns the sign of the argument as -1, 0, or 1, depending on whether X is\nnegative, zero, or positive.\n\nExamples\n--------\n\nSELECT SIGN(-32);\n+-----------+\n| SIGN(-32) |\n+-----------+\n| -1 |\n+-----------+\n\nSELECT SIGN(0);\n+---------+\n| SIGN(0) |\n+---------+\n| 0 |\n+---------+\n\nSELECT SIGN(234);\n+-----------+\n| SIGN(234) |\n+-----------+\n| 1 |\n+-----------+\n\nURL: https://mariadb.com/kb/en/sign/','','https://mariadb.com/kb/en/sign/'), (71,'SIN',4,'Syntax\n------\n\nSIN(X)\n\nDescription\n-----------\n\nReturns the sine of X, where X is given in radians.\n\nExamples\n--------\n\nSELECT SIN(1.5707963267948966);\n+-------------------------+\n| SIN(1.5707963267948966) |\n+-------------------------+\n| 1 |\n+-------------------------+\n\nSELECT SIN(PI());\n+----------------------+\n| SIN(PI()) |\n+----------------------+\n| 1.22460635382238e-16 |\n+----------------------+\n\nSELECT ROUND(SIN(PI()));\n+------------------+\n| ROUND(SIN(PI())) |\n+------------------+\n| 0 |\n+------------------+\n\nURL: https://mariadb.com/kb/en/sin/','','https://mariadb.com/kb/en/sin/'), (72,'SQRT',4,'Syntax\n------\n\nSQRT(X)\n\nDescription\n-----------\n\nReturns the square root of X. If X is negative, NULL is returned.\n\nExamples\n--------\n\nSELECT SQRT(4);\n+---------+\n| SQRT(4) |\n+---------+\n| 2 |\n+---------+\n\nSELECT SQRT(20);\n+------------------+\n| SQRT(20) |\n+------------------+\n| 4.47213595499958 |\n+------------------+\n\nSELECT SQRT(-16);\n+-----------+\n| SQRT(-16) |\n+-----------+\n| NULL |\n+-----------+\n\nSELECT SQRT(1764);\n+------------+\n| SQRT(1764) |\n+------------+\n| 42 |\n+------------+\n\nURL: https://mariadb.com/kb/en/sqrt/','','https://mariadb.com/kb/en/sqrt/'), (73,'TAN',4,'Syntax\n------\n\nTAN(X)\n\nDescription\n-----------\n\nReturns the tangent of X, where X is given in radians.\n\nExamples\n--------\n\nSELECT TAN(0.7853981633974483);\n+-------------------------+\n| TAN(0.7853981633974483) |\n+-------------------------+\n| 0.9999999999999999 |\n+-------------------------+\n\nSELECT TAN(PI());\n+-----------------------+\n| TAN(PI()) |\n+-----------------------+\n| -1.22460635382238e-16 |\n+-----------------------+\n\nSELECT TAN(PI()+1);\n+-----------------+\n| TAN(PI()+1) |\n+-----------------+\n| 1.5574077246549 |\n+-----------------+\n\nSELECT TAN(RADIANS(PI()));\n+--------------------+\n| TAN(RADIANS(PI())) |\n+--------------------+\n| 0.0548861508080033 |\n+--------------------+\n\nURL: https://mariadb.com/kb/en/tan/','','https://mariadb.com/kb/en/tan/'), (69,'ROUND',4,'Syntax\n------\n\nROUND(X), ROUND(X,D)\n\nDescription\n-----------\n\nRounds the argument X to D decimal places. D defaults to 0 if not specified. D\ncan be negative to cause D digits left of the decimal point of the value X to\nbecome zero.\n\nThe rounding algorithm depends on the data type of X:\n\n* for floating point types (FLOAT, DOUBLE) the C libraries rounding function\nis used, so the behavior *may* differ between operating systems\n* for fixed point types (DECIMAL, DEC/NUMBER/FIXED) the \"round half up\" rule\nis used, meaning that e.g. a value ending in exactly .5 is always rounded up.\n\nExamples\n--------\n\nSELECT ROUND(-1.23);\n+--------------+\n| ROUND(-1.23) |\n+--------------+\n| -1 |\n+--------------+\n\nSELECT ROUND(-1.58);\n+--------------+\n| ROUND(-1.58) |\n+--------------+\n| -2 |\n+--------------+\n\nSELECT ROUND(1.58); \n+-------------+\n| ROUND(1.58) |\n+-------------+\n| 2 |\n+-------------+\n\nSELECT ROUND(1.298, 1);\n+-----------------+\n| ROUND(1.298, 1) |\n+-----------------+\n| 1.3 |\n+-----------------+\n\nSELECT ROUND(1.298, 0);\n+-----------------+\n| ROUND(1.298, 0) |\n+-----------------+\n| 1 |\n+-----------------+\n\nSELECT ROUND(23.298, -1);\n+-------------------+\n| ROUND(23.298, -1) |\n+-------------------+\n| 20 |\n+-------------------+\n\nURL: https://mariadb.com/kb/en/round/','','https://mariadb.com/kb/en/round/'), (74,'TRUNCATE',4,'This page documents the TRUNCATE function. See TRUNCATE TABLE for the DDL\nstatement.\n\nSyntax\n------\n\nTRUNCATE(X,D)\n\nDescription\n-----------\n\nReturns the number X, truncated to D decimal places. If D is 0, the result has\nno decimal point or fractional part. D can be negative to cause D digits left\nof the decimal point of the value X to become zero.\n\nExamples\n--------\n\nSELECT TRUNCATE(1.223,1);\n+-------------------+\n| TRUNCATE(1.223,1) |\n+-------------------+\n| 1.2 |\n+-------------------+\n\nSELECT TRUNCATE(1.999,1);\n+-------------------+\n| TRUNCATE(1.999,1) |\n+-------------------+\n| 1.9 |\n+-------------------+\n\nSELECT TRUNCATE(1.999,0); \n+-------------------+\n| TRUNCATE(1.999,0) |\n+-------------------+\n| 1 |\n+-------------------+\n\nSELECT TRUNCATE(-1.999,1);\n+--------------------+\n| TRUNCATE(-1.999,1) |\n+--------------------+\n| -1.9 |\n+--------------------+\n\nSELECT TRUNCATE(122,-2);\n+------------------+\n| TRUNCATE(122,-2) |\n+------------------+\n| 100 |\n+------------------+\n\nSELECT TRUNCATE(10.28*100,0);\n+-----------------------+\n| TRUNCATE(10.28*100,0) |\n+-----------------------+\n| 1028 |\n+-----------------------+\n\nURL: https://mariadb.com/kb/en/truncate/','','https://mariadb.com/kb/en/truncate/'), (76,'UNINSTALL PLUGIN',5,'Syntax\n------\n\nUNINSTALL PLUGIN [IF EXISTS] plugin_name\n\nDescription\n-----------\n\nThis statement removes a single installed plugin. To uninstall the whole\nlibrary which contains the plugin, use UNINSTALL SONAME. You cannot uninstall\na plugin if any table that uses it is open.\n\nplugin_name must be the name of some plugin that is listed in the mysql.plugin\ntable. The server executes the plugin\'s deinitialization function and removes\nthe row for the plugin from the mysql.plugin table, so that subsequent server\nrestarts will not load and initialize the plugin. UNINSTALL PLUGIN does not\nremove the plugin\'s shared library file.\n\nTo use UNINSTALL PLUGIN, you must have the DELETE privilege for the\nmysql.plugin table.\n\nMariaDB starting with 10.4.0\n----------------------------\n\nIF EXISTS\n---------\n\nIf the IF EXISTS clause is used, MariaDB will return a note instead of an\nerror if the plugin does not exist. See SHOW WARNINGS.\n\nExamples\n--------\n\nUNINSTALL PLUGIN example;\n\nFrom MariaDB 10.4.0:\n\nUNINSTALL PLUGIN IF EXISTS example;\nQuery OK, 0 rows affected (0.099 sec)\n\nUNINSTALL PLUGIN IF EXISTS example;\nQuery OK, 0 rows affected, 1 warning (0.000 sec)\n\nSHOW WARNINGS;\n+-------+------+-------------------------------+\n| Level | Code | Message |\n+-------+------+-------------------------------+\n| Note | 1305 | PLUGIN example does not exist |\n+-------+------+-------------------------------+\n\nURL: https://mariadb.com/kb/en/uninstall-plugin/','','https://mariadb.com/kb/en/uninstall-plugin/'), (77,'INSTALL SONAME',5,'Syntax\n------\n\nINSTALL SONAME \'plugin_library\'\n\nDescription\n-----------\n\nThis statement is a variant of INSTALL PLUGIN. It installs all plugins from a\ngiven plugin_library. See INSTALL PLUGIN for details.\n\nplugin_library is the name of the shared library that contains the plugin\ncode. The file name extension (for example, libmyplugin.so or libmyplugin.dll)\ncan be omitted (which makes the statement look the same on all architectures).\n\nThe shared library must be located in the plugin directory (that is, the\ndirectory named by the plugin_dir system variable). The library must be in the\nplugin directory itself, not in a subdirectory. By default, plugin_dir is\nplugin directory under the directory named by the pkglibdir configuration\nvariable, but it can be changed by setting the value of plugin_dir at server\nstartup. For example, set its value in a my.cnf file:\n\n[mysqld]\nplugin_dir=/path/to/plugin/directory\nIf the value of plugin_dir is a relative path name, it is taken to be relative\nto the MySQL base directory (the value of the basedir system variable).\n\nINSTALL SONAME adds one or more lines to the mysql.plugin table that describes\nthe plugin. This table contains the plugin name and library file name.\n\nINSTALL SONAME causes the server to read option (my.cnf) files just as during\nserver startup. This enables the plugin to pick up any relevant options from\nthose files. It is possible to add plugin options to an option file even\nbefore loading a plugin (if the loose prefix is used). It is also possible to\nuninstall a plugin, edit my.cnf, and install the plugin again. Restarting the\nplugin this way enables it to the new option values without a server restart.\n\nINSTALL SONAME also loads and initializes the plugin code to make the plugin\navailable for use. A plugin is initialized by executing its initialization\nfunction, which handles any setup that the plugin must perform before it can\nbe used.\n\nTo use INSTALL SONAME, you must have the INSERT privilege for the mysql.plugin\ntable.\n\nAt server startup, the server loads and initializes any plugin that is listed\nin the mysql.plugin table. This means that a plugin is installed with INSTALL\nSONAME only once, not every time the server starts. Plugin loading at startup\ndoes not occur if the server is started with the --skip-grant-tables option.\n\nWhen the server shuts down, it executes the de-initialization function for\neach plugin that is loaded so that the plugin has a chance to perform any\nfinal cleanup.\n\nIf you need to load plugins for a single server startup when the\n--skip-grant-tables option is given (which tells the server not to read system\ntables), use the --plugin-load mysqld option.\n\nIf you need to install only one plugin from a library, use the INSTALL PLUGIN\nstatement.\n\nExamples\n--------\n\nTo load the XtraDB storage engine and all of its information_schema tables\nwith one statement, use\n\nINSTALL SONAME \'ha_xtradb\';\n\nThis statement can be used instead of INSTALL PLUGIN even when the library\ncontains only one plugin:\n\nINSTALL SONAME \'ha_sequence\';\n\nURL: https://mariadb.com/kb/en/install-soname/','','https://mariadb.com/kb/en/install-soname/'), (75,'INSTALL PLUGIN',5,'Syntax\n------\n\nINSTALL PLUGIN [IF NOT EXISTS] plugin_name SONAME \'plugin_library\'\n\nDescription\n-----------\n\nThis statement installs an individual plugin from the specified library. To\ninstall the whole library (which could be required), use INSTALL SONAME. See\nalso Installing a Plugin.\n\nplugin_name is the name of the plugin as defined in the plugin declaration\nstructure contained in the library file. Plugin names are not case sensitive.\nFor maximal compatibility, plugin names should be limited to ASCII letters,\ndigits, and underscore, because they are used in C source files, shell command\nlines, M4 and Bourne shell scripts, and SQL environments.\n\nplugin_library is the name of the shared library that contains the plugin\ncode. The file name extension can be omitted (which makes the statement look\nthe same on all architectures).\n\nThe shared library must be located in the plugin directory (that is, the\ndirectory named by the plugin_dir system variable). The library must be in the\nplugin directory itself, not in a subdirectory. By default, plugin_dir is\nplugin directory under the directory named by the pkglibdir configuration\nvariable, but it can be changed by setting the value of plugin_dir at server\nstartup. For example, set its value in a my.cnf file:\n\n[mysqld]\nplugin_dir=/path/to/plugin/directory\nIf the value of plugin_dir is a relative path name, it is taken to be relative\nto the MySQL base directory (the value of the basedir system variable).\n\nINSTALL PLUGIN adds a line to the mysql.plugin table that describes the\nplugin. This table contains the plugin name and library file name.\n\nINSTALL PLUGIN causes the server to read option (my.cnf) files just as during\nserver startup. This enables the plugin to pick up any relevant options from\nthose files. It is possible to add plugin options to an option file even\nbefore loading a plugin (if the loose prefix is used). It is also possible to\nuninstall a plugin, edit my.cnf, and install the plugin again. Restarting the\nplugin this way enables it to the new option values without a server restart.\n\nINSTALL PLUGIN also loads and initializes the plugin code to make the plugin\navailable for use. A plugin is initialized by executing its initialization\nfunction, which handles any setup that the plugin must perform before it can\nbe used.\n\nTo use INSTALL PLUGIN, you must have the INSERT privilege for the mysql.plugin\ntable.\n\nAt server startup, the server loads and initializes any plugin that is listed\nin the mysql.plugin table. This means that a plugin is installed with INSTALL\nPLUGIN only once, not every time the server starts. Plugin loading at startup\ndoes not occur if the server is started with the --skip-grant-tables option.\n\nWhen the server shuts down, it executes the de-initialization function for\neach plugin that is loaded so that the plugin has a chance to perform any\nfinal cleanup.\n\nIf you need to load plugins for a single server startup when the\n--skip-grant-tables option is given (which tells the server not to read system\ntables), use the --plugin-load mysqld option.\n\nMariaDB starting with 10.4.0\n----------------------------\n\nIF NOT EXISTS\n-------------\n\nWhen the IF NOT EXISTS clause is used, MariaDB will return a note instead of\nan error if the specified plugin already exists. See SHOW WARNINGS.\n\nExamples\n--------\n\nINSTALL PLUGIN sphinx SONAME \'ha_sphinx.so\';\n\nThe extension can also be omitted:\n\nINSTALL PLUGIN innodb SONAME \'ha_xtradb\';\n\nFrom MariaDB 10.4.0:\n\nINSTALL PLUGIN IF NOT EXISTS example SONAME \'ha_example\';\nQuery OK, 0 rows affected (0.104 sec)\n\nINSTALL PLUGIN IF NOT EXISTS example SONAME \'ha_example\';\nQuery OK, 0 rows affected, 1 warning (0.000 sec)\n\nSHOW WARNINGS;\n+-------+------+------------------------------------+\n| Level | Code | Message |\n+-------+------+------------------------------------+\n| Note | 1968 | Plugin \'example\' already installed |\n+-------+------+------------------------------------+\n\nURL: https://mariadb.com/kb/en/install-plugin/','','https://mariadb.com/kb/en/install-plugin/'), (78,'UNINSTALL SONAME',5,'Syntax\n------\n\nUNINSTALL SONAME [IF EXISTS] \'plugin_library\'\n\nDescription\n-----------\n\nThis statement is a variant of UNINSTALL PLUGIN statement, that removes all\nplugins belonging to a specified plugin_library. See UNINSTALL PLUGIN for\ndetails.\n\nplugin_library is the name of the shared library that contains the plugin\ncode. The file name extension (for example, libmyplugin.so or libmyplugin.dll)\ncan be omitted (which makes the statement look the same on all architectures).\n\nTo use UNINSTALL SONAME, you must have the DELETE privilege for the\nmysql.plugin table.\n\nMariaDB starting with 10.4.0\n----------------------------\n\nIF EXISTS\n---------\n\nIf the IF EXISTS clause is used, MariaDB will return a note instead of an\nerror if the plugin library does not exist. See SHOW WARNINGS.\n\nExamples\n--------\n\nTo uninstall the XtraDB plugin and all of its information_schema tables with\none statement, use\n\nUNINSTALL SONAME \'ha_xtradb\';\n\nFrom MariaDB 10.4.0:\n\nUNINSTALL SONAME IF EXISTS \'ha_example\';\nQuery OK, 0 rows affected (0.099 sec)\n\nUNINSTALL SONAME IF EXISTS \'ha_example\';\nQuery OK, 0 rows affected, 1 warning (0.000 sec)\n\nSHOW WARNINGS;\n+-------+------+-------------------------------------+\n| Level | Code | Message |\n+-------+------+-------------------------------------+\n| Note | 1305 | SONAME ha_example.so does not exist |\n+-------+------+-------------------------------------+\n\nURL: https://mariadb.com/kb/en/uninstall-soname/','','https://mariadb.com/kb/en/uninstall-soname/'), (79,'Plugin Overview',5,'Plugins are server components that enhance MariaDB in some way. These can be\nanything from new storage engines, plugins for enhancing full-text parsing, or\neven small enhancements, such as a plugin to get a timestamp as an integer.\n\nQuerying Plugin Information\n---------------------------\n\nThere are a number of ways to see which plugins are currently active.\n\nA server almost always has a large number of active plugins, because the\nserver contains a large number of built-in plugins, which are active by\ndefault and cannot be uninstalled.\n\nQuerying Plugin Information with SHOW PLUGINS\n---------------------------------------------\n\nThe SHOW PLUGINS statement can be used to query information about all active\nplugins.\n\nFor example:\n\nSHOW PLUGINS\\G;\n********************** 1. row **********************\n Name: binlog\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n********************** 2. row **********************\n Name: mysql_native_password\n Status: ACTIVE\n Type: AUTHENTICATION\nLibrary: NULL\nLicense: GPL\n********************** 3. row **********************\n Name: mysql_old_password\n Status: ACTIVE\n Type: AUTHENTICATION\nLibrary: NULL\nLicense: GPL\n...\n\nIf a plugin\'s Library column has a NULL value, then the plugin is built-in,\nand it cannot be uninstalled.\n\nQuerying Plugin Information with information_schema.PLUGINS\n-----------------------------------------------------------\n\nThe information_schema.PLUGINS table can be queried to get more detailed\ninformation about plugins.\n\nFor example:\n\nSELECT * FROM information_schema.PLUGINS\\G\n...\n*************************** 6. row ***************************\n PLUGIN_NAME: CSV\n PLUGIN_VERSION: 1.0\n PLUGIN_STATUS: ACTIVE\n PLUGIN_TYPE: STORAGE ENGINE\n PLUGIN_TYPE_VERSION: 100003.0\n PLUGIN_LIBRARY: NULL\nPLUGIN_LIBRARY_VERSION: NULL\n PLUGIN_AUTHOR: Brian Aker, MySQL AB\n PLUGIN_DESCRIPTION: CSV storage engine\n PLUGIN_LICENSE: GPL\n LOAD_OPTION: FORCE\n PLUGIN_MATURITY: Stable\n PLUGIN_AUTH_VERSION: 1.0\n*************************** 7. row ***************************\n PLUGIN_NAME: MEMORY\n PLUGIN_VERSION: 1.0\n PLUGIN_STATUS: ACTIVE\n PLUGIN_TYPE: STORAGE ENGINE\n PLUGIN_TYPE_VERSION: 100003.0\n PLUGIN_LIBRARY: NULL\nPLUGIN_LIBRARY_VERSION: NULL\n PLUGIN_AUTHOR: MySQL AB\n PLUGIN_DESCRIPTION: Hash based, stored in memory, useful for temporary\ntables\n PLUGIN_LICENSE: GPL\n LOAD_OPTION: FORCE\n PLUGIN_MATURITY: Stable\n PLUGIN_AUTH_VERSION: 1.0\n...\n\nIf a plugin\'s PLUGIN_LIBRARY column has the NULL value, then the plugin is\nbuilt-in, and it cannot be uninstalled.\n\nQuerying Plugin Information with mysql.plugin\n---------------------------------------------\n\nThe mysql.plugin table can be queried to get information about installed\nplugins.\n\nThis table only contains information about plugins that have been installed\nvia the following methods:\n\n* The INSTALL SONAME statement.\n* The INSTALL PLUGIN statement.\n* The mariadb-plugin utility.\n\nThis table does not contain information about:\n\n* Built-in plugins.\n* Plugins loaded with the --plugin-load-add option.\n* Plugins loaded with the --plugin-load option.\n\nThis table only contains enough information to reload the plugin when the\nserver is restarted, which means it only contains the plugin name and the\nplugin library.\n\nFor example:\n\nSELECT * FROM mysql.plugin;\n\n+------+------------+\n| name | dl |\n+------+------------+\n| PBXT | libpbxt.so |\n+------+------------+\n\nInstalling a Plugin\n-------------------\n\nThere are three primary ways to install a plugin:\n\n* A plugin can be installed dynamically with an SQL statement.\n* A plugin can be installed with a mariadbd option, but it requires a server\nrestart.\n* A plugin can be installed with the mariadb-plugin utility, while the server\nis completely offline.\n\nWhen you are installing a plugin, you also have to ensure that:\n\n* The server\'s plugin directory is properly configured, and the plugin\'s\nlibrary is in the plugin directory.\n* The server\'s minimum plugin maturity is properly configured, and the plugin\nis mature enough to be installed.\n\nInstalling a Plugin Dynamically\n-------------------------------\n\nA plugin can be installed dynamically by executing either the INSTALL SONAME\nor the INSTALL PLUGIN statement.\n\nIf a plugin is installed with one of these statements, then a record will be\nadded to the mysql.plugins table for the plugin. This means that the plugin\nwill automatically be loaded every time the server restarts, unless\nspecifically uninstalled or deactivated.\n\nInstalling a Plugin with INSTALL SONAME\n---------------------------------------\n\nYou can install a plugin dynamically by executing the INSTALL SONAME\nstatement. INSTALL SONAME installs all plugins from the given plugin library.\nThis could be required for some plugin libraries.\n\nFor example, to install all plugins in the server_audit plugin library (which\nis currently only the server_audit audit plugin), you could execute the\nfollowing:\n\nINSTALL SONAME \'server_audit\';\n\nInstalling a Plugin with INSTALL PLUGIN\n---------------------------------------\n\nYou can install a plugin dynamically by executing the INSTALL PLUGIN\nstatement. INSTALL PLUGIN installs a single plugin from the given plugin\nlibrary.\n\nFor example, to install the server_audit audit plugin from the server_audit\nplugin library, you could execute the following:\n\nINSTALL PLUGIN server_audit SONAME \'server_audit\';\n\nInstalling a Plugin with Plugin Load Options\n--------------------------------------------\n\nA plugin can be installed with a mariadbd option by providing either the\n--plugin-load-add or the --plugin-load option.\n\nIf a plugin is installed with one of these options, then a record will not be\nadded to the mysql.plugins table for the plugin. This means that if the server\nis restarted without the same option set, then the plugin will not\nautomatically be loaded.\n\nInstalling a Plugin with --plugin-load-add\n------------------------------------------\n\nYou can install a plugin with the --plugin-load-add option by specifying the\noption as a command-line argument to mariadbd or by specifying the option in a\nrelevant server option group in an option file.\n\nThe --plugin-load-add option uses the following format:\n\n* Plugins can be specified in the format name=library, where name is the\nplugin name and library is the plugin library. This format installs a single\nplugin from the given plugin library.\n* Plugins can also be specified in the format library, where library is the\nplugin library. This format installs all plugins from the given plugin library.\n* Multiple plugins can be specified by separating them with semicolons.\n\nFor example, to install all plugins in the server_audit plugin library (which\nis currently only the server_audit audit plugin) and also the ed25519\nauthentication plugin from the auth_ed25519 plugin library, you could set the\noption to the following values on the command-line:\n\n$ mariadbd --user=mysql --plugin-load-add=\'server_audit\'\n--plugin-load-add=\'ed25519=auth_ed25519\'\n\nYou could also set the option to the same values in an option file:\n\n[mariadb]\n...\nplugin_load_add = server_audit\nplugin_load_add = ed25519=auth_ed25519\n\nSpecial care must be taken when specifying both the --plugin-load option and\nthe --plugin-load-add option together. The --plugin-load option resets the\nplugin load list, and this can cause unexpected problems if you are not aware.\nThe --plugin-load-add option does not reset the plugin load list, so it is\nmuch safer to use. See Specifying Multiple Plugin Load Options for more\ninformation.\n\nInstalling a Plugin with --plugin-load\n--------------------------------------\n\nYou can install a plugin with the --plugin-load option by specifying the\noption as a command-line argument to mariadbd or by specifying the option in a\nrelevant server option group in an option file.\n\nThe --plugin-load option uses the following format:\n\n* Plugins can be specified in the format name=library, where name is the\nplugin name and library is the plugin library. This format installs a single\nplugin from the given plugin library.\n* Plugins can also be specified in the format library, where library is the\nplugin library. This format installs all plugins from the given plugin library.\n* Multiple plugins can be specified by separating them with semicolons.\n\nFor example, to install all plugins in the server_audit plugin library (which\nis currently only the server_audit audit plugin) and also the ed25519\nauthentication plugin from the auth_ed25519 plugin library, you could set the\noption to the following values on the command-line:\n\n$ mariadbd --user=mysql --plugin-load=\'server_audit;ed25519=auth_ed25519\'\n\nYou could also set the option to the same values in an option file:\n\n[mariadb]\n...\nplugin_load = server_audit;ed25519=auth_ed25519\n\nSpecial care must be taken when specifying the --plugin-load option multiple\ntimes, or when specifying both the --plugin-load option and the\n--plugin-load-add option together. The --plugin-load option resets the plugin\nload list, and this can cause unexpected problems if you are not aware. The\n--plugin-load-add option does not reset the plugin load list, so it is much\nsafer to use. See Specifying Multiple Plugin Load Options for more information.\n\nSpecifying Multiple Plugin Load Options\n---------------------------------------\n\nSpecial care must be taken when specifying the --plugin-load option multiple\ntimes, or when specifying both the --plugin-load option and the\n--plugin-load-add option. The --plugin-load option resets the plugin load\nlist, and this can cause unexpected problems if you are not aware. The\n--plugin-load-add option does not reset the plugin load list, so it is much\nsafer to use.\n\nThis can have the following consequences:\n\n* If the --plugin-load option is specified multiple times, then only the last\ninstance will have any effect. For example, in the following case, the first\ninstance of the option is reset:\n\n[mariadb]\n...\nplugin_load = server_audit\nplugin_load = ed25519=auth_ed25519\n\n* If the --plugin-load option is specified after the --plugin-load-add option,\nthen it will also reset the changes made by that option. For example, in the\nfollowing case, the --plugin-load-add option does not do anything, because the\nsubsequent --plugin-load option resets the plugin load list:\n\n[mariadb]\n...\nplugin_load_add = server_audit\nplugin_load = ed25519=auth_ed25519\n\n* In contrast, if the --plugin-load option is specified before the\n--plugin-load-add option, then it will work fine, because the\n--plugin-load-add option does not reset the plugin load list. For example, in\nthe following case, both plugins are properly loaded:\n\n[mariadb]\n...\nplugin_load = server_audit\nplugin_load_add = ed25519=auth_ed25519\n\nInstalling a Plugin with mariadb-plugin\n---------------------------------------\n\nA plugin can be installed with the mariadb-plugin utility if the server is\ncompletely offline.\n\nThe syntax is:\n\nmariadb-plugin [options] ENABLE|DISABLE\n\nFor example, to install the server_audit audit plugin, you could execute the\nfollowing:\n\nmariadb-plugin server_audit ENABLE\n\nIf a plugin is installed with this utility, then a record will be added to the\nmysql.plugins table for the plugin. This means that the plugin will\nautomatically be loaded every time the server restarts, unless specifically\nuninstalled or deactivated.\n\nConfiguring the Plugin Directory\n--------------------------------\n\nWhen a plugin is being installed, the server looks for the plugin\'s library in\nthe server\'s plugin directory. This directory is configured by the plugin_dir\nsystem variable. This can be specified as a command-line argument to mariadbd\nor it can be specified in a relevant server option group in an option file.\nFor example:\n\n[mariadb]\n...\nplugin_dir = /usr/lib64/mysql/plugin\n\nConfiguring the Minimum Plugin Maturity\n---------------------------------------\n\nWhen a plugin is being installed, the server compares the plugin\'s maturity\nlevel against the server\'s minimum allowed plugin maturity. This can help\nprevent users from using unstable plugins on production servers. This minimum\nplugin maturity is configured by the plugin_maturity system variable. This can\nbe specified as a command-line argument to mariadbd or it can be specified in\na relevant server option group in an option file. For example:\n\n[mariadb]\n...\nplugin_maturity = stable\n\nConfiguring Plugin Activation at Server Startup\n-----------------------------------------------\n\nA plugin will be loaded by default when the server starts if:\n\n* The plugin was installed with the INSTALL SONAME statement.\n* The plugin was installed with the INSTALL PLUGIN statement.\n* The plugin was installed with the mariadb-plugin utility.\n* The server is configured to load the plugin with the --plugin-load-add\noption.\n* The server is configured to load the plugin with the --plugin-load option.\n\nThis behavior can be changed with special options that take the form\n--plugin-name. For example, for the server_audit audit plugin, the special\noption is called --server-audit.\n\nThe possible values for these special options are:\n\n+---------------------------------------+------------------------------------+\n| Option Value | Description |\n+---------------------------------------+------------------------------------+\n| OFF | Disables the plugin without |\n| | removing it from the |\n| | mysql.plugins table. |\n+---------------------------------------+------------------------------------+\n| ON | Enables the plugin. If the plugin |\n| | cannot be initialized, then the |\n| | server will still continue |\n| | starting up, but the plugin will |\n| | be disabled. |\n+---------------------------------------+------------------------------------+\n| FORCE | Enables the plugin. If the plugin |\n| | cannot be initialized, then the |\n| | server will fail to start with an |\n| | error. |\n+---------------------------------------+------------------------------------+\n| FORCE_PLUS_PERMANENT | Enables the plugin. If the plugin |\n| | cannot be initialized, then the |\n| | server will fail to start with an |\n| | error. In addition, the plugin |\n| | cannot be uninstalled with |\n| | UNINSTALL SONAME or UNINSTALL |\n| | PLUGIN while the server is |\n| | running. |\n+---------------------------------------+------------------------------------+\n\nA plugin\'s status can be found by looking at the PLUGIN_STATUS column of the\ninformation_schema.PLUGINS table.\n\nUninstalling Plugins\n--------------------\n\nPlugins that are found in the mysql.plugin table, that is those that were\ninstalled with INSTALL SONAME, INSTALL PLUGIN or mariadb-plugin can be\nuninstalled in one of two ways:\n\n* The UNINSTALL SONAME or the UNINSTALL PLUGIN statement while the server is\nrunning\n* With mariadb-plugin while the server is offline.\n\nPlugins that were enabled as a --plugin-load option do not need to be\nuninstalled. If --plugin-load is omitted the next time the server starts, or\nthe plugin is not listed as one of the --plugin-load entries, the plugin will\nnot be loaded.\n\nUNINSTALL PLUGIN uninstalls a single installed plugin, while UNINSTALL SONAME\nuninstalls all plugins belonging to a given library.\n\nURL: https://mariadb.com/kb/en/plugin-overview/','','https://mariadb.com/kb/en/plugin-overview/'), (80,'MBR Definition',6,'Description\n-----------\n\nThe MBR (Minimum Bounding Rectangle), or Envelope is the bounding geometry,\nformed by the minimum and maximum (X,Y) coordinates:\n\nExamples\n--------\n\n((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n\nURL: https://mariadb.com/kb/en/mbr-definition/','','https://mariadb.com/kb/en/mbr-definition/'), (81,'MBRContains',6,'Syntax\n------\n\nMBRContains(g1,g2)\n\nDescription\n-----------\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangle of g1\ncontains the Minimum Bounding Rectangle of g2. This tests the opposite\nrelationship as MBRWithin().\n\nExamples\n--------\n\nSET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\n\nSET @g2 = GeomFromText(\'Point(1 1)\');\n\nSELECT MBRContains(@g1,@g2), MBRContains(@g2,@g1);\n+----------------------+----------------------+\n| MBRContains(@g1,@g2) | MBRContains(@g2,@g1) |\n+----------------------+----------------------+\n| 1 | 0 |\n+----------------------+----------------------+\n\nURL: https://mariadb.com/kb/en/mbrcontains/','','https://mariadb.com/kb/en/mbrcontains/'), (83,'MBREqual',6,'Syntax\n------\n\nMBREqual(g1,g2)\n\nDescription\n-----------\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangles of the two\ngeometries g1 and g2 are the same.\n\nExamples\n--------\n\nSET @g1=GEOMFROMTEXT(\'LINESTRING(0 0, 1 2)\');\nSET @g2=GEOMFROMTEXT(\'POLYGON((0 0, 0 2, 1 2, 1 0, 0 0))\');\nSELECT MbrEqual(@g1,@g2);\n+-------------------+\n| MbrEqual(@g1,@g2) |\n+-------------------+\n| 1 |\n+-------------------+\n\nSET @g1=GEOMFROMTEXT(\'LINESTRING(0 0, 1 3)\');\nSET @g2=GEOMFROMTEXT(\'POLYGON((0 0, 0 2, 1 4, 1 0, 0 0))\');\nSELECT MbrEqual(@g1,@g2);\n+-------------------+\n| MbrEqual(@g1,@g2) |\n+-------------------+\n| 0 |\n+-------------------+\n\nURL: https://mariadb.com/kb/en/mbrequal/','','https://mariadb.com/kb/en/mbrequal/'), (82,'MBRDisjoint',6,'Syntax\n------\n\nMBRDisjoint(g1,g2)\n\nDescription\n-----------\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangles of the two\ngeometries g1 and g2 are disjoint. Two geometries are disjoint if they do not\nintersect, that is touch or overlap.\n\nExamples\n--------\n\nSET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nSET @g2 = GeomFromText(\'Polygon((4 4,4 7,7 7,7 4,4 4))\');\nSELECTmbrdisjoint(@g1,@g2);\n+----------------------+\n| mbrdisjoint(@g1,@g2) |\n+----------------------+\n| 1 |\n+----------------------+\n\nSET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nSET @g2 = GeomFromText(\'Polygon((3 3,3 6,6 6,6 3,3 3))\');\nSELECT mbrdisjoint(@g1,@g2);\n+----------------------+\n| mbrdisjoint(@g1,@g2) |\n+----------------------+\n| 0 |\n+----------------------+\n\nURL: https://mariadb.com/kb/en/mbrdisjoint/','','https://mariadb.com/kb/en/mbrdisjoint/'), (84,'MBRIntersects',6,'Syntax\n------\n\nMBRIntersects(g1,g2)\n\nDescription\n-----------\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangles of the two\ngeometries g1 and g2 intersect.\n\nExamples\n--------\n\nSET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nSET @g2 = GeomFromText(\'Polygon((3 3,3 6,6 6,6 3,3 3))\');\nSELECT mbrintersects(@g1,@g2);\n+------------------------+\n| mbrintersects(@g1,@g2) |\n+------------------------+\n| 1 |\n+------------------------+\n\nSET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nSET @g2 = GeomFromText(\'Polygon((4 4,4 7,7 7,7 4,4 4))\');\nSELECT mbrintersects(@g1,@g2);\n+------------------------+\n| mbrintersects(@g1,@g2) |\n+------------------------+\n| 0 |\n+------------------------+\n\nURL: https://mariadb.com/kb/en/mbrintersects/','','https://mariadb.com/kb/en/mbrintersects/'), (85,'MBROverlaps',6,'Syntax\n------\n\nMBROverlaps(g1,g2)\n\nDescription\n-----------\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangles of the two\ngeometries g1 and g2 overlap. The term spatially overlaps is used if two\ngeometries intersect and their intersection results in a geometry of the same\ndimension but not equal to either of the given geometries.\n\nExamples\n--------\n\nSET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nSET @g2 = GeomFromText(\'Polygon((4 4,4 7,7 7,7 4,4 4))\');\nSELECT mbroverlaps(@g1,@g2);\n+----------------------+\n| mbroverlaps(@g1,@g2) |\n+----------------------+\n| 0 |\n+----------------------+\n\nSET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nSET @g2 = GeomFromText(\'Polygon((3 3,3 6,6 6,6 3,3 3))\');\nSELECT mbroverlaps(@g1,@g2);\n+----------------------+\n| mbroverlaps(@g1,@g2) |\n+----------------------+\n| 0 |\n+----------------------+\n\nSET @g1 = GeomFromText(\'Polygon((0 0,0 4,4 4,4 0,0 0))\');\nSET @g2 = GeomFromText(\'Polygon((3 3,3 6,6 6,6 3,3 3))\');\nSELECT mbroverlaps(@g1,@g2);\n+----------------------+\n| mbroverlaps(@g1,@g2) |\n+----------------------+\n| 1 |\n+----------------------+\n\nURL: https://mariadb.com/kb/en/mbroverlaps/','','https://mariadb.com/kb/en/mbroverlaps/'), (86,'MBRTouches',6,'Syntax\n------\n\nMBRTouches(g1,g2)\n\nDescription\n-----------\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangles of the two\ngeometries g1 and g2 touch. Two geometries spatially touch if the interiors of\nthe geometries do not intersect, but the boundary of one of the geometries\nintersects either the boundary or the interior of the other.\n\nExamples\n--------\n\nSET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nSET @g2 = GeomFromText(\'Polygon((4 4,4 7,7 7,7 4,4 4))\');\nSELECT mbrtouches(@g1,@g2);\n+---------------------+\n| mbrtouches(@g1,@g2) |\n+---------------------+\n| 0 |\n+---------------------+\n\nSET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nSET @g2 = GeomFromText(\'Polygon((3 3,3 6,6 6,6 3,3 3))\');\nSELECT mbrtouches(@g1,@g2);\n+---------------------+\n| mbrtouches(@g1,@g2) |\n+---------------------+\n| 1 |\n+---------------------+\n\nSET @g1 = GeomFromText(\'Polygon((0 0,0 4,4 4,4 0,0 0))\');\nSET @g2 = GeomFromText(\'Polygon((3 3,3 6,6 6,6 3,3 3))\');\nSELECT mbrtouches(@g1,@g2);\n+---------------------+\n| mbrtouches(@g1,@g2) |\n+---------------------+\n| 0 |\n+---------------------+\n\nURL: https://mariadb.com/kb/en/mbrtouches/','','https://mariadb.com/kb/en/mbrtouches/'), (87,'MBRWithin',6,'Syntax\n------\n\nMBRWithin(g1,g2)\n\nDescription\n-----------\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangle of g1 is\nwithin the Minimum Bounding Rectangle of g2. This tests the opposite\nrelationship as MBRContains().\n\nExamples\n--------\n\nSET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nSET @g2 = GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nSELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+--------------------+\n| MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) |\n+--------------------+--------------------+\n| 1 | 0 |\n+--------------------+--------------------+\n\nURL: https://mariadb.com/kb/en/mbrwithin/','','https://mariadb.com/kb/en/mbrwithin/'), (91,'NULLIF',7,'Syntax\n------\n\nNULLIF(expr1,expr2)\n\nDescription\n-----------\n\nReturns NULL if expr1 = expr2 is true, otherwise returns expr1. This is the\nsame as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END.\n\nExamples\n--------\n\nSELECT NULLIF(1,1);\n+-------------+\n| NULLIF(1,1) |\n+-------------+\n| NULL |\n+-------------+\n\nSELECT NULLIF(1,2);\n+-------------+\n| NULLIF(1,2) |\n+-------------+\n| 1 |\n+-------------+\n\nURL: https://mariadb.com/kb/en/nullif/','','https://mariadb.com/kb/en/nullif/'), (92,'NVL',7,'MariaDB starting with 10.3\n--------------------------\nFrom MariaDB 10.3, NVL is a synonym for IFNULL.\n\nURL: https://mariadb.com/kb/en/nvl/','','https://mariadb.com/kb/en/nvl/'), (93,'NVL2',7,'MariaDB starting with 10.3\n--------------------------\nThe NLV2 function was introduced in MariaDB 10.3.0.\n\nSyntax\n------\n\nNVL2(expr1,expr2,expr3)\n\nDescription\n-----------\n\nThe NVL2 function returns a value based on whether a specified expression is\nNULL or not. If expr1 is not NULL, then NVL2 returns expr2. If expr1 is NULL,\nthen NVL2 returns expr3.\n\nExamples\n--------\n\nSELECT NVL2(NULL,1,2);\n+----------------+\n| NVL2(NULL,1,2) |\n+----------------+\n| 2 |\n+----------------+\n\nSELECT NVL2(\'x\',1,2);\n+---------------+\n| NVL2(\'x\',1,2) |\n+---------------+\n| 1 |\n+---------------+\n\nURL: https://mariadb.com/kb/en/nvl2/','','https://mariadb.com/kb/en/nvl2/'), (102,'UNLOCK TABLES',8,'Syntax\n------\n\nUNLOCK TABLES\n\nDescription\n-----------\n\nUNLOCK TABLES explicitly releases any table locks held by the current session.\nSee LOCK TABLES for more information.\n\nIn addition to releasing table locks acquired by the LOCK TABLES statement,\nthe UNLOCK TABLES statement also releases the global read lock acquired by the\nFLUSH TABLES WITH READ LOCK statement. The FLUSH TABLES WITH READ LOCK\nstatement is very useful for performing backups. See FLUSH for more\ninformation about FLUSH TABLES WITH READ LOCK.\n\nURL: https://mariadb.com/kb/en/transactions-unlock-tables/','','https://mariadb.com/kb/en/transactions-unlock-tables/'), (104,'XA Transactions',8,'Overview\n--------\n\nThe MariaDB XA implementation is based on the X/Open CAE document Distributed\nTransaction Processing: The XA Specification. This document is published by\nThe Open Group and available at\nhttp://www.opengroup.org/public/pubs/catalog/c193.htm.\n\nXA transactions are designed to allow distributed transactions, where a\ntransaction manager (the application) controls a transaction which involves\nmultiple resources. Such resources are usually DBMSs, but could be resources\nof any type. The whole set of required transactional operations is called a\nglobal transaction. Each subset of operations which involve a single resource\nis called a local transaction. XA used a 2-phases commit (2PC). With the first\ncommit, the transaction manager tells each resource to prepare an effective\ncommit, and waits for a confirm message. The changes are not still made\neffective at this point. If any of the resources encountered an error, the\ntransaction manager will rollback the global transaction. If all resources\ncommunicate that the first commit is successful, the transaction manager can\nrequire a second commit, which makes the changes effective.\n\nIn MariaDB, XA transactions can only be used with storage engines that support\nthem. At least InnoDB, TokuDB, SPIDER and MyRocks support them. For InnoDB,\nuntil MariaDB 10.2, XA transactions can be disabled by setting the\ninnodb_support_xa server system variable to 0. From MariaDB 10.3, XA\ntransactions are always supported.\n\nLike regular transactions, XA transactions create metadata locks on accessed\ntables.\n\nXA transactions require REPEATABLE READ as a minimum isolation level. However,\ndistributed transactions should always use SERIALIZABLE.\n\nTrying to start more than one XA transaction at the same time produces a 1400\nerror (SQLSTATE \'XAE09\'). The same error is produced when attempting to start\nan XA transaction while a regular transaction is in effect. Trying to start a\nregular transaction while an XA transaction is in effect produces a 1399 error\n(SQLSTATE \'XAE07\').\n\nThe statements that cause an implicit COMMIT for regular transactions produce\na 1400 error (SQLSTATE \'XAE09\') if a XA transaction is in effect.\n\nInternal XA vs External XA\n--------------------------\n\nXA transactions are an overloaded term in MariaDB. If a storage engine is\nXA-capable, it can mean one or both of these:\n\n* It supports MariaDB\'s internal two-phase commit API. This is transparent to\nthe user. Sometimes this is called \"internal XA\", since MariaDB\'s internal\ntransaction coordinator log can handle coordinating these transactions.\n\n* It supports XA transactions, with the XA START, XA PREPARE, XA COMMIT, etc.\nstatements. Sometimes this is called \"external XA\", since it requires the use\nof an external transaction coordinator to use this feature properly.\n\nTransaction Coordinator Log\n---------------------------\n\nIf you have two or more XA-capable storage engines enabled, then a transaction\ncoordinator log must be available.\n\nThere are currently two implementations of the transaction coordinator log:\n\n* Binary log-based transaction coordinator log\n* Memory-mapped file-based transaction coordinator log\n\nIf the binary log is enabled on a server, then the server will use the binary\nlog-based transaction coordinator log. Otherwise, it will use the\nmemory-mapped file-based transaction coordinator log.\n\nSee Transaction Coordinator Log for more information.\n\nSyntax\n------\n\nXA {START|BEGIN} xid [JOIN|RESUME]\n\nXA END xid [SUSPEND [FOR MIGRATE]]\n\nXA PREPARE xid\n\nXA COMMIT xid [ONE PHASE]\n\nXA ROLLBACK xid\n\nXA RECOVER [FORMAT=[\'RAW\'|\'SQL\']]\n\nxid: gtrid [, bqual [, formatID ]]\n\nThe interface to XA transactions is a set of SQL statements starting with XA.\nEach statement changes a transaction\'s state, determining which actions it can\nperform. A transaction which does not exist is in the NON-EXISTING state.\n\nXA START (or BEGIN) starts a transaction and defines its xid (a transaction\nidentifier). The JOIN or RESUME keywords have no effect. The new transaction\nwill be in ACTIVE state.\n\nThe xid can have 3 components, though only the first one is mandatory. gtrid\nis a quoted string representing a global transaction identifier. bqual is a\nquoted string representing a local transaction identifier. formatID is an\nunsigned integer indicating the format used for the first two components; if\nnot specified, defaults to 1. MariaDB does not interpret in any way these\ncomponents, and only uses them to identify a transaction. xids of transactions\nin effect must be unique.\n\nXA END declares that the specified ACTIVE transaction is finished and it\nchanges its state to IDLE. SUSPEND [FOR MIGRATE] has no effect.\n\nXA PREPARE prepares an IDLE transaction for commit, changing its state to\nPREPARED. This is the first commit.\n\nXA COMMIT definitely commits and terminates a transaction which has already\nbeen PREPARED. If the ONE PHASE clause is specified, this statements performs\na 1-phase commit on an IDLE transaction.\n\nXA ROLLBACK rolls back and terminates an IDLE or PREPARED transaction.\n\nXA RECOVER shows information about all PREPARED transactions.\n\nWhen trying to execute an operation which is not allowed for the transaction\'s\ncurrent state, an error is produced:\n\nXA COMMIT \'test\' ONE PHASE;\nERROR 1399 (XAE07): XAER_RMFAIL: The command cannot be executed when global\ntransaction is in the ACTIVE state\n\nXA COMMIT \'test2\';\nERROR 1399 (XAE07): XAER_RMFAIL: The command cannot be executed when global\ntransaction is in the NON-EXISTING state\n\nXA RECOVER\n----------\n\nThe XA RECOVER statement shows information about all transactions which are in\nthe PREPARED state. It does not matter which connection created the\ntransaction: if it has been PREPARED, it appears. But this does not mean that\na connection can commit or rollback a transaction which was started by another\nconnection. Note that transactions using a 1-phase commit are never in the\nPREPARED state, so they cannot be shown by XA RECOVER.\n\nXA RECOVER produces four columns:\n\nXA RECOVER;\n+----------+--------------+--------------+------+\n| formatID | gtrid_length | bqual_length | data |\n+----------+--------------+--------------+------+\n| 1 | 4 | 0 | test |\n+----------+--------------+--------------+------+\n\nMariaDB starting with 10.3.3\n----------------------------\nYou can use XA RECOVER FORMAT=\'SQL\' to get the data in a human readable form\nthat can be directly copy-pasted into XA COMMIT or XA ROLLBACK. This is\nparticularly useful for binary xid generated by some transaction coordinators.\n\nformatID is the formatID part of xid.\n\ndata are the gtrid and bqual parts of xid, concatenated.\n\ngtrid_length and bqual_length are the lengths of gtrid and bqual, respectevely.\n\nExamples\n--------\n\n2-phases commit:\n\nXA START \'test\';\n\nINSERT INTO t VALUES (1,2);\n\nXA END \'test\';\n\nXA PREPARE \'test\';\n\nXA COMMIT \'test\';\n\n1-phase commit:\n\nXA START \'test\';\n\nINSERT INTO t VALUES (1,2);\n\nXA END \'test\';\n\nXA COMMIT \'test\' ONE PHASE;\n\nHuman-readable:\n\nxa start \'12\\r34\\t67\\v78\', \'abc\\ndef\', 3;\n\ninsert t1 values (40);\n\nxa end \'12\\r34\\t67\\v78\', \'abc\\ndef\', 3;\n\nxa prepare \'12\\r34\\t67\\v78\', \'abc\\ndef\', 3;\n\nxa recover format=\'RAW\';\n+----------+--------------+--------------+--------------------+\n| formatID | gtrid_length | bqual_length | data |\n+----------+--------------+--------------+--------------------+\n34 67v78abc 11 | 7 | 12\ndef |\n+----------+--------------+--------------+--------------------+\n\nxa recover format=\'SQL\';\n+----------+--------------+--------------+-------------------------------------\n---------+\n| formatID | gtrid_length | bqual_length | data \n |\n+----------+--------------+--------------+-------------------------------------\n---------+\n| 3 | 11 | 7 |\nX\'31320d3334093637763738\',X\'6162630a646566\',3 |\n+----------+--------------+--------------+-------------------------------------\n---------+\n\nxa rollback X\'31320d3334093637763738\',X\'6162630a646566\',3;\n\nKnown Issues\n------------\n\nMariaDB Galera Cluster\n----------------------\n\nMariaDB Galera Cluster does not support XA transactions.\n\nHowever, MariaDB Galera Cluster builds include a built-in plugin called wsrep.\nPrior to MariaDB 10.4.3, this plugin was internally considered an XA-capable\nstorage engine. Consequently, these MariaDB Galera Cluster builds have\nmultiple XA-capable storage engines by default, even if the only \"real\"\nstorage engine that supports external XA transactions enabled on these builds\nby default is InnoDB. Therefore, when using one these builds MariaDB would be\nforced to use a transaction coordinator log by default, which could have\nperformance implications.\n\nSee Transaction Coordinator Log Overview: MariaDB Galera Cluster for more\ninformation.\n\nURL: https://mariadb.com/kb/en/xa-transactions/','','https://mariadb.com/kb/en/xa-transactions/'), (105,'CREATE USER',10,'Syntax\n------\n\nCREATE [OR REPLACE] USER [IF NOT EXISTS] \n user_specification [,user_specification ...] \n [REQUIRE {NONE | tls_option [[AND] tls_option ...] }]\n [WITH resource_option [resource_option ...] ]\n [lock_option] [password_option]\n\nuser_specification:\n username [authentication_option]\n\nauthentication_option:\n IDENTIFIED BY \'password\'\n | IDENTIFIED BY PASSWORD \'password_hash\'\n | IDENTIFIED {VIA|WITH} authentication_rule [OR authentication_rule ...]\n\nauthentication_rule:\n authentication_plugin\n | authentication_plugin {USING|AS} \'authentication_string\'\n | authentication_plugin {USING|AS} PASSWORD(\'password\')\n\ntls_option:\n SSL\n | X509\n | CIPHER \'cipher\'\n | ISSUER \'issuer\'\n | SUBJECT \'subject\'\n\nresource_option:\n MAX_QUERIES_PER_HOUR count\n | MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n | MAX_STATEMENT_TIME time\n\npassword_option:\n PASSWORD EXPIRE\n | PASSWORD EXPIRE DEFAULT\n | PASSWORD EXPIRE NEVER\n | PASSWORD EXPIRE INTERVAL N DAY\n\nlock_option:\n ACCOUNT LOCK\n | ACCOUNT UNLOCK\n}\n\nDescription\n-----------\n\nThe CREATE USER statement creates new MariaDB accounts. To use it, you must\nhave the global CREATE USER privilege or the INSERT privilege for the mysql\ndatabase. For each account, CREATE USER creates a new row in mysql.user (until\nMariaDB 10.3 this is a table, from MariaDB 10.4 it\'s a view) or\nmysql.global_priv_table (from MariaDB 10.4) that has no privileges.\n\nIf any of the specified accounts, or any permissions for the specified\naccounts, already exist, then the server returns ERROR 1396 (HY000). If an\nerror occurs, CREATE USER will still create the accounts that do not result in\nan error. Only one error is produced for all users which have not been created:\n\nERROR 1396 (HY000): \n Operation CREATE USER failed for \'u1\'@\'%\',\'u2\'@\'%\'\n\nCREATE USER, DROP USER, CREATE ROLE, and DROP ROLE all produce the same error\ncode when they fail.\n\nSee Account Names below for details on how account names are specified.\n\nOR REPLACE\n----------\n\nIf the optional OR REPLACE clause is used, it is basically a shortcut for:\n\nDROP USER IF EXISTS name;\nCREATE USER name ...;\n\nFor example:\n\nCREATE USER foo2@test IDENTIFIED BY \'password\';\nERROR 1396 (HY000): Operation CREATE USER failed for \'foo2\'@\'test\'\n\nCREATE OR REPLACE USER foo2@test IDENTIFIED BY \'password\';\nQuery OK, 0 rows affected (0.00 sec)\n\nIF NOT EXISTS\n-------------\n\nWhen the IF NOT EXISTS clause is used, MariaDB will return a warning instead\nof an error if the specified user already exists.\n\nFor example:\n\nCREATE USER foo2@test IDENTIFIED BY \'password\';\nERROR 1396 (HY000): Operation CREATE USER failed for \'foo2\'@\'test\'\n\nCREATE USER IF NOT EXISTS foo2@test IDENTIFIED BY \'password\';\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nSHOW WARNINGS;\n+-------+------+----------------------------------------------------+\n| Level | Code | Message |\n+-------+------+----------------------------------------------------+\n| Note | 1973 | Can\'t create user \'foo2\'@\'test\'; it already exists |\n+-------+------+----------------------------------------------------+\n\nAuthentication Options\n----------------------\n\nIDENTIFIED BY \'password\'\n------------------------\n\nThe optional IDENTIFIED BY clause can be used to provide an account with a\npassword. The password should be specified in plain text. It will be hashed by\nthe PASSWORD function prior to being stored in the\nmysql.user/mysql.global_priv_table table.\n\nFor example, if our password is mariadb, then we can create the user with:\n\nCREATE USER foo2@test IDENTIFIED BY \'mariadb\';\n\nIf you do not specify a password with the IDENTIFIED BY clause, the user will\nbe able to connect without a password. A blank password is not a wildcard to\nmatch any password. The user must connect without providing a password if no\npassword is set.\n\nThe only authentication plugins that this clause supports are\nmysql_native_password and mysql_old_password.\n\nIDENTIFIED BY PASSWORD \'password_hash\'\n--------------------------------------\n\nThe optional IDENTIFIED BY PASSWORD clause can be used to provide an account\nwith a password that has already been hashed. The password should be specified\nas a hash that was provided by the PASSWORD function. It will be stored in the\nmysql.user/mysql.global_priv_table table as-is.\n\nFor example, if our password is mariadb, then we can find the hash with:\n\nSELECT PASSWORD(\'mariadb\');\n+-------------------------------------------+\n| PASSWORD(\'mariadb\') |\n+-------------------------------------------+\n| *54958E764CE10E50764C2EECBB71D01F08549980 |\n+-------------------------------------------+\n1 row in set (0.00 sec)\n\nAnd then we can create a user with the hash:\n\nCREATE USER foo2@test IDENTIFIED BY PASSWORD\n\'*54958E764CE10E50764C2EECBB71D01F08549980\';\n\nIf you do not specify a password with the IDENTIFIED BY clause, the user will\nbe able to connect without a password. A blank password is not a wildcard to\nmatch any password. The user must connect without providing a password if no\npassword is set.\n\nThe only authentication plugins that this clause supports are\nmysql_native_password and mysql_old_password.\n\nIDENTIFIED {VIA|WITH} authentication_plugin\n-------------------------------------------\n\nThe optional IDENTIFIED VIA authentication_plugin allows you to specify that\nthe account should be authenticated by a specific authentication plugin. The\nplugin name must be an active authentication plugin as per SHOW PLUGINS. If it\ndoesn\'t show up in that output, then you will need to install it with INSTALL\nPLUGIN or INSTALL SONAME.\n\nFor example, this could be used with the PAM authentication plugin:\n\nCREATE USER foo2@test IDENTIFIED VIA pam;\n\nSome authentication plugins allow additional arguments to be specified after a\nUSING or AS keyword. For example, the PAM authentication plugin accepts a\nservice name:\n\nCREATE USER foo2@test IDENTIFIED VIA pam USING \'mariadb\';\n\nThe exact meaning of the additional argument would depend on the specific\nauthentication plugin.\n\nMariaDB starting with 10.4.0\n----------------------------\nThe USING or AS keyword can also be used to provide a plain-text password to a\nplugin if it\'s provided as an argument to the PASSWORD() function. This is\nonly valid for authentication plugins that have implemented a hook for the\nPASSWORD() function. For example, the ed25519 authentication plugin supports\nthis:\n\nCREATE USER safe@\'%\' IDENTIFIED VIA ed25519 USING PASSWORD(\'secret\');\n\nMariaDB starting with 10.4.3\n----------------------------\nOne can specify many authentication plugins, they all work as alternatives\nways of authenticating a user:\n\nCREATE USER safe@\'%\' IDENTIFIED VIA ed25519 USING PASSWORD(\'secret\') OR\nunix_socket;\n\nBy default, when you create a user without specifying an authentication\nplugin, MariaDB uses the mysql_native_password plugin.\n\nTLS Options\n-----------\n\nBy default, MariaDB transmits data between the server and clients without\nencrypting it. This is generally acceptable when the server and client run on\nthe same host or in networks where security is guaranteed through other means.\nHowever, in cases where the server and client exist on separate networks or\nthey are in a high-risk network, the lack of encryption does introduce\nsecurity concerns as a malicious actor could potentially eavesdrop on the\ntraffic as it is sent over the network between them.\n\nTo mitigate this concern, MariaDB allows you to encrypt data in transit\nbetween the server and clients using the Transport Layer Security (TLS)\nprotocol. TLS was formerly known as Secure Socket Layer (SSL), but strictly\nspeaking the SSL protocol is a predecessor to TLS and, that version of the\nprotocol is now considered insecure. The documentation still uses the term SSL\noften and for compatibility reasons TLS-related server system and status\nvariables still use the prefix ssl_, but internally, MariaDB only supports its\nsecure successors.\n\nSee Secure Connections Overview for more information about how to determine\nwhether your MariaDB server has TLS support.\n\nYou can set certain TLS-related restrictions for specific user accounts. For\ninstance, you might use this with user accounts that require access to\nsensitive data while sending it across networks that you do not control. These\nrestrictions can be enabled for a user account with the CREATE USER, ALTER\nUSER, or GRANT statements. The following options are available:\n\n+---------------------------+------------------------------------------------+\n| Option | Description |\n+---------------------------+------------------------------------------------+\n| REQUIRE NONE | TLS is not required for this account, but can |\n| | still be used. |\n+---------------------------+------------------------------------------------+\n| REQUIRE SSL | The account must use TLS, but no valid X509 |\n| | certificate is required. This option cannot |\n| | be combined with other TLS options. |\n+---------------------------+------------------------------------------------+\n| REQUIRE X509 | The account must use TLS and must have a |\n| | valid X509 certificate. This option implies |\n| | REQUIRE SSL. This option cannot be combined |\n| | with other TLS options. |\n+---------------------------+------------------------------------------------+\n| REQUIRE ISSUER \'issuer\' | The account must use TLS and must have a |\n| | valid X509 certificate. Also, the Certificate |\n| | Authority must be the one specified via the |\n| | string issuer. This option implies REQUIRE |\n| | X509. This option can be combined with the |\n| | SUBJECT, and CIPHER options in any order. |\n+---------------------------+------------------------------------------------+\n| REQUIRE SUBJECT \'subject\' | The account must use TLS and must have a |\n| | valid X509 certificate. Also, the |\n| | certificate\'s Subject must be the one |\n| | specified via the string subject. This option |\n| | implies REQUIRE X509. This option can be |\n| | combined with the ISSUER, and CIPHER options |\n| | in any order. |\n+---------------------------+------------------------------------------------+\n| REQUIRE CIPHER \'cipher\' | The account must use TLS, but no valid X509 |\n| | certificate is required. Also, the encryption |\n| | used for the connection must use a specific |\n| | cipher method specified in the string cipher. |\n| | This option implies REQUIRE SSL. This option |\n| | can be combined with the ISSUER, and SUBJECT |\n| | options in any order. |\n+---------------------------+------------------------------------------------+\n\nThe REQUIRE keyword must be used only once for all specified options, and the\nAND keyword can be used to separate individual options, but it is not required.\n\nFor example, you can create a user account that requires these TLS options\nwith the following:\n\nCREATE USER \'alice\'@\'%\'\n REQUIRE SUBJECT \'/CN=alice/O=My Dom, Inc./C=US/ST=Oregon/L=Portland\'\n AND ISSUER \'/C=FI/ST=Somewhere/L=City/ O=Some Company/CN=Peter\nParker/emailAddress=p.parker@marvel.com\'\n AND CIPHER \'SHA-DES-CBC3-EDH-RSA\';\n\nIf any of these options are set for a specific user account, then any client\nwho tries to connect with that user account will have to be configured to\nconnect with TLS.\n\nSee Securing Connections for Client and Server for information on how to\nenable TLS on the client and server.\n\nResource Limit Options\n----------------------\n\nIt is possible to set per-account limits for certain server resources. The\nfollowing table shows the values that can be set per account:\n\n+--------------------------------------+--------------------------------------+\n| Limit Type | Decription |\n+--------------------------------------+--------------------------------------+\n| MAX_QUERIES_PER_HOUR | Number of statements that the |\n| | account can issue per hour |\n| | (including updates) |\n+--------------------------------------+--------------------------------------+\n| MAX_UPDATES_PER_HOUR | Number of updates (not queries) |\n| | that the account can issue per hour |\n+--------------------------------------+--------------------------------------+\n| MAX_CONNECTIONS_PER_HOUR | Number of connections that the |\n| | account can start per hour |\n+--------------------------------------+--------------------------------------+\n| MAX_USER_CONNECTIONS | Number of simultaneous connections |\n| | that can be accepted from the same |\n| | account; if it is 0, |\n| | max_connections will be used |\n| | instead; if max_connections is 0, |\n| | there is no limit for this |\n| | account\'s simultaneous connections. |\n+--------------------------------------+--------------------------------------+\n| MAX_STATEMENT_TIME | Timeout, in seconds, for statements |\n| | executed by the user. See also |\n| | Aborting Statements that Exceed a |\n| | Certain Time to Execute. |\n+--------------------------------------+--------------------------------------+\n\nIf any of these limits are set to 0, then there is no limit for that resource\nfor that user.\n\nHere is an example showing how to create a user with resource limits:\n\nCREATE USER \'someone\'@\'localhost\' WITH\n MAX_USER_CONNECTIONS 10\n MAX_QUERIES_PER_HOUR 200;\n\nThe resources are tracked per account, which means \'user\'@\'server\'; not per\nuser name or per connection.\n\nThe count can be reset for all users using FLUSH USER_RESOURCES, FLUSH\nPRIVILEGES or mariadb-admin reload.\n\nPer account resource limits are stored in the user table, in the mysql\ndatabase. Columns used for resources limits are named max_questions,\nmax_updates, max_connections (for MAX_CONNECTIONS_PER_HOUR), and\nmax_user_connections (for MAX_USER_CONNECTIONS).\n\nAccount Names\n-------------\n\nAccount names have both a user name component and a host name component, and\nare specified as \'user_name\'@\'host_name\'.\n\nThe user name and host name may be unquoted, quoted as strings using double\nquotes (\") or single quotes (\'), or quoted as identifiers using backticks (`).\nYou must use quotes when using special characters (such as a hyphen) or\nwildcard characters. If you quote, you must quote the user name and host name\nseparately (for example \'user_name\'@\'host_name\').\n\nHost Name Component\n-------------------\n\nIf the host name is not provided, it is assumed to be \'%\'.\n\nHost names may contain the wildcard characters % and _. They are matched as if\nby the LIKE clause. If you need to use a wildcard character literally (for\nexample, to match a domain name with an underscore), prefix the character with\na backslash. See LIKE for more information on escaping wildcard characters.\n\nHost name matches are case-insensitive. Host names can match either domain\nnames or IP addresses. Use \'localhost\' as the host name to allow only local\nclient connections. On Linux, the loopback interface (127.0.0.1) will not\nmatch \'localhost\' as it is not considered a local connection: this means that\nonly connections via UNIX-domain sockets will match \'localhost\'.\n\nYou can use a netmask to match a range of IP addresses using \'base_ip/netmask\'\nas the host name. A user with an IP address ip_addr will be allowed to connect\nif the following condition is true:\n\nip_addr & netmask = base_ip\n\nFor example, given a user:\n\nCREATE USER \'maria\'@\'247.150.130.0/255.255.255.0\';\n\nthe IP addresses satisfying this condition range from 247.150.130.0 to\n247.150.130.255.\n\nUsing 255.255.255.255 is equivalent to not using a netmask at all. Netmasks\ncannot be used for IPv6 addresses.\n\nNote that the credentials added when creating a user with the \'%\' wildcard\nhost will not grant access in all cases. For example, some systems come with\nan anonymous localhost user, and when connecting from localhost this will take\nprecedence.\n\nBefore MariaDB 10.6, the host name component could be up to 60 characters in\nlength. Starting from MariaDB 10.6, it can be up to 255 characters.\n\nUser Name Component\n-------------------\n\nUser names must match exactly, including case. A user name that is empty is\nknown as an anonymous account and is allowed to match a login attempt with any\nuser name component. These are described more in the next section.\n\nFor valid identifiers to use as user names, see Identifier Names.\n\nIt is possible for more than one account to match when a user connects.\nMariaDB selects the first matching account after sorting according to the\nfollowing criteria:\n\n* Accounts with an exact host name are sorted before accounts using a wildcard\nin the\nhost name. Host names using a netmask are considered to be exact for sorting.\n* Accounts with a wildcard in the host name are sorted according to the\nposition of\nthe first wildcard character. Those with a wildcard character later in the\nhost name\nsort before those with a wildcard character earlier in the host name.\n* Accounts with a non-empty user name sort before accounts with an empty user\nname.\n* Accounts with an empty user name are sorted last. As mentioned previously,\nthese are known as anonymous accounts. These are described more in the next\nsection.\n\nThe following table shows a list of example account as sorted by these\ncriteria:\n\n+---------+-------------+\n| User | Host |\n+---------+-------------+\n| joffrey | 192.168.0.3 |\n| | 192.168.0.% |\n| joffrey | 192.168.% |\n| | 192.168.% |\n+---------+-------------+\n\nOnce connected, you only have the privileges granted to the account that\nmatched, not all accounts that could have matched. For example, consider the\nfollowing commands:\n\nCREATE USER \'joffrey\'@\'192.168.0.3\';\nCREATE USER \'joffrey\'@\'%\';\nGRANT SELECT ON test.t1 to \'joffrey\'@\'192.168.0.3\';\nGRANT SELECT ON test.t2 to \'joffrey\'@\'%\';\n\nIf you connect as joffrey from 192.168.0.3, you will have the SELECT privilege\non the table test.t1, but not on the table test.t2. If you connect as joffrey\nfrom any other IP address, you will have the SELECT privilege on the table\ntest.t2, but not on the table test.t1.\n\nUsernames can be up to 80 characters long before 10.6 and starting from 10.6\nit can be 128 characters long.\n\nAnonymous Accounts\n------------------\n\nAnonymous accounts are accounts where the user name portion of the account\nname is empty. These accounts act as special catch-all accounts. If a user\nattempts to log into the system from a host, and an anonymous account exists\nwith a host name portion that matches the user\'s host, then the user will log\nin as the anonymous account if there is no more specific account match for the\nuser name that the user entered.\n\nFor example, here are some anonymous accounts:\n\nCREATE USER \'\'@\'localhost\';\nCREATE USER \'\'@\'192.168.0.3\';\n\nFixing a Legacy Default Anonymous Account\n-----------------------------------------\n\nOn some systems, the mysql.db table has some entries for the \'\'@\'%\' anonymous\naccount by default. Unfortunately, there is no matching entry in the\nmysql.user/mysql.global_priv_table table, which means that this anonymous\naccount doesn\'t exactly exist, but it does have privileges--usually on the\ndefault test database created by mariadb-install-db. These account-less\nprivileges are a legacy that is leftover from a time when MySQL\'s privilege\nsystem was less advanced.\n\nThis situation means that you will run into errors if you try to create a\n\'\'@\'%\' account. For example:\n\nCREATE USER \'\'@\'%\';\nERROR 1396 (HY000): Operation CREATE USER failed for \'\'@\'%\'\n\nThe fix is to DELETE the row in the mysql.db table and then execute FLUSH\nPRIVILEGES:\n\nDELETE FROM mysql.db WHERE User=\'\' AND Host=\'%\';\nFLUSH PRIVILEGES;\n\nAnd then the account can be created:\n\nCREATE USER \'\'@\'%\';\nQuery OK, 0 rows affected (0.01 sec)\n\nSee MDEV-13486 for more information.\n\nPassword Expiry\n---------------\n\nMariaDB starting with 10.4.3\n----------------------------\nBesides automatic password expiry, as determined by default_password_lifetime,\npassword expiry times can be set on an individual user basis, overriding the\nglobal setting, for example:\n\nCREATE USER \'monty\'@\'localhost\' PASSWORD EXPIRE INTERVAL 120 DAY;\n\nSee User Password Expiry for more details.\n\nAccount Locking\n---------------\n\nMariaDB starting with 10.4.2\n----------------------------\nAccount locking permits privileged administrators to lock/unlock user\naccounts. No new client connections will be permitted if an account is locked\n(existing connections are not affected). For example:\n\nCREATE USER \'marijn\'@\'localhost\' ACCOUNT LOCK;\n\nSee Account Locking for more details.\n\nFrom MariaDB 10.4.7 and MariaDB 10.5.8, the lock_option and password_option\nclauses can occur in either order.\n\nURL: https://mariadb.com/kb/en/create-user/','','https://mariadb.com/kb/en/create-user/'), (106,'ALTER USER',10,'Syntax\n------\n\nALTER USER [IF EXISTS] \n user_specification [,user_specification] ...\n [REQUIRE {NONE | tls_option [[AND] tls_option] ...}]\n [WITH resource_option [resource_option] ...]\n [lock_option] [password_option]\n\nuser_specification:\n username [authentication_option]\n\nauthentication_option:\n IDENTIFIED BY \'password\'\n | IDENTIFIED BY PASSWORD \'password_hash\'\n | IDENTIFIED {VIA|WITH} authentication_rule [OR authentication_rule] ...\n\nauthentication_rule:\n authentication_plugin\n | authentication_plugin {USING|AS} \'authentication_string\'\n | authentication_plugin {USING|AS} PASSWORD(\'password\')\n\ntls_option\n SSL\n | X509\n | CIPHER \'cipher\'\n | ISSUER \'issuer\'\n | SUBJECT \'subject\'\n\nresource_option\n MAX_QUERIES_PER_HOUR count\n | MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n | MAX_STATEMENT_TIME time\n\npassword_option:\n PASSWORD EXPIRE\n | PASSWORD EXPIRE DEFAULT\n | PASSWORD EXPIRE NEVER\n | PASSWORD EXPIRE INTERVAL N DAY\n\nlock_option:\n ACCOUNT LOCK\n | ACCOUNT UNLOCK\n}\n\nDescription\n-----------\n\nThe ALTER USER statement modifies existing MariaDB accounts. To use it, you\nmust have the global CREATE USER privilege or the UPDATE privilege for the\nmysql database. The global SUPER privilege is also required if the read_only\nsystem variable is enabled.\n\nIf any of the specified user accounts do not yet exist, an error results. If\nan error occurs, ALTER USER will still modify the accounts that do not result\nin an error. Only one error is produced for all users which have not been\nmodified.\n\nIF EXISTS\n---------\n\nWhen the IF EXISTS clause is used, MariaDB will return a warning instead of an\nerror for each specified user that does not exist.\n\nAccount Names\n-------------\n\nFor ALTER USER statements, account names are specified as the username\nargument in the same way as they are for CREATE USER statements. See account\nnames from the CREATE USER page for details on how account names are specified.\n\nCURRENT_USER or CURRENT_USER() can also be used to alter the account logged\ninto the current session. For example, to change the current user\'s password\nto mariadb:\n\nALTER USER CURRENT_USER() IDENTIFIED BY \'mariadb\';\n\nAuthentication Options\n----------------------\n\nMariaDB starting with 10.4\n--------------------------\nFrom MariaDB 10.4, it is possible to use more than one authentication plugin\nfor each user account. For example, this can be useful to slowly migrate users\nto the more secure ed25519 authentication plugin over time, while allowing the\nold mysql_native_password authentication plugin as an alternative for the\ntransitional period. See Authentication from MariaDB 10.4 for more.\n\nWhen running ALTER USER, not specifying an authentication option in the\nIDENTIFIED VIA clause will remove that authentication method. (However this\nwas not the case before MariaDB 10.4.13, see MDEV-21928)\n\nFor example, a user is created with the ability to authenticate via both a\npassword and unix_socket:\n\nCREATE USER \'bob\'@\'localhost\' \n IDENTIFIED VIA mysql_native_password USING PASSWORD(\'pwd\')\n OR unix_socket;\n\nSHOW CREATE USER \'bob\'@\'localhost\'\\G\n*************************** 1. row ***************************\nCREATE USER for bob@localhost: CREATE USER `bob`@`localhost` \n IDENTIFIED VIA mysql_native_password\n USING \'*975B2CD4FF9AE554FE8AD33168FBFC326D2021DD\'\n OR unix_socket\n\nIf the user\'s password is updated, but unix_socket authentication is not\nspecified in the IDENTIFIED VIA clause, unix_socket authentication will no\nlonger be permitted.\n\nALTER USER \'bob\'@\'localhost\' IDENTIFIED VIA mysql_native_password \n USING PASSWORD(\'pwd2\');\n\nSHOW CREATE USER \'bob\'@\'localhost\'\\G\n*************************** 1. row ***************************\nCREATE USER for bob@localhost: CREATE USER `bob`@`localhost` \n IDENTIFIED BY PASSWORD \'*38366FDA01695B6A5A9DD4E428D9FB8F7EB75512\'\n\nIDENTIFIED BY \'password\'\n------------------------\n\nThe optional IDENTIFIED BY clause can be used to provide an account with a\npassword. The password should be specified in plain text. It will be hashed by\nthe PASSWORD function prior to being stored to the mysql.user table.\n\nFor example, if our password is mariadb, then we can set the account\'s\npassword with:\n\nALTER USER foo2@test IDENTIFIED BY \'mariadb\';\n\nIf you do not specify a password with the IDENTIFIED BY clause, the user will\nbe able to connect without a password. A blank password is not a wildcard to\nmatch any password. The user must connect without providing a password if no\npassword is set.\n\nThe only authentication plugins that this clause supports are\nmysql_native_password and mysql_old_password.\n\nIDENTIFIED BY PASSWORD \'password_hash\'\n--------------------------------------\n\nThe optional IDENTIFIED BY PASSWORD clause can be used to provide an account\nwith a password that has already been hashed. The password should be specified\nas a hash that was provided by the PASSWORD#function. It will be stored to the\nmysql.user table as-is.\n\nFor example, if our password is mariadb, then we can find the hash with:\n\nSELECT PASSWORD(\'mariadb\');\n+-------------------------------------------+\n| PASSWORD(\'mariadb\') |\n+-------------------------------------------+\n| *54958E764CE10E50764C2EECBB71D01F08549980 |\n+-------------------------------------------+\n\nAnd then we can set an account\'s password with the hash:\n\nALTER USER foo2@test \n IDENTIFIED BY PASSWORD \'*54958E764CE10E50764C2EECBB71D01F08549980\';\n\nIf you do not specify a password with the IDENTIFIED BY clause, the user will\nbe able to connect without a password. A blank password is not a wildcard to\nmatch any password. The user must connect without providing a password if no\npassword is set.\n\nThe only authentication plugins that this clause supports are\nmysql_native_password and mysql_old_password.\n\nIDENTIFIED {VIA|WITH} authentication_plugin\n-------------------------------------------\n\nThe optional IDENTIFIED VIA authentication_plugin allows you to specify that\nthe account should be authenticated by a specific authentication plugin. The\nplugin name must be an active authentication plugin as per SHOW PLUGINS. If it\ndoesn\'t show up in that output, then you will need to install it with INSTALL\nPLUGIN or INSTALL SONAME.\n\nFor example, this could be used with the PAM authentication plugin:\n\nALTER USER foo2@test IDENTIFIED VIA pam;\n\nSome authentication plugins allow additional arguments to be specified after a\nUSING or AS keyword. For example, the PAM authentication plugin accepts a\nservice name:\n\nALTER USER foo2@test IDENTIFIED VIA pam USING \'mariadb\';\n\nThe exact meaning of the additional argument would depend on the specific\nauthentication plugin.\n\nIn MariaDB 10.4 and later, the USING or AS keyword can also be used to provide\na plain-text password to a plugin if it\'s provided as an argument to the\nPASSWORD() function. This is only valid for authentication plugins that have\nimplemented a hook for the PASSWORD() function. For example, the ed25519\nauthentication plugin supports this:\n\nALTER USER safe@\'%\' IDENTIFIED VIA ed25519 USING PASSWORD(\'secret\');\n\nTLS Options\n-----------\n\nBy default, MariaDB transmits data between the server and clients without\nencrypting it. This is generally acceptable when the server and client run on\nthe same host or in networks where security is guaranteed through other means.\nHowever, in cases where the server and client exist on separate networks or\nthey are in a high-risk network, the lack of encryption does introduce\nsecurity concerns as a malicious actor could potentially eavesdrop on the\ntraffic as it is sent over the network between them.\n\nTo mitigate this concern, MariaDB allows you to encrypt data in transit\nbetween the server and clients using the Transport Layer Security (TLS)\nprotocol. TLS was formerly known as Secure Socket Layer (SSL), but strictly\nspeaking the SSL protocol is a predecessor to TLS and, that version of the\nprotocol is now considered insecure. The documentation still uses the term SSL\noften and for compatibility reasons TLS-related server system and status\nvariables still use the prefix ssl_, but internally, MariaDB only supports its\nsecure successors.\n\nSee Secure Connections Overview for more information about how to determine\nwhether your MariaDB server has TLS support.\n\nYou can set certain TLS-related restrictions for specific user accounts. For\ninstance, you might use this with user accounts that require access to\nsensitive data while sending it across networks that you do not control. These\nrestrictions can be enabled for a user account with the CREATE USER, ALTER\nUSER, or GRANT statements. The following options are available:\n\n+---------------------------+------------------------------------------------+\n| Option | Description |\n+---------------------------+------------------------------------------------+\n| REQUIRE NONE | TLS is not required for this account, but can |\n| | still be used. |\n+---------------------------+------------------------------------------------+\n| REQUIRE SSL | The account must use TLS, but no valid X509 |\n| | certificate is required. This option cannot |\n| | be combined with other TLS options. |\n+---------------------------+------------------------------------------------+\n| REQUIRE X509 | The account must use TLS and must have a |\n| | valid X509 certificate. This option implies |\n| | REQUIRE SSL. This option cannot be combined |\n| | with other TLS options. |\n+---------------------------+------------------------------------------------+\n| REQUIRE ISSUER \'issuer\' | The account must use TLS and must have a |\n| | valid X509 certificate. Also, the Certificate |\n| | Authority must be the one specified via the |\n| | string issuer. This option implies REQUIRE |\n| | X509. This option can be combined with the |\n| | SUBJECT, and CIPHER options in any order. |\n+---------------------------+------------------------------------------------+\n| REQUIRE SUBJECT \'subject\' | The account must use TLS and must have a |\n| | valid X509 certificate. Also, the |\n| | certificate\'s Subject must be the one |\n| | specified via the string subject. This option |\n| | implies REQUIRE X509. This option can be |\n| | combined with the ISSUER, and CIPHER options |\n| | in any order. |\n+---------------------------+------------------------------------------------+\n| REQUIRE CIPHER \'cipher\' | The account must use TLS, but no valid X509 |\n| | certificate is required. Also, the encryption |\n| | used for the connection must use a specific |\n| | cipher method specified in the string cipher. |\n| | This option implies REQUIRE SSL. This option |\n| | can be combined with the ISSUER, and SUBJECT |\n| | options in any order. |\n+---------------------------+------------------------------------------------+\n\nThe REQUIRE keyword must be used only once for all specified options, and the\nAND keyword can be used to separate individual options, but it is not required.\n\nFor example, you can alter a user account to require these TLS options with\nthe following:\n\nALTER USER \'alice\'@\'%\'\n REQUIRE SUBJECT \'/CN=alice/O=My Dom, Inc./C=US/ST=Oregon/L=Portland\' AND\n ISSUER \'/C=FI/ST=Somewhere/L=City/ O=Some Company/CN=Peter\nParker/emailAddress=p.parker@marvel.com\'\n AND CIPHER \'SHA-DES-CBC3-EDH-RSA\';\n\nIf any of these options are set for a specific user account, then any client\nwho tries to connect with that user account will have to be configured to\nconnect with TLS.\n\nSee Securing Connections for Client and Server for information on how to\nenable TLS on the client and server.\n\nResource Limit Options\n----------------------\n\nIt is possible to set per-account limits for certain server resources. The\nfollowing table shows the values that can be set per account:\n\n+------------------------------------+---------------------------------------+\n| Limit Type | Description |\n+------------------------------------+---------------------------------------+\n| MAX_QUERIES_PER_HOUR | Number of statements that the |\n| | account can issue per hour |\n| | (including updates) |\n+------------------------------------+---------------------------------------+\n| MAX_UPDATES_PER_HOUR | Number of updates (not queries) that |\n| | the account can issue per hour |\n+------------------------------------+---------------------------------------+\n| MAX_CONNECTIONS_PER_HOUR | Number of connections that the |\n| | account can start per hour |\n+------------------------------------+---------------------------------------+\n| MAX_USER_CONNECTIONS | Number of simultaneous connections |\n| | that can be accepted from the same |\n| | account; if it is 0, max_connections |\n| | will be used instead; if |\n| | max_connections is 0, there is no |\n| | limit for this account\'s |\n| | simultaneous connections. |\n+------------------------------------+---------------------------------------+\n| MAX_STATEMENT_TIME | Timeout, in seconds, for statements |\n| | executed by the user. See also |\n| | Aborting Statements that Exceed a |\n| | Certain Time to Execute. |\n+------------------------------------+---------------------------------------+\n\nIf any of these limits are set to 0, then there is no limit for that resource\nfor that user.\n\nHere is an example showing how to set an account\'s resource limits:\n\nALTER USER \'someone\'@\'localhost\' WITH\n MAX_USER_CONNECTIONS 10\n MAX_QUERIES_PER_HOUR 200;\n\nThe resources are tracked per account, which means \'user\'@\'server\'; not per\nuser name or per connection.\n\nThe count can be reset for all users using FLUSH USER_RESOURCES, FLUSH\nPRIVILEGES or mysqladmin reload.\n\nPer account resource limits are stored in the user table, in the mysql\ndatabase. Columns used for resources limits are named max_questions,\nmax_updates, max_connections (for MAX_CONNECTIONS_PER_HOUR), and\nmax_user_connections (for MAX_USER_CONNECTIONS).\n\nPassword Expiry\n---------------\n\nMariaDB starting with 10.4.3\n----------------------------\nBesides automatic password expiry, as determined by default_password_lifetime,\npassword expiry times can be set on an individual user basis, overriding the\nglobal setting, for example:\n\nALTER USER \'monty\'@\'localhost\' PASSWORD EXPIRE INTERVAL 120 DAY;\nALTER USER \'monty\'@\'localhost\' PASSWORD EXPIRE NEVER;\nALTER USER \'monty\'@\'localhost\' PASSWORD EXPIRE DEFAULT;\n\nSee User Password Expiry for more details.\n\nAccount Locking\n---------------\n\nMariaDB starting with 10.4.2\n----------------------------\nAccount locking permits privileged administrators to lock/unlock user\naccounts. No new client connections will be permitted if an account is locked\n(existing connections are not affected). For example:\n\nALTER USER \'marijn\'@\'localhost\' ACCOUNT LOCK;\n\nSee Account Locking for more details.\n\nFrom MariaDB 10.4.7 and MariaDB 10.5.8, the lock_option and password_option\nclauses can occur in either order.\n\nURL: https://mariadb.com/kb/en/alter-user/','','https://mariadb.com/kb/en/alter-user/'), (108,'GRANT',10,'Syntax\n------\n\nGRANT\n priv_type [(column_list)]\n [, priv_type [(column_list)]] ...\n ON [object_type] priv_level\n TO user_specification [ user_options ...]\n\nuser_specification:\n username [authentication_option]\n | PUBLIC\nauthentication_option:\n IDENTIFIED BY \'password\'\n | IDENTIFIED BY PASSWORD \'password_hash\'\n | IDENTIFIED {VIA|WITH} authentication_rule [OR authentication_rule ...]\n\nauthentication_rule:\n authentication_plugin\n | authentication_plugin {USING|AS} \'authentication_string\'\n | authentication_plugin {USING|AS} PASSWORD(\'password\')\n\nGRANT PROXY ON username\n TO user_specification [, user_specification ...]\n [WITH GRANT OPTION]\n\nGRANT rolename TO grantee [, grantee ...]\n [WITH ADMIN OPTION]\n\ngrantee:\n rolename\n username [authentication_option]\n\nuser_options:\n [REQUIRE {NONE | tls_option [[AND] tls_option] ...}]\n [WITH with_option [with_option] ...]\n\nobject_type:\n TABLE\n | FUNCTION\n | PROCEDURE\n | PACKAGE\n\npriv_level:\n *\n | *.*\n | db_name.*\n | db_name.tbl_name\n | tbl_name\n | db_name.routine_name\n\nwith_option:\n GRANT OPTION\n | resource_option\n\nresource_option:\n MAX_QUERIES_PER_HOUR count\n | MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n | MAX_STATEMENT_TIME time\n\ntls_option:\n SSL\n | X509\n | CIPHER \'cipher\'\n | ISSUER \'issuer\'\n | SUBJECT \'subject\'\n\nDescription\n-----------\n\nThe GRANT statement allows you to grant privileges or roles to accounts. To\nuse GRANT, you must have the GRANT OPTION privilege, and you must have the\nprivileges that you are granting.\n\nUse the REVOKE statement to revoke privileges granted with the GRANT statement.\n\nUse the SHOW GRANTS statement to determine what privileges an account has.\n\nAccount Names\n-------------\n\nFor GRANT statements, account names are specified as the username argument in\nthe same way as they are for CREATE USER statements. See account names from\nthe CREATE USER page for details on how account names are specified.\n\nImplicit Account Creation\n-------------------------\n\nThe GRANT statement also allows you to implicitly create accounts in some\ncases.\n\nIf the account does not yet exist, then GRANT can implicitly create it. To\nimplicitly create an account with GRANT, a user is required to have the same\nprivileges that would be required to explicitly create the account with the\nCREATE USER statement.\n\nIf the NO_AUTO_CREATE_USER SQL_MODE is set, then accounts can only be created\nif authentication information is specified, or with a CREATE USER statement.\nIf no authentication information is provided, GRANT will produce an error when\nthe specified account does not exist, for example:\n\nshow variables like \'%sql_mode%\' ;\n+---------------+--------------------------------------------+\n| Variable_name | Value |\n+---------------+--------------------------------------------+\n| sql_mode | NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION |\n+---------------+--------------------------------------------+\n\nGRANT USAGE ON *.* TO \'user123\'@\'%\' IDENTIFIED BY \'\';\nERROR 1133 (28000): Can\'t find any matching row in the user table\n\nGRANT USAGE ON *.* TO \'user123\'@\'%\' \n IDENTIFIED VIA PAM using \'mariadb\' require ssl ;\nQuery OK, 0 rows affected (0.00 sec)\n\nselect host, user from mysql.user where user=\'user123\' ;\n\n+------+----------+\n| host | user |\n+------+----------+\n| % | user123 |\n+------+----------+\n\nPrivilege Levels\n----------------\n\nPrivileges can be set globally, for an entire database, for a table or\nroutine, or for individual columns in a table. Certain privileges can only be\nset at certain levels.\n\nGlobal privileges do not take effect immediately and are only applied to\nconnections created after the GRANT statement was executed.\n\n* Global privileges priv_type are granted using *.* for\npriv_level. Global privileges include privileges to administer the database\nand manage user accounts, as well as privileges for all tables, functions, and\nprocedures. Global privileges are stored in the mysql.user table prior to\nMariaDB 10.4, and in mysql.global_priv table afterwards.\n* Database privileges priv_type are granted using db_name.*\nfor priv_level, or using just * to use default database. Database\nprivileges include privileges to create tables and functions, as well as\nprivileges for all tables, functions, and procedures in the database. Database\nprivileges are stored in the mysql.db table.\n* Table privileges priv_type are granted using db_name.tbl_name\nfor priv_level, or using just tbl_name to specify a table in the default\ndatabase. The TABLE keyword is optional. Table privileges include the\nability to select and change data in the table. Certain table privileges can\nbe granted for individual columns.\n* Column privileges priv_type are granted by specifying a table for\npriv_level and providing a column list after the privilege type. They allow\nyou to control exactly which columns in a table users can select and change.\n* Function privileges priv_type are granted using FUNCTION db_name.routine_name\nfor priv_level, or using just FUNCTION routine_name to specify a function\nin the default database.\n* Procedure privileges priv_type are granted using PROCEDURE\ndb_name.routine_name\nfor priv_level, or using just PROCEDURE routine_name to specify a procedure\nin the default database.\n\nThe USAGE Privilege\n-------------------\n\nThe USAGE privilege grants no real privileges. The SHOW GRANTS statement will\nshow a global USAGE privilege for a newly-created user. You can use USAGE with\nthe GRANT statement to change options like GRANT OPTION and\nMAX_USER_CONNECTIONS without changing any account privileges.\n\nThe ALL PRIVILEGES Privilege\n----------------------------\n\nThe ALL PRIVILEGES privilege grants all available privileges. Granting all\nprivileges only affects the given privilege level. For example, granting all\nprivileges on a table does not grant any privileges on the database or\nglobally.\n\nUsing ALL PRIVILEGES does not grant the special GRANT OPTION privilege.\n\nYou can use ALL instead of ALL PRIVILEGES.\n\nThe GRANT OPTION Privilege\n--------------------------\n\nUse the WITH GRANT OPTION clause to give users the ability to grant privileges\nto other users at the given privilege level. Users with the GRANT OPTION\nprivilege can only grant privileges they have. They cannot grant privileges at\na higher privilege level than they have the GRANT OPTION privilege.\n\nThe GRANT OPTION privilege cannot be set for individual columns. If you use\nWITH GRANT OPTION when specifying column privileges, the GRANT OPTION\nprivilege will be granted for the entire table.\n\nUsing the WITH GRANT OPTION clause is equivalent to listing GRANT OPTION as a\nprivilege.\n\nGlobal Privileges\n-----------------\n\nThe following table lists the privileges that can be granted globally. You can\nalso grant all database, table, and function privileges globally. When granted\nglobally, these privileges apply to all databases, tables, or functions,\nincluding those created later.\n\nTo set a global privilege, use *.* for priv_level.\n\nBINLOG ADMIN\n------------\n\nEnables administration of the binary log, including the PURGE BINARY LOGS\nstatement and setting the system variables:\n\n* binlog_annotate_row_events\n* binlog_cache_size\n* binlog_commit_wait_count\n* binlog_commit_wait_usec\n* binlog_direct_non_transactional_updates\n* binlog_expire_logs_seconds\n* binlog_file_cache_size\n* binlog_format\n* binlog_row_image\n* binlog_row_metadata\n* binlog_stmt_cache_size\n* expire_logs_days\n* log_bin_compress\n* log_bin_compress_min_len\n* log_bin_trust_function_creators\n* max_binlog_cache_size\n* max_binlog_size\n* max_binlog_stmt_cache_size\n* sql_log_bin and\n* sync_binlog.\n\nAdded in MariaDB 10.5.2.\n\nBINLOG MONITOR\n--------------\n\nNew name for REPLICATION CLIENT from MariaDB 10.5.2, (REPLICATION CLIENT still\nsupported as an alias for compatibility purposes). Permits running SHOW\ncommands related to the binary log, in particular the SHOW BINLOG STATUS and\nSHOW BINARY LOGS statements. Unlike REPLICATION CLIENT prior to MariaDB 10.5,\nSHOW REPLICA STATUS isn\'t included in this privilege, and REPLICA MONITOR is\nrequired.\n\nBINLOG REPLAY\n-------------\n\nEnables replaying the binary log with the BINLOG statement (generated by\nmariadb-binlog), executing SET timestamp when secure_timestamp is set to\nreplication, and setting the session values of system variables usually\nincluded in BINLOG output, in particular:\n\n* gtid_domain_id\n* gtid_seq_no\n* pseudo_thread_id\n* server_id.\n\nAdded in MariaDB 10.5.2\n\nCONNECTION ADMIN\n----------------\n\nEnables administering connection resource limit options. This includes\nignoring the limits specified by:\n\n* max_connections\n* max_user_connections and\n* max_password_errors.\n\nThe statements specified in init_connect are not executed, killing connections\nand queries owned by other users is permitted. The following\nconnection-related system variables can be changed:\n\n* connect_timeout\n* disconnect_on_expired_password\n* extra_max_connections\n* init_connect\n* max_connections\n* max_connect_errors\n* max_password_errors\n* proxy_protocol_networks\n* secure_auth\n* slow_launch_time\n* thread_pool_exact_stats\n* thread_pool_dedicated_listener\n* thread_pool_idle_timeout\n* thread_pool_max_threads\n* thread_pool_min_threads\n* thread_pool_oversubscribe\n* thread_pool_prio_kickup_timer\n* thread_pool_priority\n* thread_pool_size, and\n* thread_pool_stall_limit.\n\nAdded in MariaDB 10.5.2.\n\nCREATE USER\n-----------\n\nCreate a user using the CREATE USER statement, or implicitly create a user\nwith the GRANT statement.\n\nFEDERATED ADMIN\n---------------\n\nExecute CREATE SERVER, ALTER SERVER, and DROP SERVER statements. Added in\nMariaDB 10.5.2.\n\nFILE\n----\n\nRead and write files on the server, using statements like LOAD DATA INFILE or\nfunctions like LOAD_FILE(). Also needed to create CONNECT outward tables.\nMariaDB server must have the permissions to access those files.\n\nGRANT OPTION\n------------\n\nGrant global privileges. You can only grant privileges that you have.\n\nPROCESS\n-------\n\nShow information about the active processes, for example via SHOW PROCESSLIST\nor mariadb-admin processlist. If you have the PROCESS privilege, you can see\nall threads. Otherwise, you can see only your own threads (that is, threads\nassociated with the MariaDB account that you are using).\n\nREAD_ONLY ADMIN\n---------------\n\nUser can set the read_only system variable and allows the user to perform\nwrite operations, even when the read_only option is active. Added in MariaDB\n10.5.2.\n\nFrom MariaDB 10.11.0, the READ_ONLY ADMIN privilege has been removed from\nSUPER. The benefit of this is that one can remove the READ_ONLY ADMIN\nprivilege from all users and ensure that no one can make any changes on any\nnon-temporary tables. This is useful on replicas when one wants to ensure that\nthe replica is kept identical to the primary.\n\nRELOAD\n------\n\nExecute FLUSH statements or equivalent mariadb-admin commands.\n\nREPLICATION CLIENT\n------------------\n\nExecute SHOW MASTER STATUS and SHOW BINARY LOGS informative statements.\nRenamed to BINLOG MONITOR in MariaDB 10.5.2 (but still supported as an alias\nfor compatibility reasons). SHOW SLAVE STATUS was part of REPLICATION CLIENT\nprior to MariaDB 10.5.\n\nREPLICATION MASTER ADMIN\n------------------------\n\nPermits administration of primary servers, including the SHOW REPLICA HOSTS\nstatement, and setting the gtid_binlog_state, gtid_domain_id,\nmaster_verify_checksum and server_id system variables. Added in MariaDB 10.5.2.\n\nREPLICA MONITOR\n---------------\n\nPermit SHOW REPLICA STATUS and SHOW RELAYLOG EVENTS. From MariaDB 10.5.9.\n\nWhen a user would upgrade from an older major release to a MariaDB 10.5 minor\nrelease prior to MariaDB 10.5.9, certain user accounts would lose\ncapabilities. For example, a user account that had the REPLICATION CLIENT\nprivilege in older major releases could run SHOW REPLICA STATUS, but after\nupgrading to a MariaDB 10.5 minor release prior to MariaDB 10.5.9, they could\nno longer run SHOW REPLICA STATUS, because that statement was changed to\nrequire the REPLICATION REPLICA ADMIN privilege.\n\nThis issue is fixed in MariaDB 10.5.9 with this new privilege, which now\ngrants the user the ability to execute SHOW [ALL] (SLAVE | REPLICA) STATUS.\n\nWhen a database is upgraded from an older major release to MariaDB Server\n10.5.9 or later, any user accounts with the REPLICATION CLIENT or REPLICATION\nSLAVE privileges will automatically be granted the new REPLICA MONITOR\nprivilege. The privilege fix occurs when the server is started up, not when\nmariadb-upgrade is performed.\n\nHowever, when a database is upgraded from an early 10.5 minor release to\n10.5.9 and later, the user will have to fix any user account privileges\nmanually.\n\nREPLICATION REPLICA\n-------------------\n\nSynonym for REPLICATION SLAVE. From MariaDB 10.5.1.\n\nREPLICATION SLAVE\n-----------------\n\nAccounts used by replica servers on the primary need this privilege. This is\nneeded to get the updates made on the master. From MariaDB 10.5.1, REPLICATION\nREPLICA is an alias for REPLICATION SLAVE.\n\nREPLICATION SLAVE ADMIN\n-----------------------\n\nPermits administering replica servers, including START REPLICA/SLAVE, STOP\nREPLICA/SLAVE, CHANGE MASTER, SHOW REPLICA/SLAVE STATUS, SHOW RELAYLOG EVENTS\nstatements, replaying the binary log with the BINLOG statement (generated by\nmariadb-binlog), and setting the system variables:\n\n* gtid_cleanup_batch_size\n* gtid_ignore_duplicates\n* gtid_pos_auto_engines\n* gtid_slave_pos\n* gtid_strict_mode\n* init_slave\n* read_binlog_speed_limit\n* relay_log_purge\n* relay_log_recovery\n* replicate_do_db\n* replicate_do_table\n* replicate_events_marked_for_skip\n* replicate_ignore_db\n* replicate_ignore_table\n* replicate_wild_do_table\n* replicate_wild_ignore_table\n* slave_compressed_protocol\n* slave_ddl_exec_mode\n* slave_domain_parallel_threads\n* slave_exec_mode\n* slave_max_allowed_packet\n* slave_net_timeout\n* slave_parallel_max_queued\n* slave_parallel_mode\n* slave_parallel_threads\n* slave_parallel_workers\n* slave_run_triggers_for_rbr\n* slave_sql_verify_checksum\n* slave_transaction_retry_interval\n* slave_type_conversions\n* sync_master_info\n* sync_relay_log, and\n* sync_relay_log_info.\n\nAdded in MariaDB 10.5.2.\n\nSET USER\n--------\n\nEnables setting the DEFINER when creating triggers, views, stored functions\nand stored procedures. Added in MariaDB 10.5.2.\n\nSHOW DATABASES\n--------------\n\nList all databases using the SHOW DATABASES statement. Without the SHOW\nDATABASES privilege, you can still issue the SHOW DATABASES statement, but it\nwill only list databases containing tables on which you have privileges.\n\nSHUTDOWN\n--------\n\nShut down the server using SHUTDOWN or the mariadb-admin shutdown command.\n\nSUPER\n-----\n\nExecute superuser statements: CHANGE MASTER TO, KILL (users who do not have\nthis privilege can only KILL their own threads), PURGE LOGS, SET global system\nvariables, or the mariadb-admin debug command. Also, this permission allows\nthe user to write data even if the read_only startup option is set, enable or\ndisable logging, enable or disable replication on replica, specify a DEFINER\nfor statements that support that clause, connect once reaching the\nMAX_CONNECTIONS. If a statement has been specified for the init-connect mysqld\noption, that command will not be executed when a user with SUPER privileges\nconnects to the server.\n\nThe SUPER privilege has been split into multiple smaller privileges from\nMariaDB 10.5.2 to allow for more fine-grained privileges (MDEV-21743). The\nprivileges are:\n\n* SET USER\n* FEDERATED ADMIN\n* CONNECTION ADMIN\n* REPLICATION SLAVE ADMIN\n* BINLOG ADMIN\n* BINLOG REPLAY\n* REPLICA MONITOR\n* BINLOG MONITOR\n* REPLICATION MASTER ADMIN\n* READ_ONLY ADMIN\n\nHowever, the smaller privileges are still a part of the SUPER grant in MariaDB\n10.5.2. From MariaDB 11.0.1 onwards, these grants are no longer a part of\nSUPER and need to be granted separately (MDEV-29668).\n\nFrom MariaDB 10.11.0, the READ_ONLY ADMIN privilege has been removed from\nSUPER. The benefit of this is that one can remove the READ_ONLY ADMIN\nprivilege from all users and ensure that no one can make any changes on any\nnon-temporary tables. This is useful on replicas when one wants to ensure that\nthe replica is kept identical to the primary (MDEV-29596).\n\nDatabase Privileges\n-------------------\n\nThe following table lists the privileges that can be granted at the database\nlevel. You can also grant all table and function privileges at the database\nlevel. Table and function privileges on a database apply to all tables or\nfunctions in that database, including those created later.\n\nTo set a privilege for a database, specify the database using db_name.* for\npriv_level, or just use * to specify the default database.\n\n+----------------------------------+-----------------------------------------+\n| Privilege | Description |\n+----------------------------------+-----------------------------------------+\n| CREATE | Create a database using the CREATE |\n| | DATABASE statement, when the privilege |\n| | is granted for a database. You can |\n| | grant the CREATE privilege on |\n| | databases that do not yet exist. This |\n| | also grants the CREATE privilege on |\n| | all tables in the database. |\n+----------------------------------+-----------------------------------------+\n| CREATE ROUTINE | Create Stored Programs using the |\n| | CREATE PROCEDURE and CREATE FUNCTION |\n| | statements. |\n+----------------------------------+-----------------------------------------+\n| CREATE TEMPORARY TABLES | Create temporary tables with the |\n| | CREATE TEMPORARY TABLE statement. This |\n| | privilege enable writing and dropping |\n| | those temporary tables |\n+----------------------------------+-----------------------------------------+\n| DROP | Drop a database using the DROP |\n| | DATABASE statement, when the privilege |\n| | is granted for a database. This also |\n| | grants the DROP privilege on all |\n| | tables in the database. |\n+----------------------------------+-----------------------------------------+\n| EVENT | Create, drop and alter EVENTs. |\n+----------------------------------+-----------------------------------------+\n| GRANT OPTION | Grant database privileges. You can |\n| | only grant privileges that you have. |\n+----------------------------------+-----------------------------------------+\n| LOCK TABLES | Acquire explicit locks using the LOCK |\n| | TABLES statement; you also need to |\n| | have the SELECT privilege on a table, |\n| | in order to lock it. |\n+----------------------------------+-----------------------------------------+\n\nTable Privileges\n----------------\n\n+----------------------------------+-----------------------------------------+\n| Privilege | Description |\n+----------------------------------+-----------------------------------------+\n| ALTER | Change the structure of an existing |\n| | table using the ALTER TABLE statement. |\n+----------------------------------+-----------------------------------------+\n| CREATE | Create a table using the CREATE TABLE |\n| | statement. You can grant the CREATE |\n| | privilege on tables that do not yet |\n| | exist. |\n+----------------------------------+-----------------------------------------+\n| CREATE VIEW | Create a view using the CREATE_VIEW |\n| | statement. |\n+----------------------------------+-----------------------------------------+\n| DELETE | Remove rows from a table using the |\n| | DELETE statement. |\n+----------------------------------+-----------------------------------------+\n| DELETE HISTORY | Remove historical rows from a table |\n| | using the DELETE HISTORY statement. |\n| | Displays as DELETE VERSIONING ROWS |\n| | when running SHOW GRANTS until MariaDB |\n| | 10.3.15 and until MariaDB 10.4.5 |\n| | (MDEV-17655), or when running SHOW |\n| | PRIVILEGES until MariaDB 10.5.2, |\n| | MariaDB 10.4.13 and MariaDB 10.3.23 |\n| | (MDEV-20382). From MariaDB 10.3.4. |\n| | From MariaDB 10.3.5, if a user has the |\n| | SUPER privilege but not this |\n| | privilege, running mariadb-upgrade |\n| | will grant this privilege as well. |\n+----------------------------------+-----------------------------------------+\n| DROP | Drop a table using the DROP TABLE |\n| | statement or a view using the DROP |\n| | VIEW statement. Also required to |\n| | execute the TRUNCATE TABLE statement. |\n+----------------------------------+-----------------------------------------+\n| GRANT OPTION | Grant table privileges. You can only |\n| | grant privileges that you have. |\n+----------------------------------+-----------------------------------------+\n| INDEX | Create an index on a table using the |\n| | CREATE INDEX statement. Without the |\n| | INDEX privilege, you can still create |\n| | indexes when creating a table using |\n| | the CREATE TABLE statement if the you |\n| | have the CREATE privilege, and you can |\n| | create indexes using the ALTER TABLE |\n| | statement if you have the ALTER |\n| | privilege. |\n+----------------------------------+-----------------------------------------+\n| INSERT | Add rows to a table using the INSERT |\n| | statement. The INSERT privilege can |\n| | also be set on individual columns; see |\n| | Column Privileges below for details. |\n+----------------------------------+-----------------------------------------+\n| REFERENCES | Unused. |\n+----------------------------------+-----------------------------------------+\n| SELECT | Read data from a table using the |\n| | SELECT statement. The SELECT privilege |\n| | can also be set on individual columns; |\n| | see Column Privileges below for |\n| | details. |\n+----------------------------------+-----------------------------------------+\n| SHOW VIEW | Show the CREATE VIEW statement to |\n| | create a view using the SHOW CREATE |\n| | VIEW statement. |\n+----------------------------------+-----------------------------------------+\n| TRIGGER | Execute triggers associated to tables |\n| | you update, execute the CREATE |\n| | TRIGGER, DROP TRIGGER, and SHOW CREATE |\n| | TRIGGER statements. |\n+----------------------------------+-----------------------------------------+\n| UPDATE | Update existing rows in a table using |\n| | the UPDATE statement. UPDATE |\n| | statements usually include a WHERE |\n| | clause to update only certain rows. |\n| | You must have SELECT privileges on the |\n| | table or the appropriate columns for |\n| | the WHERE clause. The UPDATE privilege |\n| | can also be set on individual columns; |\n| | see Column Privileges below for |\n| | details. |\n+----------------------------------+-----------------------------------------+\n\nColumn Privileges\n-----------------\n\nSome table privileges can be set for individual columns of a table. To use\ncolumn privileges, specify the table explicitly and provide a list of column\nnames after the privilege type. For example, the following statement would\nallow the user to read the names and positions of employees, but not other\ninformation from the same table, such as salaries.\n\nGRANT SELECT (name, position) on Employee to \'jeffrey\'@\'localhost\';\n\n+----------------------------------+-----------------------------------------+\n| Privilege | Description |\n+----------------------------------+-----------------------------------------+\n| INSERT (column_list) | Add rows specifying values in columns |\n| | using the INSERT statement. If you |\n| | only have column-level INSERT |\n| | privileges, you must specify the |\n| | columns you are setting in the INSERT |\n| | statement. All other columns will be |\n| | set to their default values, or NULL. |\n+----------------------------------+-----------------------------------------+\n| REFERENCES (column_list) | Unused. |\n+----------------------------------+-----------------------------------------+\n| SELECT (column_list) | Read values in columns using the |\n| | SELECT statement. You cannot access or |\n| | query any columns for which you do not |\n| | have SELECT privileges, including in |\n| | WHERE, ON, GROUP BY, and ORDER BY |\n| | clauses. |\n+----------------------------------+-----------------------------------------+\n| UPDATE (column_list) | Update values in columns of existing |\n| | rows using the UPDATE statement. |\n| | UPDATE statements usually include a |\n| | WHERE clause to update only certain |\n| | rows. You must have SELECT privileges |\n| | on the table or the appropriate |\n| | columns for the WHERE clause. |\n+----------------------------------+-----------------------------------------+\n\nFunction Privileges\n-------------------\n\n+----------------------------------+-----------------------------------------+\n| Privilege | Description |\n+----------------------------------+-----------------------------------------+\n| ALTER ROUTINE | Change the characteristics of a stored |\n| | function using the ALTER FUNCTION |\n| | statement. |\n+----------------------------------+-----------------------------------------+\n| EXECUTE | Use a stored function. You need SELECT |\n| | privileges for any tables or columns |\n| | accessed by the function. |\n+----------------------------------+-----------------------------------------+\n| GRANT OPTION | Grant function privileges. You can |\n| | only grant privileges that you have. |\n+----------------------------------+-----------------------------------------+\n\nProcedure Privileges\n--------------------\n\n+----------------------------------+-----------------------------------------+\n| Privilege | Description |\n+----------------------------------+-----------------------------------------+\n| ALTER ROUTINE | Change the characteristics of a stored |\n| | procedure using the ALTER PROCEDURE |\n| | statement. |\n+----------------------------------+-----------------------------------------+\n| EXECUTE | Execute a stored procedure using the |\n| | CALL statement. The privilege to call |\n| | a procedure may allow you to perform |\n| | actions you wouldn\'t otherwise be able |\n| | to do, such as insert rows into a |\n| | table. |\n+----------------------------------+-----------------------------------------+\n| GRANT OPTION | Grant procedure privileges. You can |\n| | only grant privileges that you have. |\n+----------------------------------+-----------------------------------------+\n\nGRANT EXECUTE ON PROCEDURE mysql.create_db TO maintainer;\n\nProxy Privileges\n----------------\n\n+----------------------------------+-----------------------------------------+\n| Privilege | Description |\n+----------------------------------+-----------------------------------------+\n| PROXY | Permits one user to be a proxy for |\n| | another. |\n+----------------------------------+-----------------------------------------+\n\nThe PROXY privilege allows one user to proxy as another user, which means\ntheir privileges change to that of the proxy user, and the CURRENT_USER()\nfunction returns the user name of the proxy user.\n\nThe PROXY privilege only works with authentication plugins that support it.\nThe default mysql_native_password authentication plugin does not support proxy\nusers.\n\nThe pam authentication plugin is the only plugin included with MariaDB that\ncurrently supports proxy users. The PROXY privilege is commonly used with the\npam authentication plugin to enable user and group mapping with PAM.\n\nFor example, to grant the PROXY privilege to an anonymous account that\nauthenticates with the pam authentication plugin, you could execute the\nfollowing:\n\nCREATE USER \'dba\'@\'%\' IDENTIFIED BY \'strongpassword\';\nGRANT ALL PRIVILEGES ON *.* TO \'dba\'@\'%\' ;\n\nCREATE USER \'\'@\'%\' IDENTIFIED VIA pam USING \'mariadb\';\nGRANT PROXY ON \'dba\'@\'%\' TO \'\'@\'%\';\n\nA user account can only grant the PROXY privilege for a specific user account\nif the granter also has the PROXY privilege for that specific user account,\nand if that privilege is defined WITH GRANT OPTION. For example, the following\nexample fails because the granter does not have the PROXY privilege for that\nspecific user account at all:\n\nSELECT USER(), CURRENT_USER();\n+-----------------+-----------------+\n| USER() | CURRENT_USER() |\n+-----------------+-----------------+\n| alice@localhost | alice@localhost |\n+-----------------+-----------------+\n\nSHOW GRANTS;\n+------------------------------------------------------------------------------\n----------------------------------------+\n| Grants for alice@localhost \n |\n+------------------------------------------------------------------------------\n----------------------------------------+\n| GRANT ALL PRIVILEGES ON *.* TO \'alice\'@\'localhost\' IDENTIFIED BY PASSWORD\n\'*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19\' |\n+------------------------------------------------------------------------------\n----------------------------------------+\n\nGRANT PROXY ON \'dba\'@\'localhost\' TO \'bob\'@\'localhost\';\nERROR 1698 (28000): Access denied for user \'alice\'@\'localhost\'\n\nAnd the following example fails because the granter does have the PROXY\nprivilege for that specific user account, but it is not defined WITH GRANT\nOPTION:\n\nSELECT USER(), CURRENT_USER();\n+-----------------+-----------------+\n| USER() | CURRENT_USER() |\n+-----------------+-----------------+\n| alice@localhost | alice@localhost |\n+-----------------+-----------------+\n\nSHOW GRANTS;\n+------------------------------------------------------------------------------\n----------------------------------------+\n| Grants for alice@localhost \n |\n+------------------------------------------------------------------------------\n----------------------------------------+\n| GRANT ALL PRIVILEGES ON *.* TO \'alice\'@\'localhost\' IDENTIFIED BY PASSWORD\n\'*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19\' |\n| GRANT PROXY ON \'dba\'@\'localhost\' TO \'alice\'@\'localhost\' \n |\n+------------------------------------------------------------------------------\n----------------------------------------+\n\nGRANT PROXY ON \'dba\'@\'localhost\' TO \'bob\'@\'localhost\';\nERROR 1698 (28000): Access denied for user \'alice\'@\'localhost\'\n\nBut the following example succeeds because the granter does have the PROXY\nprivilege for that specific user account, and it is defined WITH GRANT OPTION:\n\nSELECT USER(), CURRENT_USER();\n+-----------------+-----------------+\n| USER() | CURRENT_USER() |\n+-----------------+-----------------+\n| alice@localhost | alice@localhost |\n+-----------------+-----------------+\n\nSHOW GRANTS;\n+------------------------------------------------------------------------------\n----------------------------------------------------------+\n| Grants for alice@localhost \n |\n+------------------------------------------------------------------------------\n----------------------------------------------------------+\n| GRANT ALL PRIVILEGES ON *.* TO \'alice\'@\'localhost\' IDENTIFIED BY PASSWORD\n\'*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19\' WITH GRANT OPTION |\n| GRANT PROXY ON \'dba\'@\'localhost\' TO \'alice\'@\'localhost\' WITH GRANT OPTION \n |\n+------------------------------------------------------------------------------\n----------------------------------------------------------+\n\nGRANT PROXY ON \'dba\'@\'localhost\' TO \'bob\'@\'localhost\';\n\nA user account can grant the PROXY privilege for any other user account if the\ngranter has the PROXY privilege for the \'\'@\'%\' anonymous user account, like\nthis:\n\nGRANT PROXY ON \'\'@\'%\' TO \'dba\'@\'localhost\' WITH GRANT OPTION;\n\nFor example, the following example succeeds because the user can grant the\nPROXY privilege for any other user account:\n\nSELECT USER(), CURRENT_USER();\n+-----------------+-----------------+\n| USER() | CURRENT_USER() |\n+-----------------+-----------------+\n| alice@localhost | alice@localhost |\n+-----------------+-----------------+\n\nSHOW GRANTS;\n+------------------------------------------------------------------------------\n----------------------------------------------------------+\n| Grants for alice@localhost \n |\n+------------------------------------------------------------------------------\n----------------------------------------------------------+\n| GRANT ALL PRIVILEGES ON *.* TO \'alice\'@\'localhost\' IDENTIFIED BY PASSWORD\n\'*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19\' WITH GRANT OPTION |\n| GRANT PROXY ON \'\'@\'%\' TO \'alice\'@\'localhost\' WITH GRANT OPTION \n |\n+------------------------------------------------------------------------------\n----------------------------------------------------------+\n\nGRANT PROXY ON \'app1_dba\'@\'localhost\' TO \'bob\'@\'localhost\';\nQuery OK, 0 rows affected (0.004 sec)\n\nGRANT PROXY ON \'app2_dba\'@\'localhost\' TO \'carol\'@\'localhost\';\nQuery OK, 0 rows affected (0.004 sec)\n\nThe default root user accounts created by mariadb-install-db have this\nprivilege. For example:\n\nGRANT ALL PRIVILEGES ON *.* TO \'root\'@\'localhost\' WITH GRANT OPTION;\nGRANT PROXY ON \'\'@\'%\' TO \'root\'@\'localhost\' WITH GRANT OPTION;\n\nThis allows the default root user accounts to grant the PROXY privilege for\nany other user account, and it also allows the default root user accounts to\ngrant others the privilege to do the same.\n\nAuthentication Options\n----------------------\n\nThe authentication options for the GRANT statement are the same as those for\nthe CREATE USER statement.\n\nIDENTIFIED BY \'password\'\n------------------------\n\nThe optional IDENTIFIED BY clause can be used to provide an account with a\npassword. The password should be specified in plain text. It will be hashed by\nthe PASSWORD function prior to being stored.\n\nFor example, if our password is mariadb, then we can create the user with:\n\nGRANT USAGE ON *.* TO foo2@test IDENTIFIED BY \'mariadb\';\n\nIf you do not specify a password with the IDENTIFIED BY clause, the user will\nbe able to connect without a password. A blank password is not a wildcard to\nmatch any password. The user must connect without providing a password if no\npassword is set.\n\nIf the user account already exists and if you provide the IDENTIFIED BY\nclause, then the user\'s password will be changed. You must have the privileges\nneeded for the SET PASSWORD statement to change a user\'s password with GRANT.\n\nThe only authentication plugins that this clause supports are\nmysql_native_password and mysql_old_password.\n\nIDENTIFIED BY PASSWORD \'password_hash\'\n--------------------------------------\n\nThe optional IDENTIFIED BY PASSWORD clause can be used to provide an account\nwith a password that has already been hashed. The password should be specified\nas a hash that was provided by the PASSWORD function. It will be stored as-is.\n\nFor example, if our password is mariadb, then we can find the hash with:\n\nSELECT PASSWORD(\'mariadb\');\n+-------------------------------------------+\n| PASSWORD(\'mariadb\') |\n+-------------------------------------------+\n| *54958E764CE10E50764C2EECBB71D01F08549980 |\n+-------------------------------------------+\n1 row in set (0.00 sec)\n\nAnd then we can create a user with the hash:\n\nGRANT USAGE ON *.* TO foo2@test IDENTIFIED BY \n PASSWORD \'*54958E764CE10E50764C2EECBB71D01F08549980\';\n\nIf you do not specify a password with the IDENTIFIED BY clause, the user will\nbe able to connect without a password. A blank password is not a wildcard to\nmatch any password. The user must connect without providing a password if no\npassword is set.\n\nIf the user account already exists and if you provide the IDENTIFIED BY\nclause, then the user\'s password will be changed. You must have the privileges\nneeded for the SET PASSWORD statement to change a user\'s password with GRANT.\n\nThe only authentication plugins that this clause supports are\nmysql_native_password and mysql_old_password.\n\nIDENTIFIED {VIA|WITH} authentication_plugin\n-------------------------------------------\n\nThe optional IDENTIFIED VIA authentication_plugin allows you to specify that\nthe account should be authenticated by a specific authentication plugin. The\nplugin name must be an active authentication plugin as per SHOW PLUGINS. If it\ndoesn\'t show up in that output, then you will need to install it with INSTALL\nPLUGIN or INSTALL SONAME.\n\nFor example, this could be used with the PAM authentication plugin:\n\nGRANT USAGE ON *.* TO foo2@test IDENTIFIED VIA pam;\n\nSome authentication plugins allow additional arguments to be specified after a\nUSING or AS keyword. For example, the PAM authentication plugin accepts a\nservice name:\n\nGRANT USAGE ON *.* TO foo2@test IDENTIFIED VIA pam USING \'mariadb\';\n\nThe exact meaning of the additional argument would depend on the specific\nauthentication plugin.\n\nMariaDB starting with 10.4.0\n----------------------------\nThe USING or AS keyword can also be used to provide a plain-text password to a\nplugin if it\'s provided as an argument to the PASSWORD() function. This is\nonly valid for authentication plugins that have implemented a hook for the\nPASSWORD() function. For example, the ed25519 authentication plugin supports\nthis:\n\nCREATE USER safe@\'%\' IDENTIFIED VIA ed25519 \n USING PASSWORD(\'secret\');\n\nMariaDB starting with 10.4.3\n----------------------------\nOne can specify many authentication plugins, they all work as alternatives\nways of authenticating a user:\n\nCREATE USER safe@\'%\' IDENTIFIED VIA ed25519 \n USING PASSWORD(\'secret\') OR unix_socket;\n\nBy default, when you create a user without specifying an authentication\nplugin, MariaDB uses the mysql_native_password plugin.\n\nResource Limit Options\n----------------------\n\nIt is possible to set per-account limits for certain server resources. The\nfollowing table shows the values that can be set per account:\n\n+--------------------------------------+--------------------------------------+\n| Limit Type | Decription |\n+--------------------------------------+--------------------------------------+\n| MAX_QUERIES_PER_HOUR | Number of statements that the |\n| | account can issue per hour |\n| | (including updates) |\n+--------------------------------------+--------------------------------------+\n| MAX_UPDATES_PER_HOUR | Number of updates (not queries) |\n| | that the account can issue per hour |\n+--------------------------------------+--------------------------------------+\n| MAX_CONNECTIONS_PER_HOUR | Number of connections that the |\n| | account can start per hour |\n+--------------------------------------+--------------------------------------+\n| MAX_USER_CONNECTIONS | Number of simultaneous connections |\n| | that can be accepted from the same |\n| | account; if it is 0, |\n| | max_connections will be used |\n| | instead; if max_connections is 0, |\n| | there is no limit for this |\n| | account\'s simultaneous connections. |\n+--------------------------------------+--------------------------------------+\n| MAX_STATEMENT_TIME | Timeout, in seconds, for statements |\n| | executed by the user. See also |\n| | Aborting Statements that Exceed a |\n| | Certain Time to Execute. |\n+--------------------------------------+--------------------------------------+\n\nIf any of these limits are set to 0, then there is no limit for that resource\nfor that user.\n\nTo set resource limits for an account, if you do not want to change that\naccount\'s privileges, you can issue a GRANT statement with the USAGE\nprivilege, which has no meaning. The statement can name some or all limit\ntypes, in any order.\n\nHere is an example showing how to set resource limits:\n\nGRANT USAGE ON *.* TO \'someone\'@\'localhost\' WITH\n MAX_USER_CONNECTIONS 0\n MAX_QUERIES_PER_HOUR 200;\n\nThe resources are tracked per account, which means \'user\'@\'server\'; not per\nuser name or per connection.\n\nThe count can be reset for all users using FLUSH USER_RESOURCES, FLUSH\nPRIVILEGES or mariadb-admin reload.\n\nUsers with the CONNECTION ADMIN privilege (in MariaDB 10.5.2 and later) or the\nSUPER privilege are not restricted by max_user_connections, max_connections,\nor max_password_errors.\n\nPer account resource limits are stored in the user table, in the mysql\ndatabase. Columns used for resources limits are named max_questions,\nmax_updates, max_connections (for MAX_CONNECTIONS_PER_HOUR), and\nmax_user_connections (for MAX_USER_CONNECTIONS).\n\nTLS Options\n-----------\n\nBy default, MariaDB transmits data between the server and clients without\nencrypting it. This is generally acceptable when the server and client run on\nthe same host or in networks where security is guaranteed through other means.\nHowever, in cases where the server and client exist on separate networks or\nthey are in a high-risk network, the lack of encryption does introduce\nsecurity concerns as a malicious actor could potentially eavesdrop on the\ntraffic as it is sent over the network between them.\n\nTo mitigate this concern, MariaDB allows you to encrypt data in transit\nbetween the server and clients using the Transport Layer Security (TLS)\nprotocol. TLS was formerly known as Secure Socket Layer (SSL), but strictly\nspeaking the SSL protocol is a predecessor to TLS and, that version of the\nprotocol is now considered insecure. The documentation still uses the term SSL\noften and for compatibility reasons TLS-related server system and status\nvariables still use the prefix ssl_, but internally, MariaDB only supports its\nsecure successors.\n\nSee Secure Connections Overview for more information about how to determine\nwhether your MariaDB server has TLS support.\n\nYou can set certain TLS-related restrictions for specific user accounts. For\ninstance, you might use this with user accounts that require access to\nsensitive data while sending it across networks that you do not control. These\nrestrictions can be enabled for a user account with the CREATE USER, ALTER\nUSER, or GRANT statements. The following options are available:\n\n+---------------------------+------------------------------------------------+\n| Option | Description |\n+---------------------------+------------------------------------------------+\n| REQUIRE NONE | TLS is not required for this account, but can |\n| | still be used. |\n+---------------------------+------------------------------------------------+\n| REQUIRE SSL | The account must use TLS, but no valid X509 |\n| | certificate is required. This option cannot |\n| | be combined with other TLS options. |\n+---------------------------+------------------------------------------------+\n| REQUIRE X509 | The account must use TLS and must have a |\n| | valid X509 certificate. This option implies |\n| | REQUIRE SSL. This option cannot be combined |\n| | with other TLS options. |\n+---------------------------+------------------------------------------------+\n| REQUIRE ISSUER \'issuer\' | The account must use TLS and must have a |\n| | valid X509 certificate. Also, the Certificate |\n| | Authority must be the one specified via the |\n| | string issuer. This option implies REQUIRE |\n| | X509. This option can be combined with the |\n| | SUBJECT, and CIPHER options in any order. |\n+---------------------------+------------------------------------------------+\n| REQUIRE SUBJECT \'subject\' | The account must use TLS and must have a |\n| | valid X509 certificate. Also, the |\n| | certificate\'s Subject must be the one |\n| | specified via the string subject. This option |\n| | implies REQUIRE X509. This option can be |\n| | combined with the ISSUER, and CIPHER options |\n| | in any order. |\n+---------------------------+------------------------------------------------+\n| REQUIRE CIPHER \'cipher\' | The account must use TLS, but no valid X509 |\n| | certificate is required. Also, the encryption |\n| | used for the connection must use a specific |\n| | cipher method specified in the string cipher. |\n| | This option implies REQUIRE SSL. This option |\n| | can be combined with the ISSUER, and SUBJECT |\n| | options in any order. |\n+---------------------------+------------------------------------------------+\n\nThe REQUIRE keyword must be used only once for all specified options, and the\nAND keyword can be used to separate individual options, but it is not required.\n\nFor example, you can create a user account that requires these TLS options\nwith the following:\n\nGRANT USAGE ON *.* TO \'alice\'@\'%\'\n REQUIRE SUBJECT \'/CN=alice/O=My Dom, Inc./C=US/ST=Oregon/L=Portland\'\n AND ISSUER \'/C=FI/ST=Somewhere/L=City/ O=Some Company/CN=Peter\nParker/emailAddress=p.parker@marvel.com\'\n AND CIPHER \'SHA-DES-CBC3-EDH-RSA\';\n\nIf any of these options are set for a specific user account, then any client\nwho tries to connect with that user account will have to be configured to\nconnect with TLS.\n\nSee Securing Connections for Client and Server for information on how to\nenable TLS on the client and server.\n\nRoles\n-----\n\nSyntax\n------\n\nGRANT role TO grantee [, grantee ... ]\n[ WITH ADMIN OPTION ]\n\ngrantee:\n rolename\n username [authentication_option]\n\nThe GRANT statement is also used to grant the use of a role to one or more\nusers or other roles. In order to be able to grant a role, the grantor doing\nso must have permission to do so (see WITH ADMIN in the CREATE ROLE article).\n\nSpecifying the WITH ADMIN OPTION permits the grantee to in turn grant the role\nto another.\n\nFor example, the following commands show how to grant the same role to a\ncouple different users.\n\nGRANT journalist TO hulda;\n\nGRANT journalist TO berengar WITH ADMIN OPTION;\n\nIf a user has been granted a role, they do not automatically obtain all\npermissions associated with that role. These permissions are only in use when\nthe user activates the role with the SET ROLE statement.\n\nTO PUBLIC\n---------\n\nMariaDB starting with 10.11\n---------------------------\n\nSyntax\n------\n\nGRANT ON . TO PUBLIC;\nREVOKE ON . FROM PUBLIC;\n\nGRANT ... TO PUBLIC grants privileges to all users with access to the server.\nThe privileges also apply to users created after the privileges are granted.\nThis can be useful when one only wants to state once that all users need to\nhave a certain set of privileges.\n\nWhen running SHOW GRANTS, a user will also see all privileges inherited from\nPUBLIC. SHOW GRANTS FOR PUBLIC will only show TO PUBLIC grants.\n\nGrant Examples\n--------------\n\nGranting Root-like Privileges\n-----------------------------\n\nYou can create a user that has privileges similar to the default root accounts\nby executing the following:\n\nCREATE USER \'alexander\'@\'localhost\';\nGRANT ALL PRIVILEGES ON *.* to \'alexander\'@\'localhost\' WITH GRANT OPTION;\n\nURL: https://mariadb.com/kb/en/grant/','','https://mariadb.com/kb/en/grant/'), (118,'Authentication from MariaDB 10.4',10,'MariaDB starting with 10.4\n--------------------------\nMariaDB 10.4 introduced a number of changes to the authentication process,\nintended to make things easier and more intuitive.\n\nOverview\n--------\n\nThere are four new main features in 10.4 relating to authentication:\n\n* It is possible to use more than one authentication plugin for each user\naccount. For example, this can be useful to slowly migrate users to the more\nsecure ed25519 authentication plugin over time, while allowing the old\nmysql_native_password authentication plugin as an alternative for the\ntransitional period.\n* The root@localhost user account created by mariadb-install-db is created\nwith the ability to use two authentication plugins.\nFirst, it is configured to try to use the unix_socket authentication plugin.\nThis allows the root@localhost user to login without a password via the local\nUnix socket file defined by the socket system variable, as long as the login\nis attempted from a process owned by the operating system root user account.\nSecond, if authentication fails with the unix_socket authentication plugin,\nthen it is configured to try to use the mysql_native_password authentication\nplugin. However, an invalid password is initially set, so in order to\nauthenticate this way, a password must be set with SET PASSWORD.\nHowever, just using the unix_socket authentication plugin may be fine for many\nusers, and it is very secure. You may want to try going without password\nauthentication to see how well it works for you. Remember, the best way to\nkeep your password safe is not to have one!\n\n* All user accounts, passwords, and global privileges are now stored in the\nmysql.global_priv table. The mysql.user table still exists and has exactly the\nsame set of columns as before, but it’s now a view that references the\nmysql.global_priv table. Tools that analyze the mysql.user table should\ncontinue to work as before. From MariaDB 10.4.13, the dedicated mariadb.sys\nuser is created as the definer of this view. Previously root was the definer,\nwhich resulted in privilege problems when this username was changed.\n* MariaDB 10.4 adds supports for User Password Expiry, which is not active by\ndefault.\n\nDescription\n-----------\n\nAs a result of the above changes, the open-for-everyone all-powerful root\naccount is finally gone. And installation scripts will no longer demand that\nyou \"PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !\", because\nthe root account is securely created automatically.\n\nTwo all-powerful accounts are created by default — root and the OS user that\nowns the data directory, typically mysql. They are created as:\n\nCREATE USER root@localhost IDENTIFIED VIA unix_socket OR mysql_native_password\nUSING \'invalid\'\nCREATE USER mysql@localhost IDENTIFIED VIA unix_socket OR\nmysql_native_password USING \'invalid\'\n\nUsing unix_socket means that if you are the system root user, you can login as\nroot@locahost without a password. This technique was pioneered by Otto\nKekäläinen in Debian MariaDB packages and has been successfully used in Debian\nsince as early as MariaDB 10.0.\n\nIt is based on a simple fact that asking the system root for a password adds\nno extra security — root has full access to all the data files and all process\nmemory anyway. But not asking for a password means, there is no root password\nto forget (no need for the numerous tutorials on \"how to reset MariaDB root\npassword\"). And if you want to script some tedious database work, there is no\nneed to store the root password in plain text for the script to use (no need\nfor debian-sys-maint user).\n\nStill, some users may wish to log in as MariaDB root without using sudo. Hence\nthe old authentication method — conventional MariaDB password — is still\navailable. By default it is disabled (\"invalid\" is not a valid password hash),\nbut one can set the password with a usual SET PASSWORD statement. And still\nretain the password-less access via sudo.\n\nIf you install MariaDB locally (say from a tarball), you would not want to use\nsudo to be able to login. This is why MariaDB creates a second all-powerful\nuser with the same name as a system user that owns the data directory. In\nlocal (not system-wide) installations, this will be the user who installed\nMariaDB — they automatically get convenient password-less root-like access,\nbecause they can access all the data files anyway.\n\nEven if MariaDB is installed system-wide, you may not want to run your\ndatabase maintenance scripts as system root — now you can run them as system\nmysql user. And you will know that they will never destroy your entire system,\neven if you make a typo in a shell script.\n\nHowever, seasoned MariaDB DBAs who are used to the old ways do need to make\nsome changes. See the examples below for common tasks.\n\nCookbook\n--------\n\nAfter installing MariaDB system-wide the first thing you’ve got used to doing\nis logging in into the unprotected root account and protecting it, that is,\nsetting the root password:\n\n$ sudo dnf install MariaDB-server\n$ mysql -uroot\n...\nMariaDB> set password = password(\"XH4VmT3_jt\");\n\nThis is not only unnecessary now, it will simply not work — there is no\nunprotected root account. To login as root use\n\n$ sudo dnf install MariaDB-server\n$ sudo mysql\n\nNote that it implies you are connecting via the unix socket, not tcp. If you\nhappen to have protocol=tcp in a system-wide /etc/my.cnf file, use sudo mysql\n--protocol=socket.\n\nAfter installing MariaDB locally you’ve also used to connect to the\nunprotected root account using mysql -uroot. This will not work either, simply\nuse mysql without specifying a username.\n\nIf you\'ve forgotten your root password, no problem — you can still connect\nusing sudo and change the password. And if you\'ve also removed unix_socket\nauthentication, to restore access do as follows:\n\n* restart MariaDB with --skip-grant-tables\n* login into the unprotected server\n* run FLUSH PRIVILEGES (note, before 10.4 this would’ve been the last step,\nnot anymore). This disables --skip-grant-tables and allows you to change the\nstored authentication method\n* run SET PASSWORD FOR root@localhost to change the root password.\n\nTo view inside privilege tables, the old mysql.user table still exists. You\ncan select from it as before, although you cannot update it anymore. It\ndoesn’t show alternative authentication plugins and this was one of the\nreasons for switching to the mysql.global_priv table — complex authentication\nrules did not fit into rigid structure of a relational table. You can select\nfrom the new table, for example:\n\nselect concat(user, \'@\', host, \' => \', json_detailed(priv)) from\nmysql.global_priv;\n\nReverting to the Previous Authentication Method for root@localhost\n------------------------------------------------------------------\n\nIf you don\'t want the root@localhost user account created by\nmariadb-install-db to use unix_socket authentication by default, then there\nare a few ways to revert to the previous mysql_native_password authentication\nmethod for this user account.\n\nConfiguring mariadb-install-db to Revert to the Previous Authentication Method\n------------------------------------------------------------------------------\n\nOne way to revert to the previous mysql_native_password authentication method\nfor the root@localhost user account is to execute mariadb-install-db with a\nspecial option. If mariadb-install-db is executed while\n--auth-root-authentication-method=normal is specified, then it will create the\ndefault user accounts using the default behavior of MariaDB 10.3 and before.\n\nThis means that the root@localhost user account will use mysql_native_password\nauthentication by default. There are some other differences as well. See\nmariadb-install-db: User Accounts Created by Default for more information.\n\nFor example, the option can be set on the command-line while running\nmariadb-install-db:\n\nmariadb-install-db --user=mysql --datadir=/var/lib/mysql\n--auth-root-authentication-method=normal\n\nThe option can also be set in an option file in an option group supported by\nmariadb-install-db. For example:\n\n[mysql_install_db]\nauth_root_authentication_method=normal\n\nIf the option is set in an option file and if mariadb-install-db is executed,\nthen mariadb-install-db will read this option from the option file, and it\nwill automatically set this option.\n\nAltering the User Account to Revert to the Previous Authentication Method\n-------------------------------------------------------------------------\n\nIf you have already installed MariaDB, and if the root@localhost user account\nis already using unix_socket authentication, then you can revert to the old\nmysql_native_password authentication method for the user account by executing\nthe following:\n\nALTER USER root@localhost IDENTIFIED VIA mysql_native_password USING\nPASSWORD(\"verysecret\")\n\nURL: https://mariadb.com/kb/en/authentication-from-mariadb-104/','','https://mariadb.com/kb/en/authentication-from-mariadb-104/'), (88,'CASE OPERATOR',7,'Syntax\n------\n\nCASE value WHEN [compare_value] THEN result [WHEN [compare_value] THEN\nresult ...] [ELSE result] END\n\nCASE WHEN [condition] THEN result [WHEN [condition] THEN result ...]\n[ELSE result] END\n\nDescription\n-----------\n\nThe first version returns the result where value=compare_value. The second\nversion returns the result for the first condition that is true. If there was\nno matching result value, the result after ELSE is returned, or NULL if there\nis no ELSE part.\n\nThere is also a CASE statement, which differs from the CASE operator described\nhere.\n\nExamples\n--------\n\nSELECT CASE 1 WHEN 1 THEN \'one\' WHEN 2 THEN \'two\' ELSE \'more\' END;\n+------------------------------------------------------------+\n| CASE 1 WHEN 1 THEN \'one\' WHEN 2 THEN \'two\' ELSE \'more\' END |\n+------------------------------------------------------------+\n| one |\n+------------------------------------------------------------+\n\nSELECT CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END;\n+--------------------------------------------+\n| CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END |\n+--------------------------------------------+\n| true |\n+--------------------------------------------+\n\nSELECT CASE BINARY \'B\' WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END;\n+-----------------------------------------------------+\n| CASE BINARY \'B\' WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END |\n+-----------------------------------------------------+\n| NULL |\n+-----------------------------------------------------+\n\nURL: https://mariadb.com/kb/en/case-operator/','','https://mariadb.com/kb/en/case-operator/'), (89,'IF Function',7,'Syntax\n------\n\nIF(expr1,expr2,expr3)\n\nDescription\n-----------\n\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then IF() returns expr2;\notherwise it returns expr3. IF() returns a numeric or string value, depending\non the context in which it is used.\n\nNote: There is also an IF statement which differs from the IF() function\ndescribed here.\n\nExamples\n--------\n\nSELECT IF(1>2,2,3);\n+-------------+\n| IF(1>2,2,3) |\n+-------------+\n| 3 |\n+-------------+\n\nSELECT IF(1<2,\'yes\',\'no\');\n+--------------------+\n| IF(1<2,\'yes\',\'no\') |\n+--------------------+\n| yes |\n+--------------------+\n\nSELECT IF(STRCMP(\'test\',\'test1\'),\'no\',\'yes\');\n+---------------------------------------+\n| IF(STRCMP(\'test\',\'test1\'),\'no\',\'yes\') |\n+---------------------------------------+\n| no |\n+---------------------------------------+\n\nURL: https://mariadb.com/kb/en/if-function/','','https://mariadb.com/kb/en/if-function/'), (90,'IFNULL',7,'Syntax\n------\n\nIFNULL(expr1,expr2)\nNVL(expr1,expr2)\n\nDescription\n-----------\n\nIf expr1 is not NULL, IFNULL() returns expr1; otherwise it returns expr2.\nIFNULL() returns a numeric or string value, depending on the context in which\nit is used.\n\nFrom MariaDB 10.3, NVL() is an alias for IFNULL().\n\nExamples\n--------\n\nSELECT IFNULL(1,0); \n+-------------+\n| IFNULL(1,0) |\n+-------------+\n| 1 |\n+-------------+\n\nSELECT IFNULL(NULL,10);\n+-----------------+\n| IFNULL(NULL,10) |\n+-----------------+\n| 10 |\n+-----------------+\n\nSELECT IFNULL(1/0,10);\n+----------------+\n| IFNULL(1/0,10) |\n+----------------+\n| 10.0000 |\n+----------------+\n\nSELECT IFNULL(1/0,\'yes\');\n+-------------------+\n| IFNULL(1/0,\'yes\') |\n+-------------------+\n| yes |\n+-------------------+\n\nURL: https://mariadb.com/kb/en/ifnull/','','https://mariadb.com/kb/en/ifnull/'), (95,'COMMIT',8,'The COMMIT statement ends a transaction, saving any changes to the data so\nthat they become visible to subsequent transactions. Also, unlocks metadata\nchanged by current transaction. If autocommit is set to 1, an implicit commit\nis performed after each statement. Otherwise, all transactions which don\'t end\nwith an explicit COMMIT are implicitly rollbacked and the changes are lost.\nThe ROLLBACK statement can be used to do this explicitly.\n\nThe required syntax for the COMMIT statement is as follows:\n\nCOMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\n\nCOMMIT is the more important transaction terminator, as well as the more\ninteresting one. The basic form of the COMMIT statement is simply the keyword\nCOMMIT (the keyword WORK is simply noise and can be omitted without changing\nthe effect).\n\nThe optional AND CHAIN clause is a convenience for initiating a new\ntransaction as soon as the old transaction terminates. If AND CHAIN is\nspecified, then there is effectively nothing between the old and new\ntransactions, although they remain separate. The characteristics of the new\ntransaction will be the same as the characteristics of the old one — that is,\nthe new transaction will have the same access mode, isolation level and\ndiagnostics area size (we\'ll discuss all of these shortly) as the transaction\njust terminated.\n\nRELEASE tells the server to disconnect the client immediately after the\ncurrent transaction.\n\nThere are NO RELEASE and AND NO CHAIN options. By default, commits do not\nRELEASE or CHAIN, but it\'s possible to change this default behavior with the\ncompletion_type server system variable. In this case, the AND NO CHAIN and NO\nRELEASE options override the server default.\n\nURL: https://mariadb.com/kb/en/commit/','','https://mariadb.com/kb/en/commit/'), (120,'ST_X',11,'Syntax\n------\n\nST_X(p)\nX(p)\n\nDescription\n-----------\n\nReturns the X-coordinate value for the point p as a double-precision number.\n\nST_X() and X() are synonyms.\n\nExamples\n--------\n\nSET @pt = \'Point(56.7 53.34)\';\n\nSELECT X(GeomFromText(@pt));\n+----------------------+\n| X(GeomFromText(@pt)) |\n+----------------------+\n| 56.7 |\n+----------------------+\n\nURL: https://mariadb.com/kb/en/st_x/','','https://mariadb.com/kb/en/st_x/'), (121,'ST_Y',11,'Syntax\n------\n\nST_Y(p)\nY(p)\n\nDescription\n-----------\n\nReturns the Y-coordinate value for the point p as a double-precision number.\n\nST_Y() and Y() are synonyms.\n\nExamples\n--------\n\nSET @pt = \'Point(56.7 53.34)\';\n\nSELECT Y(GeomFromText(@pt));\n+----------------------+\n| Y(GeomFromText(@pt)) |\n+----------------------+\n| 53.34 |\n+----------------------+\n\nURL: https://mariadb.com/kb/en/st_y/','','https://mariadb.com/kb/en/st_y/'), (122,'X',11,'A synonym for ST_X.\n\nURL: https://mariadb.com/kb/en/point-properties-x/','','https://mariadb.com/kb/en/point-properties-x/'), (123,'Y',11,'A synonym for ST_Y.\n\nURL: https://mariadb.com/kb/en/point-properties-y/','','https://mariadb.com/kb/en/point-properties-y/'), (126,'DECODE_ORACLE',12,'MariaDB starting with 10.3.2\n----------------------------\nDECODE_ORACLE is a synonym for the Oracle mode version of the DECODE function,\nand is available in all modes.\n\nURL: https://mariadb.com/kb/en/decode_oracle/','','https://mariadb.com/kb/en/decode_oracle/'), (134,'MD5',12,'Syntax\n------\n\nMD5(str)\n\nDescription\n-----------\n\nCalculates an MD5 128-bit checksum for the string.\n\nThe return value is a 32-hex digit string, and as of MariaDB 5.5, is a\nnonbinary string in the connection character set and collation, determined by\nthe values of the character_set_connection and collation_connection system\nvariables. Before 5.5, the return value was a binary string.\n\nNULL is returned if the argument was NULL.\n\nExamples\n--------\n\nSELECT MD5(\'testing\');\n+----------------------------------+\n| MD5(\'testing\') |\n+----------------------------------+\n| ae2b1fca515949e5d54fb22b8ed95575 |\n+----------------------------------+\n\nURL: https://mariadb.com/kb/en/md5/','','https://mariadb.com/kb/en/md5/'), (94,'START TRANSACTION',8,'Syntax\n------\n\nSTART TRANSACTION [transaction_property [, transaction_property] ...] | BEGIN\n[WORK]\nCOMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nROLLBACK [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nSET autocommit = {0 | 1}\n\ntransaction_property:\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n\nDescription\n-----------\n\nThe START TRANSACTION or BEGIN statement begins a new transaction. COMMIT\ncommits the current transaction, making its changes permanent. ROLLBACK rolls\nback the current transaction, canceling its changes. The SET autocommit\nstatement disables or enables the default autocommit mode for the current\nsession.\n\nSTART TRANSACTION and SET autocommit = 1 implicitly commit the current\ntransaction, if any.\n\nThe optional WORK keyword is supported for COMMIT and ROLLBACK, as are the\nCHAIN and RELEASE clauses. CHAIN and RELEASE can be used for additional\ncontrol over transaction completion. The value of the completion_type system\nvariable determines the default completion behavior.\n\nThe AND CHAIN clause causes a new transaction to begin as soon as the current\none ends, and the new transaction has the same isolation level as the\njust-terminated transaction. The RELEASE clause causes the server to\ndisconnect the current client session after terminating the current\ntransaction. Including the NO keyword suppresses CHAIN or RELEASE completion,\nwhich can be useful if the completion_type system variable is set to cause\nchaining or release completion by default.\n\nAccess Mode\n-----------\n\nThe access mode specifies whether the transaction is allowed to write data or\nnot. By default, transactions are in READ WRITE mode (see the tx_read_only\nsystem variable). READ ONLY mode allows the storage engine to apply\noptimizations that cannot be used for transactions which write data. Note that\nunlike the global read_only mode, READ_ONLY ADMIN (and SUPER before MariaDB\n10.11.0) privilege doesn\'t allow writes and DDL statements on temporary tables\nare not allowed either.\n\nIt is not permitted to specify both READ WRITE and READ ONLY in the same\nstatement.\n\nREAD WRITE and READ ONLY can also be specified in the SET TRANSACTION\nstatement, in which case the specified mode is valid for all sessions, or for\nall subsequent transaction used by the current session.\n\nautocommit\n----------\n\nBy default, MariaDB runs with autocommit mode enabled. This means that as soon\nas you execute a statement that updates (modifies) a table, MariaDB stores the\nupdate on disk to make it permanent. To disable autocommit mode, use the\nfollowing statement:\n\nSET autocommit=0;\n\nAfter disabling autocommit mode by setting the autocommit variable to zero,\nchanges to transaction-safe tables (such as those for InnoDB or NDBCLUSTER)\nare not made permanent immediately. You must use COMMIT to store your changes\nto disk or ROLLBACK to ignore the changes.\n\nTo disable autocommit mode for a single series of statements, use the START\nTRANSACTION statement.\n\nDDL Statements\n--------------\n\nDDL statements (CREATE, ALTER, DROP) and administrative statements (FLUSH,\nRESET, OPTIMIZE, ANALYZE, CHECK, REPAIR, CACHE INDEX), transaction management\nstatements (BEGIN, START TRANSACTION) and LOAD DATA INFILE, cause an implicit\nCOMMIT and start a new transaction. An exception to this rule are the DDL that\noperate on temporary tables: you can CREATE, ALTER and DROP them without\ncausing any COMMIT, but those actions cannot be rolled back. This means that\nif you call ROLLBACK, the temporary tables you created in the transaction will\nremain, while the rest of the transaction will be rolled back.\n\nTransactions cannot be used in Stored Functions or Triggers. In Stored\nProcedures and Events BEGIN is not allowed, so you should use START\nTRANSACTION instead.\n\nA transaction acquires a metadata lock on every table it accesses to prevent\nother connections from altering their structure. The lock is released at the\nend of the transaction. This happens even with non-transactional storage\nengines (like MEMORY or CONNECT), so it makes sense to use transactions with\nnon-transactional tables.\n\nin_transaction\n--------------\n\nThe in_transaction system variable is a session-only, read-only variable that\nreturns 1 inside a transaction, and 0 if not in a transaction.\n\nWITH CONSISTENT SNAPSHOT\n------------------------\n\nThe WITH CONSISTENT SNAPSHOT option starts a consistent read for storage\nengines such as InnoDB that can do so, the same as if a START TRANSACTION\nfollowed by a SELECT from any InnoDB table was issued.\n\nSee Enhancements for START TRANSACTION WITH CONSISTENT SNAPSHOT.\n\nExamples\n--------\n\nSTART TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;\n\nURL: https://mariadb.com/kb/en/start-transaction/','','https://mariadb.com/kb/en/start-transaction/'), (99,'SAVEPOINT',8,'Syntax\n------\n\nSAVEPOINT identifier\nROLLBACK [WORK] TO [SAVEPOINT] identifier\nRELEASE SAVEPOINT identifier\n\nDescription\n-----------\n\nInnoDB supports the SQL statements SAVEPOINT, ROLLBACK TO SAVEPOINT, RELEASE\nSAVEPOINT and the optional WORK keyword for ROLLBACK.\n\nEach savepoint must have a legal MariaDB identifier. A savepoint is a named\nsub-transaction.\n\nNormally ROLLBACK undoes the changes performed by the whole transaction. When\nused with the TO clause, it undoes the changes performed after the specified\nsavepoint, and erases all subsequent savepoints. However, all locks that have\nbeen acquired after the save point will survive. RELEASE SAVEPOINT does not\nrollback or commit any changes, but removes the specified savepoint.\n\nWhen the execution of a trigger or a stored function begins, it is not\npossible to use statements which reference a savepoint which was defined from\nout of that stored program.\n\nWhen a COMMIT (including implicit commits) or a ROLLBACK statement (with no TO\nclause) is performed, they act on the whole transaction, and all savepoints\nare removed.\n\nErrors\n------\n\nIf COMMIT or ROLLBACK is issued and no transaction was started, no error is\nreported.\n\nIf SAVEPOINT is issued and no transaction was started, no error is reported\nbut no savepoint is created. When ROLLBACK TO SAVEPOINT or RELEASE SAVEPOINT\nis called for a savepoint that does not exist, an error like this is issued:\n\nERROR 1305 (42000): SAVEPOINT svp_name does not exist\n\nURL: https://mariadb.com/kb/en/savepoint/','','https://mariadb.com/kb/en/savepoint/'), (140,'ENDPOINT',13,'A synonym for ST_ENDPOINT.\n\nURL: https://mariadb.com/kb/en/linestring-properties-endpoint/','','https://mariadb.com/kb/en/linestring-properties-endpoint/'), (141,'GLENGTH',13,'Syntax\n------\n\nGLength(ls)\n\nDescription\n-----------\n\nReturns as a double-precision number the length of the LineString value ls in\nits associated spatial reference.\n\nExamples\n--------\n\nSET @ls = \'LineString(1 1,2 2,3 3)\';\n\nSELECT GLength(GeomFromText(@ls));\n+----------------------------+\n| GLength(GeomFromText(@ls)) |\n+----------------------------+\n| 2.82842712474619 |\n+----------------------------+\n\nURL: https://mariadb.com/kb/en/glength/','','https://mariadb.com/kb/en/glength/'), (142,'NumPoints',13,'A synonym for ST_NumPoints.\n\nURL: https://mariadb.com/kb/en/linestring-properties-numpoints/','','https://mariadb.com/kb/en/linestring-properties-numpoints/'), (143,'PointN',13,'A synonym for ST_PointN.\n\nURL: https://mariadb.com/kb/en/linestring-properties-pointn/','','https://mariadb.com/kb/en/linestring-properties-pointn/'), (96,'ROLLBACK',8,'The ROLLBACK statement rolls back (ends) a transaction, destroying any changes\nto SQL-data so that they never become visible to subsequent transactions. The\nrequired syntax for the ROLLBACK statement is as follows.\n\nROLLBACK [ WORK ] [ AND [ NO ] CHAIN ] \n[ TO [ SAVEPOINT ] { | } ]\n\nThe ROLLBACK statement will either end a transaction, destroying all data\nchanges that happened during any of the transaction, or it will just destroy\nany data changes that happened since you established a savepoint. The basic\nform of the ROLLBACK statement is just the keyword ROLLBACK (the keyword WORK\nis simply noise and can be omitted without changing the effect).\n\nThe optional AND CHAIN clause is a convenience for initiating a new\ntransaction as soon as the old transaction terminates. If AND CHAIN is\nspecified, then there is effectively nothing between the old and new\ntransactions, although they remain separate. The characteristics of the new\ntransaction will be the same as the characteristics of the old one — that is,\nthe new transaction will have the same access mode, isolation level and\ndiagnostics area size (we\'ll discuss all of these shortly) as the transaction\njust terminated. The AND NO CHAIN option just tells your DBMS to end the\ntransaction — that is, these four SQL statements are equivalent:\n\nROLLBACK; \nROLLBACK WORK; \nROLLBACK AND NO CHAIN; \nROLLBACK WORK AND NO CHAIN;\n\nAll of them end a transaction without saving any transaction characteristics.\nThe only other options, the equivalent statements:\n\nROLLBACK AND CHAIN;\nROLLBACK WORK AND CHAIN;\n\nboth tell your DBMS to end a transaction, but to save that transaction\'s\ncharacteristics for the next transaction.\n\nROLLBACK is much simpler than COMMIT: it may involve no more than a few\ndeletions (of Cursors, locks, prepared SQL statements and log-file entries).\nIt\'s usually assumed that ROLLBACK can\'t fail, although such a thing is\nconceivable (for example, an encompassing transaction might reject an attempt\nto ROLLBACK because it\'s lining up for a COMMIT).\n\nROLLBACK cancels all effects of a transaction. It does not cancel effects on\nobjects outside the DBMS\'s control (for example the values in host program\nvariables or the settings made by some SQL/CLI function calls). But in\ngeneral, it is a convenient statement for those situations when you say \"oops,\nthis isn\'t working\" or when you simply don\'t care whether your temporary work\nbecomes permanent or not.\n\nHere is a moot question. If all you\'ve been doing is SELECTs, so that there\nhave been no data changes, should you end the transaction with ROLLBACK or\nCOMMIT? It shouldn\'t really matter because both ROLLBACK and COMMIT do the\nsame transaction-terminating job. However, the popular conception is that\nROLLBACK implies failure, so after a successful series of SELECT statements\nthe convention is to end the transaction with COMMIT rather than ROLLBACK.\n\nMariaDB (and most other DBMSs) supports rollback of SQL-data change\nstatements, but not of SQL-Schema statements. This means that if you use any\nof CREATE, ALTER, DROP, GRANT, REVOKE, you are implicitly committing at\nexecution time.\n\nINSERT INTO Table_2 VALUES(5); \nDROP TABLE Table_3 CASCADE; \nROLLBACK;\n\nThe result will be that both the INSERT and the DROP will go through as\nseparate transactions so the ROLLBACK will have no effect.\n\nURL: https://mariadb.com/kb/en/rollback/','','https://mariadb.com/kb/en/rollback/'), (100,'Metadata Locking',8,'MariaDB supports metadata locking. This means that when a transaction\n(including XA transactions) uses a table, it locks its metadata until the end\nof transaction. Non-transactional tables are also locked, as well as views and\nobjects which are related to locked tables/views (stored functions, triggers,\netc). When a connection tries to use a DDL statement (like an ALTER TABLE)\nwhich modifies a table that is locked, that connection is queued, and has to\nwait until it\'s unlocked. Using savepoints and performing a partial rollback\ndoes not release metadata locks.\n\nLOCK TABLES ... WRITE are also queued. Some wrong statements which produce an\nerror may not need to wait for the lock to be freed.\n\nThe metadata lock\'s timeout is determined by the value of the\nlock_wait_timeout server system variable (in seconds). However, note that its\ndefault value is 31536000 (1 year, MariaDB <= 10.2.3), or 86400 (1 day,\nMariaDB >= 10.2.4). If this timeout is exceeded, the following error is\nreturned:\n\nERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction\n\nIf the metadata_lock_info plugin is installed, the Information Schema\nmetadata_lock_info table stores information about existing metadata locks.\n\nMariaDB starting with 10.5.2\n----------------------------\nFrom MariaDB 10.5, the Performance Schema metadata_locks table contains\nmetadata lock information.\n\nExample\n-------\n\nLet\'s use the following MEMORY (non-transactional) table:\n\nCREATE TABLE t (a INT) ENGINE = MEMORY;\n\nConnection 1 starts a transaction, and INSERTs a row into t:\n\nSTART TRANSACTION;\n\nINSERT INTO t SET a=1;\n\nt\'s metadata is now locked by connection 1. Connection 2 tries to alter t, but\nhas to wait:\n\nALTER TABLE t ADD COLUMN b INT;\n\nConnection 2\'s prompt is blocked now.\n\nNow connection 1 ends the transaction:\n\nCOMMIT;\n\n...and connection 2 finally gets the output of its command:\n\nQuery OK, 1 row affected (35.23 sec)\nRecords: 1 Duplicates: 0 Warnings: 0\n\nURL: https://mariadb.com/kb/en/metadata-locking/','','https://mariadb.com/kb/en/metadata-locking/'), (144,'STARTPOINT',13,'A synonym for ST_STARTPOINT.\n\nURL: https://mariadb.com/kb/en/linestring-properties-startpoint/','','https://mariadb.com/kb/en/linestring-properties-startpoint/'), (145,'ST_ENDPOINT',13,'Syntax\n------\n\nST_EndPoint(ls)\nEndPoint(ls)\n\nDescription\n-----------\n\nReturns the Point that is the endpoint of the LineString value ls.\n\nST_EndPoint() and EndPoint() are synonyms.\n\nExamples\n--------\n\nSET @ls = \'LineString(1 1,2 2,3 3)\';\n\nSELECT AsText(EndPoint(GeomFromText(@ls)));\n+-------------------------------------+\n| AsText(EndPoint(GeomFromText(@ls))) |\n+-------------------------------------+\n| POINT(3 3) |\n+-------------------------------------+\n\nURL: https://mariadb.com/kb/en/st_endpoint/','','https://mariadb.com/kb/en/st_endpoint/'), (146,'ST_NUMPOINTS',13,'Syntax\n------\n\nST_NumPoints(ls)\nNumPoints(ls)\n\nDescription\n-----------\n\nReturns the number of Point objects in the LineString value ls.\n\nST_NumPoints() and NumPoints() are synonyms.\n\nExamples\n--------\n\nSET @ls = \'LineString(1 1,2 2,3 3)\';\n\nSELECT NumPoints(GeomFromText(@ls));\n+------------------------------+\n| NumPoints(GeomFromText(@ls)) |\n+------------------------------+\n| 3 |\n+------------------------------+\n\nURL: https://mariadb.com/kb/en/st_numpoints/','','https://mariadb.com/kb/en/st_numpoints/'), (147,'ST_POINTN',13,'Syntax\n------\n\nST_PointN(ls,N)\nPointN(ls,N)\n\nDescription\n-----------\n\nReturns the N-th Point in the LineString value ls. Points are numbered\nbeginning with 1.\n\nST_PointN() and PointN() are synonyms.\n\nExamples\n--------\n\nSET @ls = \'LineString(1 1,2 2,3 3)\';\n\nSELECT AsText(PointN(GeomFromText(@ls),2));\n+-------------------------------------+\n| AsText(PointN(GeomFromText(@ls),2)) |\n+-------------------------------------+\n| POINT(2 2) |\n+-------------------------------------+\n\nURL: https://mariadb.com/kb/en/st_pointn/','','https://mariadb.com/kb/en/st_pointn/'), (97,'SET TRANSACTION',8,'Syntax\n------\n\nSET [GLOBAL | SESSION] TRANSACTION\n transaction_property [, transaction_property] ...\n\ntransaction_property:\n ISOLATION LEVEL level\n | READ WRITE\n | READ ONLY\n\nlevel:\n REPEATABLE READ\n | READ COMMITTED\n | READ UNCOMMITTED\n | SERIALIZABLE\n\nDescription\n-----------\n\nThis statement sets the transaction isolation level or the transaction access\nmode globally, for the current session, or for the next transaction:\n\n* With the GLOBAL keyword, the statement sets the default\n transaction level globally for all subsequent sessions. Existing sessions are\n unaffected.\n* With the SESSION keyword, the statement sets the default\n transaction level for all subsequent transactions performed within the\n current session.\n* Without any SESSION or GLOBAL keyword,\n the statement sets the isolation level for the next (not started) transaction\n performed within the current session.\n\nA change to the global default isolation level requires the SUPER privilege.\nAny session is free to change its session isolation level (even in the middle\nof a transaction), or the isolation level for its next transaction.\n\nIsolation Level\n---------------\n\nTo set the global default isolation level at server startup, use the\n--transaction-isolation=level option on the command line or in an option file.\nValues of level for this option use dashes rather than spaces, so the\nallowable values are READ_UNCOMMITTED, READ-COMMITTED, REPEATABLE-READ, or\nSERIALIZABLE. For example, to set the default isolation level to REPEATABLE\nREAD, use these lines in the [mysqld] section of an option file:\n\n[mysqld]\ntransaction-isolation = REPEATABLE-READ\nTo determine the global and session transaction isolation levels at runtime,\ncheck the value of the tx_isolation system variable (note that the variable\nhas been renamed transaction_isolation from MariaDB 11.1.1, to match the\noption, and the old name deprecated).\n\nSELECT @@GLOBAL.tx_isolation, @@tx_isolation;\n\nFrom MariaDB 11.1.1:\n\nSELECT @@GLOBAL.transaction_isolation, @@transaction_isolation;\n\nInnoDB supports each of the translation isolation levels described here using\ndifferent locking strategies. The default level is REPEATABLE READ. For\nadditional information about InnoDB record-level locks and how it uses them to\nexecute various types of statements, see InnoDB Lock Modes, and\nhttp://dev.mysql.com/doc/refman/en/innodb-locks-set.html.\n\nIsolation Levels\n----------------\n\nThe following sections describe how MariaDB supports the different transaction\nlevels.\n\nREAD UNCOMMITTED\n----------------\n\nSELECT statements are performed in a non-locking fashion, but a possible\nearlier version of a row might be used. Thus, using this isolation level, such\nreads are not consistent. This is also called a \"dirty read.\" Otherwise, this\nisolation level works like READ COMMITTED.\n\nREAD COMMITTED\n--------------\n\nA somewhat Oracle-like isolation level with respect to consistent\n(non-locking) reads: Each consistent read, even within the same transaction,\nsets and reads its own fresh snapshot. See\nhttp://dev.mysql.com/doc/refman/en/innodb-consistent-read.html.\n\nFor locking reads (SELECT with FOR UPDATE or LOCK IN SHARE MODE), InnoDB locks\nonly index records, not the gaps before them, and thus allows the free\ninsertion of new records next to locked records. For UPDATE and DELETE\nstatements, locking depends on whether the statement uses a unique index with\na unique search condition (such as WHERE id = 100), or a range-type search\ncondition (such as WHERE id > 100). For a unique index with a unique search\ncondition, InnoDB locks only the index record found, not the gap before it.\nFor range-type searches, InnoDB locks the index range scanned, using gap locks\nor next-key (gap plus index-record) locks to block insertions by other\nsessions into the gaps covered by the range. This is necessary because\n\"phantom rows\" must be blocked for MySQL replication and recovery to work.\n\nNote: If the READ COMMITTED isolation level is used or the\ninnodb_locks_unsafe_for_binlog system variable is enabled, there is no InnoDB\ngap locking except for foreign-key constraint checking and duplicate-key\nchecking. Also, record locks for non-matching rows are released after MariaDB\nhas evaluated the WHERE condition.If you use READ COMMITTED or enable\ninnodb_locks_unsafe_for_binlog, you must use row-based binary logging.\n\nREPEATABLE READ\n---------------\n\nThis is the default isolation level for InnoDB. For consistent reads, there is\nan important difference from the READ COMMITTED isolation level: All\nconsistent reads within the same transaction read the snapshot established by\nthe first read. This convention means that if you issue several plain\n(non-locking) SELECT statements within the same transaction, these SELECT\nstatements are consistent also with respect to each other. See\nhttp://dev.mysql.com/doc/refman/en/innodb-consistent-read.html.\n\nFor locking reads (SELECT with FOR UPDATE or LOCK IN SHARE MODE), UPDATE, and\nDELETE statements, locking depends on whether the statement uses a unique\nindex with a unique search condition, or a range-type search condition. For a\nunique index with a unique search condition, InnoDB locks only the index\nrecord found, not the gap before it. For other search conditions, InnoDB locks\nthe index range scanned, using gap locks or next-key (gap plus index-record)\nlocks to block insertions by other sessions into the gaps covered by the range.\n\nThis is the minimum isolation level for non-distributed XA transactions.\n\nSERIALIZABLE\n------------\n\nThis level is like REPEATABLE READ, but InnoDB implicitly converts all plain\nSELECT statements to SELECT ... LOCK IN SHARE MODE if autocommit is disabled.\nIf autocommit is enabled, the SELECT is its own transaction. It therefore is\nknown to be read only and can be serialized if performed as a consistent\n(non-locking) read and need not block for other transactions. (This means that\nto force a plain SELECT to block if other transactions have modified the\nselected rows, you should disable autocommit.)\n\nDistributed XA transactions should always use this isolation level.\n\nAccess Mode\n-----------\n\nThe access mode specifies whether the transaction is allowed to write data or\nnot. By default, transactions are in READ WRITE mode (see the tx_read_only\nsystem variable). READ ONLY mode allows the storage engine to apply\noptimizations that cannot be used for transactions which write data. Note that\nunlike the global read_only mode, READ_ONLY ADMIN (and SUPER before MariaDB\n10.11.0) privilege doesn\'t allow writes and DDL statements on temporary tables\nare not allowed either.\n\nIt is not permitted to specify both READ WRITE and READ ONLY in the same\nstatement.\n\nREAD WRITE and READ ONLY can also be specified in the START TRANSACTION\nstatement, in which case the specified mode is only valid for one transaction.\n\nExamples\n--------\n\nSET GLOBAL TRANSACTION ISOLATION LEVEL SERIALIZABLE;\n\nAttempting to set the isolation level within an existing transaction without\nspecifying GLOBAL or SESSION.\n\nSTART TRANSACTION;\n\nSET TRANSACTION ISOLATION LEVEL SERIALIZABLE;\nERROR 1568 (25001): Transaction characteristics can\'t be changed while a\ntransaction is in progress\n\nURL: https://mariadb.com/kb/en/set-transaction/','','https://mariadb.com/kb/en/set-transaction/'), (148,'ST_STARTPOINT',13,'Syntax\n------\n\nST_StartPoint(ls)\nStartPoint(ls)\n\nDescription\n-----------\n\nReturns the Point that is the start point of the LineString value ls.\n\nST_StartPoint() and StartPoint() are synonyms.\n\nExamples\n--------\n\nSET @ls = \'LineString(1 1,2 2,3 3)\';\n\nSELECT AsText(StartPoint(GeomFromText(@ls)));\n+---------------------------------------+\n| AsText(StartPoint(GeomFromText(@ls))) |\n+---------------------------------------+\n| POINT(1 1) |\n+---------------------------------------+\n\nURL: https://mariadb.com/kb/en/st_startpoint/','','https://mariadb.com/kb/en/st_startpoint/'), (98,'LOCK TABLES',8,'Syntax\n------\n\nLOCK TABLE[S]\n tbl_name [[AS] alias] lock_type\n [, tbl_name [[AS] alias] lock_type] ...\n [WAIT n|NOWAIT]\n\nlock_type:\n READ [LOCAL]\n | [LOW_PRIORITY] WRITE\n | WRITE CONCURRENT\n\nUNLOCK TABLES\n\nDescription\n-----------\n\nThe lock_type can be one of:\n\n+---------------------------+------------------------------------------------+\n| Option | Description |\n+---------------------------+------------------------------------------------+\n| READ | Read lock, no writes allowed |\n+---------------------------+------------------------------------------------+\n| READ LOCAL | Read lock, but allow concurrent inserts |\n+---------------------------+------------------------------------------------+\n| WRITE | Exclusive write lock. No other connections |\n| | can read or write to this table |\n+---------------------------+------------------------------------------------+\n| LOW_PRIORITY WRITE | Exclusive write lock, but allow new read |\n| | locks on the table until we get the write |\n| | lock. |\n+---------------------------+------------------------------------------------+\n| WRITE CONCURRENT | Exclusive write lock, but allow READ LOCAL |\n| | locks to the table. |\n+---------------------------+------------------------------------------------+\n\nMariaDB enables client sessions to acquire table locks explicitly for the\npurpose of cooperating with other sessions for access to tables, or to prevent\nother sessions from modifying tables during periods when a session requires\nexclusive access to them. A session can acquire or release locks only for\nitself. One session cannot acquire locks for another session or release locks\nheld by another session.\n\nLocks may be used to emulate transactions or to get more speed when updating\ntables.\n\nLOCK TABLES explicitly acquires table locks for the current client session.\nTable locks can be acquired for base tables or views. To use LOCK TABLES, you\nmust have the LOCK TABLES privilege, and the SELECT privilege for each object\nto be locked. See GRANT\n\nFor view locking, LOCK TABLES adds all base tables used in the view to the set\nof tables to be locked and locks them automatically. If you lock a table\nexplicitly with LOCK TABLES, any tables used in triggers are also locked\nimplicitly, as described in Triggers and Implicit Locks.\n\nUNLOCK TABLES explicitly releases any table locks held by the current session.\n\nMariaDB starting with 10.3.0\n----------------------------\n\nWAIT/NOWAIT\n-----------\n\nSet the lock wait timeout. See WAIT and NOWAIT.\n\nLimitations\n-----------\n\n* LOCK TABLES doesn\'t work when using Galera cluster. You may experience\ncrashes or locks when used with Galera.\n* LOCK TABLES works on XtraDB/InnoDB tables only if the innodb_table_locks\nsystem variable is set to 1 (the default) and autocommit is set to 0 (1 is\ndefault). Please note that no error message will be returned on LOCK TABLES\nwith innodb_table_locks = 0.\n* LOCK TABLES implicitly commits the active transaction, if any. Also,\nstarting a transaction always releases all table locks acquired with LOCK\nTABLES. This means that there is no way to have table locks and an active\ntransaction at the same time. The only exceptions are the transactions in\nautocommit mode. To preserve the data integrity between transactional and\nnon-transactional tables, the GET_LOCK() function can be used.\n* When using LOCK TABLES on a TEMPORARY table, it will always be locked with a\nWRITE lock.\n* While a connection holds an explicit read lock on a table, it cannot modify\nit. If you try, the following error will be produced:\n\nERROR 1099 (HY000): Table \'tab_name\' was locked with a READ lock and can\'t be\nupdated\n\n* While a connection holds an explicit lock on a table, it cannot access a\nnon-locked table. If you try, the following error will be produced:\n\nERROR 1100 (HY000): Table \'tab_name\' was not locked with LOCK TABLES\n\n* While a connection holds an explicit lock on a table, it cannot issue the\nfollowing: INSERT DELAYED, CREATE TABLE, CREATE TABLE ... LIKE, and DDL\nstatements involving stored programs and views (except for triggers). If you\ntry, the following error will be produced:\n\nERROR 1192 (HY000): Can\'t execute the given command because you have active\nlocked tables or an active transaction\n\n* LOCK TABLES can not be used in stored routines - if you try, the following\nerror will be produced on creation:\n\nERROR 1314 (0A000): LOCK is not allowed in stored procedures\n\nURL: https://mariadb.com/kb/en/lock-tables/','','https://mariadb.com/kb/en/lock-tables/'), (101,'Transaction Timeouts',8,'MariaDB has always had the wait_timeout and interactive_timeout settings,\nwhich close connections after a certain period of inactivity.\n\nHowever, these are by default set to a long wait period. In situations where\ntransactions may be started, but not committed or rolled back, more granular\ncontrol and a shorter timeout may be desirable so as to avoid locks being held\nfor too long.\n\nMariaDB 10.3 introduced three new variables to handle this situation.\n\n* idle_transaction_timeout (all transactions)\n* idle_write_transaction_timeout (write transactions - called\nidle_readwrite_transaction_timeout until MariaDB 10.3.2)\n* idle_readonly_transaction_timeout (read transactions)\n\nThese accept a time in seconds to time out, by closing the connection,\ntransactions that are idle for longer than this period. By default all are set\nto zero, or no timeout.\n\nidle_transaction_timeout affects all transactions,\nidle_write_transaction_timeout affects write transactions only and\nidle_readonly_transaction_timeout affects read transactions only. The latter\ntwo variables work independently. However, if either is set along with\nidle_transaction_timeout, the settings for idle_write_transaction_timeout or\nidle_readonly_transaction_timeout will take precedence.\n\nExamples\n--------\n\nSET SESSION idle_transaction_timeout=2;\nBEGIN;\nSELECT * FROM t;\nEmpty set (0.000 sec)\n## wait 3 seconds\nSELECT * FROM t;\nERROR 2006 (HY000): MySQL server has gone away\n\nSET SESSION idle_write_transaction_timeout=2;\nBEGIN;\nSELECT * FROM t;\nEmpty set (0.000 sec)\n## wait 3 seconds\nSELECT * FROM t;\nEmpty set (0.000 sec)\nINSERT INTO t VALUES(1);\n## wait 3 seconds\nSELECT * FROM t;\nERROR 2006 (HY000): MySQL server has gone away\n\nSET SESSION idle_transaction_timeout=2, SESSION\nidle_readonly_transaction_timeout=10;\nBEGIN;\nSELECT * FROM t;\nEmpty set (0.000 sec)\n ## wait 3 seconds\nSELECT * FROM t;\nEmpty set (0.000 sec)\n## wait 11 seconds\nSELECT * FROM t;\nERROR 2006 (HY000): MySQL server has gone away\n\nURL: https://mariadb.com/kb/en/transaction-timeouts/','','https://mariadb.com/kb/en/transaction-timeouts/'), (152,'INET_ATON',14,'Syntax\n------\n\nINET_ATON(expr)\n\nDescription\n-----------\n\nGiven the dotted-quad representation of an IPv4 network address as a string,\nreturns an integer that represents the numeric value of the address. Addresses\nmay be 4- or 8-byte addresses.\n\nReturns NULL if the argument is not understood.\n\nExamples\n--------\n\nSELECT INET_ATON(\'192.168.1.1\');\n+--------------------------+\n| INET_ATON(\'192.168.1.1\') |\n+--------------------------+\n| 3232235777 |\n+--------------------------+\n\nThis is calculated as follows: 192 x 2563 + 168 x 256 2 + 1 x 256 + 1\n\nURL: https://mariadb.com/kb/en/inet_aton/','','https://mariadb.com/kb/en/inet_aton/'), (103,'WAIT and NOWAIT',8,'Extended syntax so that it is possible to set innodb_lock_wait_timeout and\nlock_wait_timeout for the following statements:\n\nSyntax\n------\n\nALTER TABLE tbl_name [WAIT n|NOWAIT] ...\nCREATE ... INDEX ON tbl_name (index_col_name, ...) [WAIT n|NOWAIT] ...\nDROP INDEX ... [WAIT n|NOWAIT]\nDROP TABLE tbl_name [WAIT n|NOWAIT] ...\nLOCK TABLE ... [WAIT n|NOWAIT]\nOPTIMIZE TABLE tbl_name [WAIT n|NOWAIT]\nRENAME TABLE tbl_name [WAIT n|NOWAIT] ...\nSELECT ... FOR UPDATE [WAIT n|NOWAIT]\nSELECT ... LOCK IN SHARE MODE [WAIT n|NOWAIT]\nTRUNCATE TABLE tbl_name [WAIT n|NOWAIT]\n\nDescription\n-----------\n\nThe lock wait timeout can be explicitly set in the statement by using either\nWAIT n (to set the wait in seconds) or NOWAIT, in which case the statement\nwill immediately fail if the lock cannot be obtained. WAIT 0 is equivalent to\nNOWAIT.\n\nURL: https://mariadb.com/kb/en/wait-and-nowait/','','https://mariadb.com/kb/en/wait-and-nowait/'), (107,'DROP USER',10,'Syntax\n------\n\nDROP USER [IF EXISTS] user_name [, user_name] ...\n\nDescription\n-----------\n\nThe DROP USER statement removes one or more MariaDB accounts. It removes\nprivilege rows for the account from all grant tables. To use this statement,\nyou must have the global CREATE USER privilege or the DELETE privilege for the\nmysql database. Each account is named using the same format as for the CREATE\nUSER statement; for example, \'jeffrey\'@\'localhost\'. If you specify only the\nuser name part of the account name, a host name part of \'%\' is used. For\nadditional information about specifying account names, see CREATE USER.\n\nNote that, if you specify an account that is currently connected, it will not\nbe deleted until the connection is closed. The connection will not be\nautomatically closed.\n\nIf any of the specified user accounts do not exist, ERROR 1396 (HY000)\nresults. If an error occurs, DROP USER will still drop the accounts that do\nnot result in an error. Only one error is produced for all users which have\nnot been dropped:\n\nERROR 1396 (HY000): Operation DROP USER failed for \'u1\'@\'%\',\'u2\'@\'%\'\n\nFailed CREATE or DROP operations, for both users and roles, produce the same\nerror code.\n\nIF EXISTS\n---------\n\nIf the IF EXISTS clause is used, MariaDB will return a note instead of an\nerror if the user does not exist.\n\nExamples\n--------\n\nDROP USER bob;\n\nDROP USER foo2@localhost,foo2@\'127.%\';\n\nIF EXISTS:\n\nDROP USER bob;\nERROR 1396 (HY000): Operation DROP USER failed for \'bob\'@\'%\'\n\nDROP USER IF EXISTS bob;\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nSHOW WARNINGS;\n+-------+------+---------------------------------------------+\n| Level | Code | Message |\n+-------+------+---------------------------------------------+\n| Note | 1974 | Can\'t drop user \'bob\'@\'%\'; it doesn\'t exist |\n+-------+------+---------------------------------------------+\n\nURL: https://mariadb.com/kb/en/drop-user/','','https://mariadb.com/kb/en/drop-user/'), (109,'RENAME USER',10,'Syntax\n------\n\nRENAME USER old_user TO new_user\n [, old_user TO new_user] ...\n\nDescription\n-----------\n\nThe RENAME USER statement renames existing MariaDB accounts. To use it, you\nmust have the global CREATE USER privilege or the UPDATE privilege for the\nmysql database. Each account is named using the same format as for the CREATE\nUSER statement; for example, \'jeffrey\'@\'localhost\'. If you specify only the\nuser name part of the account name, a host name part of \'%\' is used.\n\nIf any of the old user accounts do not exist or any of the new user accounts\nalready exist, ERROR 1396 (HY000) results. If an error occurs, RENAME USER\nwill still rename the accounts that do not result in an error.\n\nExamples\n--------\n\nCREATE USER \'donald\', \'mickey\';\nRENAME USER \'donald\' TO \'duck\'@\'localhost\', \'mickey\' TO \'mouse\'@\'localhost\';\n\nURL: https://mariadb.com/kb/en/rename-user/','','https://mariadb.com/kb/en/rename-user/'), (110,'REVOKE',10,'Privileges\n----------\n\nSyntax\n------\n\nREVOKE \n priv_type [(column_list)]\n [, priv_type [(column_list)]] ...\n ON [object_type] priv_level\n FROM user [, user] ...\n\nREVOKE ALL PRIVILEGES, GRANT OPTION\n FROM user [, user] ...\n\nDescription\n-----------\n\nThe REVOKE statement enables system administrators to revoke privileges (or\nroles - see section below) from MariaDB accounts. Each account is named using\nthe same format as for the GRANT statement; for example,\n\'jeffrey\'@\'localhost\'. If you specify only the user name part of the account\nname, a host name part of \'%\' is used. For details on the levels at which\nprivileges exist, the allowable priv_type and priv_level values, and the\nsyntax for specifying users and passwords, see GRANT.\n\nTo use the first REVOKE syntax, you must have the GRANT OPTION privilege, and\nyou must have the privileges that you are revoking.\n\nTo revoke all privileges, use the second syntax, which drops all global,\ndatabase, table, column, and routine privileges for the named user or users:\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\nTo use this REVOKE syntax, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql database. See GRANT.\n\nExamples\n--------\n\nREVOKE SUPER ON *.* FROM \'alexander\'@\'localhost\';\n\nRoles\n-----\n\nSyntax\n------\n\nREVOKE role [, role ...]\n FROM grantee [, grantee2 ... ]\n\nREVOKE ADMIN OPTION FOR role FROM grantee [, grantee2]\n\nDescription\n-----------\n\nREVOKE is also used to remove a role from a user or another role that it\'s\npreviously been assigned to. If a role has previously been set as a default\nrole, REVOKE does not remove the record of the default role from the\nmysql.user table. If the role is subsequently granted again, it will again be\nthe user\'s default. Use SET DEFAULT ROLE NONE to explicitly remove this.\n\nBefore MariaDB 10.1.13, the REVOKE role statement was not permitted in\nprepared statements.\n\nExample\n-------\n\nREVOKE journalist FROM hulda\n\nURL: https://mariadb.com/kb/en/revoke/','','https://mariadb.com/kb/en/revoke/'), (153,'INET_NTOA',14,'Syntax\n------\n\nINET_NTOA(expr)\n\nDescription\n-----------\n\nGiven a numeric IPv4 network address in network byte order (4 or 8 byte),\nreturns the dotted-quad representation of the address as a string.\n\nExamples\n--------\n\nSELECT INET_NTOA(3232235777);\n+-----------------------+\n| INET_NTOA(3232235777) |\n+-----------------------+\n| 192.168.1.1 |\n+-----------------------+\n\n192.168.1.1 corresponds to 3232235777 since 192 x 2563 + 168 x 256 2 + 1 x 256\n+ 1 = 3232235777\n\nURL: https://mariadb.com/kb/en/inet_ntoa/','','https://mariadb.com/kb/en/inet_ntoa/'), (154,'IS_FREE_LOCK',14,'Syntax\n------\n\nIS_FREE_LOCK(str)\n\nDescription\n-----------\n\nChecks whether the lock named str is free to use (that is, not locked).\nReturns 1 if the lock is free (no one is using the lock), 0 if the lock is in\nuse, and NULL if an error occurs (such as an incorrect argument, like an empty\nstring or NULL). str is case insensitive.\n\nIf the metadata_lock_info plugin is installed, the Information Schema\nmetadata_lock_info table contains information about locks of this kind (as\nwell as metadata locks).\n\nStatements using the IS_FREE_LOCK function are not safe for statement-based\nreplication.\n\nURL: https://mariadb.com/kb/en/is_free_lock/','','https://mariadb.com/kb/en/is_free_lock/'), (158,'IS_IPV6',14,'Syntax\n------\n\nIS_IPV6(expr)\n\nDescription\n-----------\n\nReturns 1 if the expression is a valid IPv6 address specified as a string,\notherwise returns 0. Does not consider IPv4 addresses to be valid IPv6\naddresses.\n\nExamples\n--------\n\nSELECT IS_IPV6(\'48f3::d432:1431:ba23:846f\');\n+--------------------------------------+\n| IS_IPV6(\'48f3::d432:1431:ba23:846f\') |\n+--------------------------------------+\n| 1 |\n+--------------------------------------+\n1 row in set (0.02 sec)\n\nSELECT IS_IPV6(\'10.0.1.1\');\n+---------------------+\n| IS_IPV6(\'10.0.1.1\') |\n+---------------------+\n| 0 |\n+---------------------+\n\nURL: https://mariadb.com/kb/en/is_ipv6/','','https://mariadb.com/kb/en/is_ipv6/'), (111,'SET PASSWORD',10,'Syntax\n------\n\nSET PASSWORD [FOR user] =\n {\n PASSWORD(\'some password\')\n | OLD_PASSWORD(\'some password\')\n | \'encrypted password\'\n }\n\nDescription\n-----------\n\nThe SET PASSWORD statement assigns a password to an existing MariaDB user\naccount.\n\nIf the password is specified using the PASSWORD() or OLD_PASSWORD() function,\nthe literal text of the password should be given. If the password is specified\nwithout using either function, the password should be the already-encrypted\npassword value as returned by PASSWORD().\n\nOLD_PASSWORD() should only be used if your MariaDB/MySQL clients are very old\n(< 4.0.0).\n\nWith no FOR clause, this statement sets the password for the current user. Any\nclient that has connected to the server using a non-anonymous account can\nchange the password for that account.\n\nWith a FOR clause, this statement sets the password for a specific account on\nthe current server host. Only clients that have the UPDATE privilege for the\nmysql database can do this. The user value should be given in\nuser_name@host_name format, where user_name and host_name are exactly as they\nare listed in the User and Host columns of the mysql.user table (or view in\nMariaDB-10.4 onwards) entry.\n\nThe argument to PASSWORD() and the password given to MariaDB clients can be of\narbitrary length.\n\nAuthentication Plugin Support\n-----------------------------\n\nMariaDB starting with 10.4\n--------------------------\nIn MariaDB 10.4 and later, SET PASSWORD (with or without PASSWORD()) works for\naccounts authenticated via any authentication plugin that supports passwords\nstored in the mysql.global_priv table.\n\nThe ed25519, mysql_native_password, and mysql_old_password authentication\nplugins store passwords in the mysql.global_priv table.\n\nIf you run SET PASSWORD on an account that authenticates with one of these\nauthentication plugins that stores passwords in the mysql.global_priv table,\nthen the PASSWORD() function is evaluated by the specific authentication\nplugin used by the account. The authentication plugin hashes the password with\na method that is compatible with that specific authentication plugin.\n\nThe unix_socket, named_pipe, gssapi, and pam authentication plugins do not\nstore passwords in the mysql.global_priv table. These authentication plugins\nrely on other methods to authenticate the user.\n\nIf you attempt to run SET PASSWORD on an account that authenticates with one\nof these authentication plugins that doesn\'t store a password in the\nmysql.global_priv table, then MariaDB Server will raise a warning like the\nfollowing:\n\nSET PASSWORD is ignored for users authenticating via unix_socket plugin\n\nSee Authentication from MariaDB 10.4 for an overview of authentication changes\nin MariaDB 10.4.\n\nMariaDB until 10.3\n------------------\nIn MariaDB 10.3 and before, SET PASSWORD (with or without PASSWORD()) only\nworks for accounts authenticated via mysql_native_password or\nmysql_old_password authentication plugins\n\nPasswordless User Accounts\n--------------------------\n\nUser accounts do not always require passwords to login.\n\nThe unix_socket , named_pipe and gssapi authentication plugins do not require\na password to authenticate the user.\n\nThe pam authentication plugin may or may not require a password to\nauthenticate the user, depending on the specific configuration.\n\nThe mysql_native_password and mysql_old_password authentication plugins\nrequire passwords for authentication, but the password can be blank. In that\ncase, no password is required.\n\nIf you provide a password while attempting to log into the server as an\naccount that doesn\'t require a password, then MariaDB server will simply\nignore the password.\n\nMariaDB starting with 10.4\n--------------------------\nIn MariaDB 10.4 and later, a user account can be defined to use multiple\nauthentication plugins in a specific order of preference. This specific\nscenario may be more noticeable in these versions, since an account could be\nassociated with some authentication plugins that require a password, and some\nthat do not.\n\nExample\n-------\n\nFor example, if you had an entry with User and Host column values of \'bob\' and\n\'%.loc.gov\', you would write the statement like this:\n\nSET PASSWORD FOR \'bob\'@\'%.loc.gov\' = PASSWORD(\'newpass\');\n\nIf you want to delete a password for a user, you would do:\n\nSET PASSWORD FOR \'bob\'@localhost = PASSWORD(\"\");\n\nURL: https://mariadb.com/kb/en/set-password/','','https://mariadb.com/kb/en/set-password/'), (113,'DROP ROLE',10,'Syntax\n------\n\nDROP ROLE [IF EXISTS] role_name [,role_name ...]\n\nDescription\n-----------\n\nThe DROP ROLE statement removes one or more MariaDB roles. To use this\nstatement, you must have the global CREATE USER privilege or the DELETE\nprivilege for the mysql database.\n\nDROP ROLE does not disable roles for connections which selected them with SET\nROLE. If a role has previously been set as a default role, DROP ROLE does not\nremove the record of the default role from the mysql.user table. If the role\nis subsequently recreated and granted, it will again be the user\'s default.\nUse SET DEFAULT ROLE NONE to explicitly remove this.\n\nIf any of the specified user accounts do not exist, ERROR 1396 (HY000)\nresults. If an error occurs, DROP ROLE will still drop the roles that do not\nresult in an error. Only one error is produced for all roles which have not\nbeen dropped:\n\nERROR 1396 (HY000): Operation DROP ROLE failed for \'a\',\'b\',\'c\'\n\nFailed CREATE or DROP operations, for both users and roles, produce the same\nerror code.\n\nIF EXISTS\n---------\n\nIf the IF EXISTS clause is used, MariaDB will return a warning instead of an\nerror if the role does not exist.\n\nExamples\n--------\n\nDROP ROLE journalist;\n\nThe same thing using the optional IF EXISTS clause:\n\nDROP ROLE journalist;\nERROR 1396 (HY000): Operation DROP ROLE failed for \'journalist\'\n\nDROP ROLE IF EXISTS journalist;\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nNote (Code 1975): Can\'t drop role \'journalist\'; it doesn\'t exist\n\nURL: https://mariadb.com/kb/en/drop-role/','','https://mariadb.com/kb/en/drop-role/'), (159,'IS_USED_LOCK',14,'Syntax\n------\n\nIS_USED_LOCK(str)\n\nDescription\n-----------\n\nChecks whether the lock named str is in use (that is, locked). If so, it\nreturns the connection identifier of the client that holds the lock.\nOtherwise, it returns NULL. str is case insensitive.\n\nIf the metadata_lock_info plugin is installed, the Information Schema\nmetadata_lock_info table contains information about locks of this kind (as\nwell as metadata locks).\n\nStatements using the IS_USED_LOCK function are not safe for statement-based\nreplication.\n\nURL: https://mariadb.com/kb/en/is_used_lock/','','https://mariadb.com/kb/en/is_used_lock/'), (162,'NAME_CONST',14,'Syntax\n------\n\nNAME_CONST(name,value)\n\nDescription\n-----------\n\nReturns the given value. When used to produce a result set column,\nNAME_CONST() causes the column to have the given name. The arguments should be\nconstants.\n\nThis function is used internally when replicating stored procedures. It makes\nlittle sense to use it explicitly in SQL statements, and it was not supposed\nto be used like that.\n\nSELECT NAME_CONST(\'myname\', 14);\n+--------+\n| myname |\n+--------+\n| 14 |\n+--------+\n\nURL: https://mariadb.com/kb/en/name_const/','','https://mariadb.com/kb/en/name_const/'), (165,'SLEEP',14,'Syntax\n------\n\nSLEEP(duration)\n\nDescription\n-----------\n\nSleeps (pauses) for the number of seconds given by the duration argument, then\nreturns 0. If SLEEP() is interrupted, it returns 1. The duration may have a\nfractional part given in microseconds.\n\nStatements using the SLEEP() function are not safe for replication.\n\nExample\n-------\n\nSELECT SLEEP(5.5);\n+------------+\n| SLEEP(5.5) |\n+------------+\n| 0 |\n+------------+\n1 row in set (5.50 sec)\n\nURL: https://mariadb.com/kb/en/sleep/','','https://mariadb.com/kb/en/sleep/'), (112,'CREATE ROLE',10,'Syntax\n------\n\nCREATE [OR REPLACE] ROLE [IF NOT EXISTS] role \n [WITH ADMIN\n {CURRENT_USER | CURRENT_ROLE | user | role}]\n\nDescription\n-----------\n\nThe CREATE ROLE statement creates one or more MariaDB roles. To use it, you\nmust have the global CREATE USER privilege or the INSERT privilege for the\nmysql database. For each account, CREATE ROLE creates a new row in the\nmysql.user table that has no privileges, and with the corresponding is_role\nfield set to Y. It also creates a record in the mysql.roles_mapping table.\n\nIf any of the specified roles already exist, ERROR 1396 (HY000) results. If an\nerror occurs, CREATE ROLE will still create the roles that do not result in an\nerror. The maximum length for a role is 128 characters. Role names can be\nquoted, as explained in the Identifier names page. Only one error is produced\nfor all roles which have not been created:\n\nERROR 1396 (HY000): Operation CREATE ROLE failed for \'a\',\'b\',\'c\'\n\nFailed CREATE or DROP operations, for both users and roles, produce the same\nerror code.\n\nPUBLIC and NONE are reserved, and cannot be used as role names. NONE is used\nto unset a role and PUBLIC has a special use in other systems, such as Oracle,\nso is reserved for compatibility purposes.\n\nFor valid identifiers to use as role names, see Identifier Names.\n\nWITH ADMIN\n----------\n\nThe optional WITH ADMIN clause determines whether the current user, the\ncurrent role or another user or role has use of the newly created role. If the\nclause is omitted, WITH ADMIN CURRENT_USER is treated as the default, which\nmeans that the current user will be able to GRANT this role to users.\n\nOR REPLACE\n----------\n\nIf the optional OR REPLACE clause is used, it acts as a shortcut for:\n\nDROP ROLE IF EXISTS name;\nCREATE ROLE name ...;\n\nIF NOT EXISTS\n-------------\n\nWhen the IF NOT EXISTS clause is used, MariaDB will return a warning instead\nof an error if the specified role already exists. Cannot be used together with\nthe OR REPLACE clause.\n\nExamples\n--------\n\nCREATE ROLE journalist;\n\nCREATE ROLE developer WITH ADMIN lorinda@localhost;\n\nGranting the role to another user. Only user lorinda@localhost has permission\nto grant the developer role:\n\nSELECT USER();\n+-------------------+\n| USER() |\n+-------------------+\n| henning@localhost |\n+-------------------+\n...\nGRANT developer TO ian@localhost;\nAccess denied for user \'henning\'@\'localhost\'\n\nSELECT USER();\n+-------------------+\n| USER() |\n+-------------------+\n| lorinda@localhost |\n+-------------------+\n\nGRANT m_role TO ian@localhost;\n\nThe OR REPLACE and IF NOT EXISTS clauses. The journalist role already exists:\n\nCREATE ROLE journalist;\nERROR 1396 (HY000): Operation CREATE ROLE failed for \'journalist\'\n\nCREATE OR REPLACE ROLE journalist;\nQuery OK, 0 rows affected (0.00 sec)\n\nCREATE ROLE IF NOT EXISTS journalist;\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nSHOW WARNINGS;\n+-------+------+---------------------------------------------------+\n| Level | Code | Message |\n+-------+------+---------------------------------------------------+\n| Note | 1975 | Can\'t create role \'journalist\'; it already exists |\n+-------+------+---------------------------------------------------+\n\nURL: https://mariadb.com/kb/en/create-role/','','https://mariadb.com/kb/en/create-role/'), (114,'SET ROLE',10,'Syntax\n------\n\nSET ROLE { role | NONE }\n\nDescription\n-----------\n\nThe SET ROLE statement enables a role, along with all of its associated\npermissions, for the current session. To unset a role, use NONE .\n\nIf a role that doesn\'t exist, or to which the user has not been assigned, is\nspecified, an ERROR 1959 (OP000): Invalid role specification error occurs.\n\nAn automatic SET ROLE is implicitly performed when a user connects if that\nuser has been assigned a default role. See SET DEFAULT ROLE.\n\nExample\n-------\n\nSELECT CURRENT_ROLE;\n+--------------+\n| CURRENT_ROLE |\n+--------------+\n| NULL |\n+--------------+\n\nSET ROLE staff;\n\nSELECT CURRENT_ROLE;\n+--------------+\n| CURRENT_ROLE |\n+--------------+\n| staff |\n+--------------+\n\nSET ROLE NONE;\n\nSELECT CURRENT_ROLE();\n+----------------+\n| CURRENT_ROLE() |\n+----------------+\n| NULL |\n+----------------+\n\nURL: https://mariadb.com/kb/en/set-role/','','https://mariadb.com/kb/en/set-role/'), (115,'SET DEFAULT ROLE',10,'Syntax\n------\n\nSET DEFAULT ROLE { role | NONE } [ FOR user@host ]\n\nDescription\n-----------\n\nThe SET DEFAULT ROLE statement sets a default role for a specified (or\ncurrent) user. A default role is automatically enabled when a user connects\n(an implicit SET ROLE statement is executed immediately after a connection is\nestablished).\n\nTo be able to set a role as a default, the role must already have been granted\nto that user, and one needs the privileges to enable this role (if you cannot\ndo SET ROLE X, you won\'t be able to do SET DEFAULT ROLE X). To set a default\nrole for another user one needs to have write access to the mysql database.\n\nTo remove a user\'s default role, use SET DEFAULT ROLE NONE [ FOR user@host ].\nThe record of the default role is not removed if the role is dropped or\nrevoked, so if the role is subsequently re-created or granted, it will again\nbe the user\'s default role.\n\nThe default role is stored in the default_role column in the mysql.user\ntable/view, as well as in the Information Schema APPLICABLE_ROLES table, so\nthese can be viewed to see which role has been assigned to a user as the\ndefault.\n\nExamples\n--------\n\nSetting a default role for the current user:\n\nSET DEFAULT ROLE journalist;\n\nRemoving a default role from the current user:\n\nSET DEFAULT ROLE NONE;\n\nSetting a default role for another user. The role has to have been granted to\nthe user before it can be set as default:\n\nCREATE ROLE journalist;\nCREATE USER taniel;\n\nSET DEFAULT ROLE journalist FOR taniel;\nERROR 1959 (OP000): Invalid role specification `journalist`\n\nGRANT journalist TO taniel;\nSET DEFAULT ROLE journalist FOR taniel;\n\nViewing mysql.user:\n\nselect * from mysql.user where user=\'taniel\'\\G\n*************************** 1. row ***************************\n Host: %\n User: taniel\n...\n is_role: N\n default_role: journalist\n...\n\nRemoving a default role for another user\n\nSET DEFAULT ROLE NONE FOR taniel;\n\nURL: https://mariadb.com/kb/en/set-default-role/','','https://mariadb.com/kb/en/set-default-role/'), (166,'SYS_GUID',14,'MariaDB starting with 10.6.1\n----------------------------\nThe SYS_GUID function was introduced in MariaDB 10.6.1 to enhance Oracle\ncompatibility. Similar functionality can be achieved with the UUID function.\n\nSyntax\n------\n\nSYS_GUID()\n\nDescription\n-----------\n\nReturns a 16-byte globally unique identifier (GUID), similar to the UUID\nfunction, but without the - character.\n\nExample\n-------\n\nSELECT SYS_GUID();\n+----------------------------------+\n| SYS_GUID() |\n+----------------------------------+\n| 2C574E45BA2811EBB265F859713E4BE4 |\n+----------------------------------+\n\nURL: https://mariadb.com/kb/en/sys_guid/','','https://mariadb.com/kb/en/sys_guid/'), (170,'!',15,'Syntax\n------\n\nNOT, !\n\nDescription\n-----------\n\nLogical NOT. Evaluates to 1 if the operand is 0, to 0 if the operand is\nnon-zero, and NOT NULL returns NULL.\n\nBy default, the ! operator has a higher precedence. If the HIGH_NOT_PRECEDENCE\nSQL_MODE flag is set, NOT and ! have the same precedence.\n\nExamples\n--------\n\nSELECT NOT 10;\n+--------+\n| NOT 10 |\n+--------+\n| 0 |\n+--------+\n\nSELECT NOT 0;\n+-------+\n| NOT 0 |\n+-------+\n| 1 |\n+-------+\n\nSELECT NOT NULL;\n+----------+\n| NOT NULL |\n+----------+\n| NULL |\n+----------+\n\nSELECT ! (1+1);\n+---------+\n| ! (1+1) |\n+---------+\n| 0 |\n+---------+\n\nSELECT ! 1+1;\n+-------+\n| ! 1+1 |\n+-------+\n| 1 |\n+-------+\n\nURL: https://mariadb.com/kb/en/not/','','https://mariadb.com/kb/en/not/'), (116,'Roles Overview',10,'Description\n-----------\n\nA role bundles a number of privileges together. It assists larger\norganizations where, typically, a number of users would have the same\nprivileges, and, previously, the only way to change the privileges for a group\nof users was by changing each user\'s privileges individually.\n\nAlternatively, multiple external users could have been assigned the same user,\nand there would have been no way to see which actual user was responsible for\nwhich action.\n\nWith roles, managing this is easy. For example, there could be a number of\nusers assigned to a journalist role, with identical privileges. Changing the\nprivileges for all the journalists is a matter of simply changing the role\'s\nprivileges, while the individual user is still linked with any changes that\ntake place.\n\nRoles are created with the CREATE ROLE statement, and dropped with the DROP\nROLE statement. Roles are then assigned to a user with an extension to the\nGRANT statement, while privileges are assigned to a role in the regular way\nwith GRANT. Similarly, the REVOKE statement can be used to both revoke a role\nfrom a user, or revoke a privilege from a role.\n\nOnce a user has connected, he can obtain all privileges associated with a role\nby setting a role with the SET ROLE statement. The CURRENT_ROLE function\nreturns the currently set role for the session, if any.\n\nOnly roles granted directly to a user can be set, roles granted to other roles\ncannot. Instead the privileges granted to a role, which is, in turn, granted\nto another role (grantee), will be immediately available to any user who sets\nthis second grantee role.\n\nThe SET DEFAULT ROLE statement allows one to set a default role for a user. A\ndefault role is automatically enabled when a user connects (an implicit SET\nROLE statement is executed immediately after a connection is established).\n\nRoles were implemented as a GSoC 2013 project by Vicentiu Ciorbaru.\n\nSystem Tables\n-------------\n\nInformation about roles and who they\'ve been granted to can be found in the\nInformation Schema APPLICABLE_ROLES table as well as the mysql.ROLES_MAPPING\ntable.\n\nThe Information Schema ENABLED_ROLES table shows the enabled roles for the\ncurrent session.\n\nExamples\n--------\n\nCreating a role and granting a privilege:\n\nCREATE ROLE journalist;\n\nGRANT SHOW DATABASES ON *.* TO journalist;\n\nGRANT journalist to hulda;\n\nNote, that hulda has no SHOW DATABASES privilege, even though she was granted\nthe journalist role. She needs to set the role first:\n\nSHOW DATABASES;\n+--------------------+\n| Database |\n+--------------------+\n| information_schema |\n+--------------------+\n\nSELECT CURRENT_ROLE;\n+--------------+\n| CURRENT_ROLE |\n+--------------+\n| NULL |\n+--------------+\n\nSET ROLE journalist;\n\nSELECT CURRENT_ROLE;\n+--------------+\n| CURRENT_ROLE |\n+--------------+\n| journalist |\n+--------------+\n\nSHOW DATABASES;\n+--------------------+\n| Database |\n+--------------------+\n| ... |\n| information_schema |\n| mysql |\n| performance_schema |\n| test |\n| ... |\n+--------------------+\n\nSET ROLE NONE;\n\nRoles can be granted to roles:\n\nCREATE ROLE writer;\n\nGRANT SELECT ON data.* TO writer;\n\nGRANT writer TO journalist;\n\nBut one does not need to set a role granted to a role. For example, hulda will\nautomatically get all writer privileges when she sets the journalist role:\n\nSELECT CURRENT_ROLE;\n+--------------+\n| CURRENT_ROLE |\n+--------------+\n| NULL |\n+--------------+\n\nSHOW TABLES FROM data;\nEmpty set (0.01 sec)\n\nSET ROLE journalist;\n\nSELECT CURRENT_ROLE;\n+--------------+\n| CURRENT_ROLE |\n+--------------+\n| journalist |\n+--------------+\n\nSHOW TABLES FROM data;\n+------------------------------+\n| Tables_in_data |\n+------------------------------+\n| set1 |\n| ... |\n+------------------------------+\n\nRoles and Views (and Stored Routines)\n-------------------------------------\n\nWhen a user sets a role, he, in a sense, has two identities with two\nassociated sets of privileges. But a view (or a stored routine) can have only\none definer. So, when a view (or a stored routine) is created with the SQL\nSECURITY DEFINER, one can specify whether the definer should be CURRENT_USER\n(and the view will have none of the privileges of the user\'s role) or\nCURRENT_ROLE (in this case, the view will use role\'s privileges, but none of\nthe user\'s privileges). As a result, sometimes one can create a view that is\nimpossible to use.\n\nCREATE ROLE r1;\n\nGRANT ALL ON db1.* TO r1;\n\nGRANT r1 TO foo@localhost;\n\nGRANT ALL ON db.* TO foo@localhost;\n\nSELECT CURRENT_USER\n+---------------+\n| current_user |\n+---------------+\n| foo@localhost |\n+---------------+\n\nSET ROLE r1;\n\nCREATE TABLE db1.t1 (i int);\n\nCREATE VIEW db.v1 AS SELECT * FROM db1.t1;\n\nSHOW CREATE VIEW db.v1;\n+------+-----------------------------------------------------------------------\n------------------------------------------------------------------+------------\n---------+----------------------+\n| View | Create View \n |\ncharacter_set_client | collation_connection |\n+------+-----------------------------------------------------------------------\n------------------------------------------------------------------+------------\n---------+----------------------+\n| v1 | CREATE ALGORITHM=UNDEFINED DEFINER=`foo`@`localhost` SQL SECURITY\nDEFINER VIEW `db`.`v1` AS SELECT `db1`.`t1`.`i` AS `i` from `db1`.`t1` | utf8 \n | utf8_general_ci |\n+------+-----------------------------------------------------------------------\n------------------------------------------------------------------+------------\n---------+----------------------+\n\nCREATE DEFINER=CURRENT_ROLE VIEW db.v2 AS SELECT * FROM db1.t1;\n\nSHOW CREATE VIEW db.b2;\n+------+-----------------------------------------------------------------------\n-----------------------------------------------------+----------------------+--\n-------------------+\n| View | Create View \n | character_set_client |\ncollation_connection |\n+------+-----------------------------------------------------------------------\n-----------------------------------------------------+----------------------+--\n-------------------+\n| v2 | CREATE ALGORITHM=UNDEFINED DEFINER=`r1` SQL SECURITY DEFINER VIEW\n`db`.`v2` AS select `db1`.`t1`.`a` AS `a` from `db1`.`t1` | utf8 \n | utf8_general_ci |\n+------+-----------------------------------------------------------------------\n-----------------------------------------------------+----------------------+--\n-------------------+\n\nOther Resources\n---------------\n\n* Roles Review by Peter Gulutzan\n\nURL: https://mariadb.com/kb/en/roles_overview/','','https://mariadb.com/kb/en/roles_overview/'), (171,'&&',15,'Syntax\n------\n\nAND, &&\n\nDescription\n-----------\n\nLogical AND. Evaluates to 1 if all operands are non-zero and not NULL, to 0 if\none or more operands are 0, otherwise NULL is returned.\n\nFor this operator, short-circuit evaluation can be used.\n\nExamples\n--------\n\nSELECT 1 && 1;\n+--------+\n| 1 && 1 |\n+--------+\n| 1 |\n+--------+\n\nSELECT 1 && 0;\n+--------+\n| 1 && 0 |\n+--------+\n| 0 |\n+--------+\n\nSELECT 1 && NULL;\n+-----------+\n| 1 && NULL |\n+-----------+\n| NULL |\n+-----------+\n\nSELECT 0 && NULL;\n+-----------+\n| 0 && NULL |\n+-----------+\n| 0 |\n+-----------+\n\nSELECT NULL && 0;\n+-----------+\n| NULL && 0 |\n+-----------+\n| 0 |\n+-----------+\n\nURL: https://mariadb.com/kb/en/and/','','https://mariadb.com/kb/en/and/'), (117,'Account Locking',10,'MariaDB starting with 10.4.2\n----------------------------\nAccount locking was introduced in MariaDB 10.4.2.\n\nDescription\n-----------\n\nAccount locking permits privileged administrators to lock/unlock user\naccounts. No new client connections will be permitted if an account is locked\n(existing connections are not affected).\n\nUser accounts can be locked at creation, with the CREATE USER statement, or\nmodified after creation with the ALTER USER statement. For example:\n\nCREATE USER \'lorin\'@\'localhost\' ACCOUNT LOCK;\n\nor\n\nALTER USER \'marijn\'@\'localhost\' ACCOUNT LOCK;\n\nThe server will return an ER_ACCOUNT_HAS_BEEN_LOCKED error when locked users\nattempt to connect:\n\nmysql -ulorin\n ERROR 4151 (HY000): Access denied, this account is locked\n\nThe ALTER USER statement is also used to unlock a user:\n\nALTER USER \'lorin\'@\'localhost\' ACCOUNT UNLOCK;\n\nThe SHOW CREATE USER statement will show whether the account is locked:\n\nSHOW CREATE USER \'marijn\'@\'localhost\';\n+-----------------------------------------------+\n| CREATE USER for marijn@localhost |\n+-----------------------------------------------+\n| CREATE USER \'marijn\'@\'localhost\' ACCOUNT LOCK |\n+-----------------------------------------------+\n\nas well as querying the mysql.global_priv table:\n\nSELECT CONCAT(user, \'@\', host, \' => \', JSON_DETAILED(priv)) FROM\nmysql.global_priv \n WHERE user=\'marijn\';\n+------------------------------------------------------------------------------\n-------+\n| CONCAT(user, \'@\', host, \' => \', JSON_DETAILED(priv)) \n |\n+------------------------------------------------------------------------------\n-------+\n| marijn@localhost => {\n \"access\": 0,\n \"plugin\": \"mysql_native_password\",\n \"authentication_string\": \"\",\n \"account_locked\": true,\n \"password_last_changed\": 1558017158\n} |\n+------------------------------------------------------------------------------\n-------+\n\nURL: https://mariadb.com/kb/en/account-locking/','','https://mariadb.com/kb/en/account-locking/'), (119,'User Password Expiry',10,'MariaDB starting with 10.4.3\n----------------------------\nUser password expiry was introduced in MariaDB 10.4.3.\n\nPassword expiry permits administrators to expire user passwords, either\nmanually or automatically.\n\nSystem Variables\n----------------\n\nThere are two system variables which affect password expiry:\ndefault_password_lifetime, which determines the amount of time between\nrequiring the user to change their password. 0, the default, means automatic\npassword expiry is not active.\n\nThe second variable, disconnect_on_expired_password determines whether a\nclient is permitted to connect if their password has expired, or whether they\nare permitted to connect in sandbox mode, able to perform a limited subset of\nqueries related to resetting the password, in particular SET PASSWORD and SET.\n\nSetting a Password Expiry Limit for a User\n------------------------------------------\n\nBesides automatic password expiry, as determined by default_password_lifetime,\npassword expiry times can be set on an individual user basis, overriding the\nglobal using the CREATE USER or ALTER USER statements, for example:\n\nCREATE USER \'monty\'@\'localhost\' PASSWORD EXPIRE INTERVAL 120 DAY;\n\nALTER USER \'monty\'@\'localhost\' PASSWORD EXPIRE INTERVAL 120 DAY;\n\nLimits can be disabled by use of the NEVER keyword, for example:\n\nCREATE USER \'monty\'@\'localhost\' PASSWORD EXPIRE NEVER;\n\nALTER USER \'monty\'@\'localhost\' PASSWORD EXPIRE NEVER;\n\nA manually set limit can be restored the system default by use of DEFAULT, for\nexample:\n\nCREATE USER \'monty\'@\'localhost\' PASSWORD EXPIRE DEFAULT;\n\nALTER USER \'monty\'@\'localhost\' PASSWORD EXPIRE DEFAULT;\n\nSHOW CREATE USER\n----------------\n\nThe SHOW CREATE USER statement will display information about the password\nexpiry status of the user. Unlike MySQL, it will not display if the user is\nunlocked, or if the password expiry is set to default.\n\nCREATE USER \'monty\'@\'localhost\' PASSWORD EXPIRE INTERVAL 120 DAY;\nCREATE USER \'konstantin\'@\'localhost\' PASSWORD EXPIRE NEVER;\nCREATE USER \'amse\'@\'localhost\' PASSWORD EXPIRE DEFAULT;\n\nSHOW CREATE USER \'monty\'@\'localhost\';\n+------------------------------------------------------------------+\n| CREATE USER for monty@localhost |\n+------------------------------------------------------------------+\n| CREATE USER \'monty\'@\'localhost\' PASSWORD EXPIRE INTERVAL 120 DAY |\n+------------------------------------------------------------------+\n\nSHOW CREATE USER \'konstantin\'@\'localhost\';\n+------------------------------------------------------------+\n| CREATE USER for konstantin@localhost |\n+------------------------------------------------------------+\n| CREATE USER \'konstantin\'@\'localhost\' PASSWORD EXPIRE NEVER |\n+------------------------------------------------------------+\n\nSHOW CREATE USER \'amse\'@\'localhost\';\n+--------------------------------+\n| CREATE USER for amse@localhost |\n+--------------------------------+\n| CREATE USER \'amse\'@\'localhost\' |\n+--------------------------------+\n\nChecking When Passwords Expire\n------------------------------\n\nThe following query can be used to check when the current passwords expire for\nall users:\n\nWITH password_expiration_info AS (\n SELECT User, Host,\n IF(\n IFNULL(JSON_EXTRACT(Priv, \'$.password_lifetime\'), -1) = -1,\n @@global.default_password_lifetime,\n JSON_EXTRACT(Priv, \'$.password_lifetime\')\n ) AS password_lifetime,\n JSON_EXTRACT(Priv, \'$.password_last_changed\') AS password_last_changed\n FROM mysql.global_priv\n)\nSELECT pei.User, pei.Host,\n pei.password_lifetime,\n FROM_UNIXTIME(pei.password_last_changed) AS password_last_changed_datetime,\n FROM_UNIXTIME(\n pei.password_last_changed +\n (pei.password_lifetime * 60 * 60 * 24)\n ) AS password_expiration_datetime\n FROM password_expiration_info pei\n WHERE pei.password_lifetime != 0\n AND pei.password_last_changed IS NOT NULL\nUNION\nSELECT pei.User, pei.Host,\n pei.password_lifetime,\n FROM_UNIXTIME(pei.password_last_changed) AS password_last_changed_datetime,\n 0 AS password_expiration_datetime\n FROM password_expiration_info pei\n WHERE pei.password_lifetime = 0\n OR pei.password_last_changed IS NULL;\n\n--connect-expired-password Client Option\n----------------------------------------\n\nThe mariadb client --connect-expired-password option notifies the server that\nthe client is prepared to handle expired password sandbox mode (even if the\n--batch option was specified).\n\nURL: https://mariadb.com/kb/en/user-password-expiry/','','https://mariadb.com/kb/en/user-password-expiry/'), (172,'XOR',15,'Syntax\n------\n\nXOR\n\nDescription\n-----------\n\nXOR stands for eXclusive OR. Returns NULL if either operand is NULL. For\nnon-NULL operands, evaluates to 1 if an odd number of operands is non-zero,\notherwise 0 is returned.\n\nExamples\n--------\n\nSELECT 1 XOR 1;\n+---------+\n| 1 XOR 1 |\n+---------+\n| 0 |\n+---------+\n\nSELECT 1 XOR 0;\n+---------+\n| 1 XOR 0 |\n+---------+\n| 1 |\n+---------+\n\nSELECT 1 XOR NULL;\n+------------+\n| 1 XOR NULL |\n+------------+\n| NULL |\n+------------+\n\nIn the following example, the right 1 XOR 1 is evaluated first, and returns 0.\nThen, 1 XOR 0 is evaluated, and 1 is returned.\n\nSELECT 1 XOR 1 XOR 1;\n+---------------+\n| 1 XOR 1 XOR 1 |\n+---------------+\n| 1 |\n+---------------+\n\nURL: https://mariadb.com/kb/en/xor/','','https://mariadb.com/kb/en/xor/'), (187,'STDDEV_SAMP',16,'Syntax\n------\n\nSTDDEV_SAMP(expr)\n\nDescription\n-----------\n\nReturns the sample standard deviation of expr (the square root of VAR_SAMP()).\n\nIt is an aggregate function, and so can be used with the GROUP BY clause.\n\nSTDDEV_SAMP() can be used as a window function.\n\nSTDDEV_SAMP() returns NULL if there were no matching rows.\n\nURL: https://mariadb.com/kb/en/stddev_samp/','','https://mariadb.com/kb/en/stddev_samp/'), (124,'UNCOMPRESS',12,'Syntax\n------\n\nUNCOMPRESS(string_to_uncompress)\n\nDescription\n-----------\n\nUncompresses a string compressed by the COMPRESS() function. If the argument\nis not a compressed value, the result is NULL. This function requires MariaDB\nto have been compiled with a compression library such as zlib. Otherwise, the\nreturn value is always NULL. The have_compress server system variable\nindicates whether a compression library is present.\n\nExamples\n--------\n\nSELECT UNCOMPRESS(COMPRESS(\'a string\'));\n+----------------------------------+\n| UNCOMPRESS(COMPRESS(\'a string\')) |\n+----------------------------------+\n| a string |\n+----------------------------------+\n\nSELECT UNCOMPRESS(\'a string\');\n+------------------------+\n| UNCOMPRESS(\'a string\') |\n+------------------------+\n| NULL |\n+------------------------+\n\nURL: https://mariadb.com/kb/en/uncompress/','','https://mariadb.com/kb/en/uncompress/'), (125,'DECODE',12,'Syntax\n------\n\nDECODE(crypt_str,pass_str)\n\nIn Oracle mode from MariaDB 10.3.2:\n\nDECODE(expr, search_expr, result_expr [, search_expr2, result_expr2 ...]\n[default_expr])\n\nIn all modes from MariaDB 10.3.2:\n\nDECODE_ORACLE(expr, search_expr, result_expr [, search_expr2, result_expr2\n...] [default_expr])\n\nDescription\n-----------\n\nIn the default mode, DECODE decrypts the encrypted string crypt_str using\npass_str as the password. crypt_str should be a string returned from ENCODE().\nThe resulting string will be the original string only if pass_str is the same.\n\nIn Oracle mode from MariaDB 10.3.2, DECODE compares expr to the search\nexpressions, in order. If it finds a match, the corresponding result\nexpression is returned. If no matches are found, the default expression is\nreturned, or NULL if no default is provided.\n\nNULLs are treated as equivalent.\n\nDECODE_ORACLE is a synonym for the Oracle-mode version of the function, and is\navailable in all modes.\n\nExamples\n--------\n\nFrom MariaDB 10.3.2:\n\nSELECT DECODE_ORACLE(2+1,3*1,\'found1\',3*2,\'found2\',\'default\');\n+--------------------------------------------------------+\n| DECODE_ORACLE(2+1,3*1,\'found1\',3*2,\'found2\',\'default\') |\n+--------------------------------------------------------+\n| found1 |\n+--------------------------------------------------------+\n\nSELECT DECODE_ORACLE(2+4,3*1,\'found1\',3*2,\'found2\',\'default\');\n+--------------------------------------------------------+\n| DECODE_ORACLE(2+4,3*1,\'found1\',3*2,\'found2\',\'default\') |\n+--------------------------------------------------------+\n| found2 |\n+--------------------------------------------------------+\n\nSELECT DECODE_ORACLE(2+2,3*1,\'found1\',3*2,\'found2\',\'default\');\n+--------------------------------------------------------+\n| DECODE_ORACLE(2+2,3*1,\'found1\',3*2,\'found2\',\'default\') |\n+--------------------------------------------------------+\n| default |\n+--------------------------------------------------------+\n\nNulls are treated as equivalent:\n\nSELECT DECODE_ORACLE(NULL,NULL,\'Nulls are equivalent\',\'Nulls are not\nequivalent\');\n+----------------------------------------------------------------------------+\n| DECODE_ORACLE(NULL,NULL,\'Nulls are equivalent\',\'Nulls are not equivalent\') |\n+----------------------------------------------------------------------------+\n| Nulls are equivalent |\n+----------------------------------------------------------------------------+\n\nURL: https://mariadb.com/kb/en/decode/','','https://mariadb.com/kb/en/decode/'), (127,'AES_DECRYPT',12,'Syntax\n------\n\nAES_DECRYPT(crypt_str,key_str)\n\nFrom MariaDB 11.2.0\n\nAES_ENCRYPT(crypt_str, key_str, [, iv [, mode]])\n\nDescription\n-----------\n\nThis function allows decryption of data using the official AES (Advanced\nEncryption Standard) algorithm. For more information, see the description of\nAES_ENCRYPT().\n\nMariaDB starting with 11.2\n--------------------------\nFrom MariaDB 11.2, the function supports an initialization vector, and control\nof the block encryption mode. The default mode is specified by the\nblock_encryption_mode system variable, which can be changed when calling the\nfunction with a mode. mode is aes-{128,192,256}-{ecb,cbc,ctr} for example:\n\"AES-128-cbc\".\n\nFor modes that require it, the initialization_vector iv should be 16 bytes (it\ncan be longer, but the extra bytes are ignored). A shorter iv, where one is\nrequired, results in the function returning NULL. Calling RANDOM_BYTES(16)\nwill generate a random series of bytes that can be used for the iv.\n\nExamples\n--------\n\nFrom MariaDB 11.2.0:\n\nSELECT HEX(AES_ENCRYPT(\'foo\', \'bar\', \'0123456789abcdef\', \'aes-128-ctr\')) AS x; \n+--------+\n| x |\n+--------+\n| C57C4B |\n+--------+\n\nSELECT AES_DECRYPT(x\'C57C4B\', \'bar\', \'0123456789abcdef\', \'aes-128-ctr\'); \n+------------------------------------------------------------------+\n| AES_DECRYPT(x\'C57C4B\', \'bar\', \'0123456789abcdef\', \'aes-128-ctr\') |\n+------------------------------------------------------------------+\n| foo |\n+------------------------------------------------------------------+\n\nURL: https://mariadb.com/kb/en/aes_decrypt/','','https://mariadb.com/kb/en/aes_decrypt/'), (192,'BENCHMARK',17,'Syntax\n------\n\nBENCHMARK(count,expr)\n\nDescription\n-----------\n\nThe BENCHMARK() function executes the expression expr repeatedly count times.\nIt may be used to time how quickly MariaDB processes the expression. The\nresult value is always 0. The intended use is from within the mariadb client,\nwhich reports query execution times.\n\nExamples\n--------\n\nSELECT BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\'));\n+----------------------------------------------+\n| BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\')) |\n+----------------------------------------------+\n| 0 |\n+----------------------------------------------+\n1 row in set (0.21 sec)\n\nURL: https://mariadb.com/kb/en/benchmark/','','https://mariadb.com/kb/en/benchmark/'), (193,'BINLOG_GTID_POS',17,'Syntax\n------\n\nBINLOG_GTID_POS(binlog_filename,binlog_offset)\n\nDescription\n-----------\n\nThe BINLOG_GTID_POS() function takes as input an old-style binary log position\nin the form of a file name and a file offset. It looks up the position in the\ncurrent binlog, and returns a string representation of the corresponding GTID\nposition. If the position is not found in the current binlog, NULL is returned.\n\nExamples\n--------\n\nSELECT BINLOG_GTID_POS(\"master-bin.000001\", 600);\n\nURL: https://mariadb.com/kb/en/binlog_gtid_pos/','','https://mariadb.com/kb/en/binlog_gtid_pos/'), (196,'COLLATION',17,'Syntax\n------\n\nCOLLATION(str)\n\nDescription\n-----------\n\nReturns the collation of the string argument. If str is not a string, it is\nconsidered as a binary string (so the function returns \'binary\'). This applies\nto NULL, too. The return value is a string in the utf8 character set.\n\nSee Character Sets and Collations.\n\nExamples\n--------\n\nSELECT COLLATION(\'abc\');\n+-------------------+\n| COLLATION(\'abc\') |\n+-------------------+\n| latin1_swedish_ci |\n+-------------------+\n\nSELECT COLLATION(_utf8\'abc\');\n+-----------------------+\n| COLLATION(_utf8\'abc\') |\n+-----------------------+\n| utf8_general_ci |\n+-----------------------+\n\nURL: https://mariadb.com/kb/en/collation/','','https://mariadb.com/kb/en/collation/'), (128,'AES_ENCRYPT',12,'Syntax\n------\n\nAES_ENCRYPT(str,key_str)\n\nFrom MariaDB 11.2.0\n\nAES_ENCRYPT(str, key, [, iv [, mode]])\n\nDescription\n-----------\n\nAES_ENCRYPT() and AES_DECRYPT() allow encryption and decryption of data using\nthe official AES (Advanced Encryption Standard) algorithm, previously known as\n\"Rijndael.\" Encoding with a 128-bit key length is used (from MariaDB 11.2.0,\nthis is the default, and can be changed). 128 bits is much faster and is\nsecure enough for most purposes.\n\nAES_ENCRYPT() encrypts a string str using the key key_str, and returns a\nbinary string.\n\nAES_DECRYPT() decrypts the encrypted string and returns the original string.\n\nThe input arguments may be any length. If either argument is NULL, the result\nof this function is also NULL.\n\nBecause AES is a block-level algorithm, padding is used to encode uneven\nlength strings and so the result string length may be calculated using this\nformula:\n\n16 x (trunc(string_length / 16) + 1)\n\nIf AES_DECRYPT() detects invalid data or incorrect padding, it returns NULL.\nHowever, it is possible for AES_DECRYPT() to return a non-NULL value (possibly\ngarbage) if the input data or the key is invalid.\n\nMariaDB starting with 11.2\n--------------------------\nFrom MariaDB 11.2, the function supports an initialization vector, and control\nof the block encryption mode. The default mode is specified by the\nblock_encryption_mode system variable, which can be changed when calling the\nfunction with a mode. mode is aes-{128,192,256}-{ecb,cbc,ctr} for example:\n\"AES-128-cbc\".\n\nAES_ENCRYPT(str, key) can no longer be used in persistent virtual columns (and\nthe like).\n\nExamples\n--------\n\nINSERT INTO t VALUES (AES_ENCRYPT(\'text\',SHA2(\'password\',512)));\n\nFrom MariaDB 11.2.0:\n\nSELECT HEX(AES_ENCRYPT(\'foo\', \'bar\', \'0123456789abcdef\', \'aes-256-cbc\')) AS x;\n+----------------------------------+\n| x |\n+----------------------------------+\n| 42A3EB91E6DFC40A900D278F99E0726E |\n+----------------------------------+\n\nURL: https://mariadb.com/kb/en/aes_encrypt/','','https://mariadb.com/kb/en/aes_encrypt/'), (129,'COMPRESS',12,'Syntax\n------\n\nCOMPRESS(string_to_compress)\n\nDescription\n-----------\n\nCompresses a string and returns the result as a binary string. This function\nrequires MariaDB to have been compiled with a compression library such as\nzlib. Otherwise, the return value is always NULL. The compressed string can be\nuncompressed with UNCOMPRESS().\n\nThe have_compress server system variable indicates whether a compression\nlibrary is present.\n\nExamples\n--------\n\nSELECT LENGTH(COMPRESS(REPEAT(\'a\',1000)));\n+------------------------------------+\n| LENGTH(COMPRESS(REPEAT(\'a\',1000))) |\n+------------------------------------+\n| 21 |\n+------------------------------------+\n\nSELECT LENGTH(COMPRESS(\'\'));\n+----------------------+\n| LENGTH(COMPRESS(\'\')) |\n+----------------------+\n| 0 |\n+----------------------+\n\nSELECT LENGTH(COMPRESS(\'a\'));\n+-----------------------+\n| LENGTH(COMPRESS(\'a\')) |\n+-----------------------+\n| 13 |\n+-----------------------+\n\nSELECT LENGTH(COMPRESS(REPEAT(\'a\',16)));\n+----------------------------------+\n| LENGTH(COMPRESS(REPEAT(\'a\',16))) |\n+----------------------------------+\n| 15 |\n+----------------------------------+\n\nURL: https://mariadb.com/kb/en/compress/','','https://mariadb.com/kb/en/compress/'), (130,'DES_DECRYPT',12,'DES_DECRYPT has been deprecated from MariaDB 10.10.0, and will be removed in a\nfuture release.\n\nSyntax\n------\n\nDES_DECRYPT(crypt_str[,key_str])\n\nDescription\n-----------\n\nDecrypts a string encrypted with DES_ENCRYPT(). If an error occurs, this\nfunction returns NULL.\n\nThis function works only if MariaDB has been configured with TLS support.\n\nIf no key_str argument is given, DES_DECRYPT() examines the first byte of the\nencrypted string to determine the DES key number that was used to encrypt the\noriginal string, and then reads the key from the DES key file to decrypt the\nmessage. For this to work, the user must have the SUPER privilege. The key\nfile can be specified with the --des-key-file server option.\n\nIf you pass this function a key_str argument, that string is used as the key\nfor decrypting the message.\n\nIf the crypt_str argument does not appear to be an encrypted string, MariaDB\nreturns the given crypt_str.\n\nURL: https://mariadb.com/kb/en/des_decrypt/','','https://mariadb.com/kb/en/des_decrypt/'), (131,'DES_ENCRYPT',12,'DES_ENCRYPT has been deprecated from MariaDB 10.10.0, and will be removed in a\nfuture release.\n\nSyntax\n------\n\nDES_ENCRYPT(str[,{key_num|key_str}])\n\nDescription\n-----------\n\nEncrypts the string with the given key using the Triple-DES algorithm.\n\nThis function works only if MariaDB has been configured with TLS support.\n\nThe encryption key to use is chosen based on the second argument to\nDES_ENCRYPT(), if one was given. With no argument, the first key from the DES\nkey file is used. With a key_num argument, the given key number (0-9) from the\nDES key file is used. With a key_str argument, the given key string is used to\nencrypt str.\n\nThe key file can be specified with the --des-key-file server option.\n\nThe return string is a binary string where the first character is CHAR(128 |\nkey_num). If an error occurs, DES_ENCRYPT() returns NULL.\n\nThe 128 is added to make it easier to recognize an encrypted key. If you use a\nstring key, key_num is 127.\n\nThe string length for the result is given by this formula:\n\nnew_len = orig_len + (8 - (orig_len % 8)) + 1\n\nEach line in the DES key file has the following format:\n\nkey_num des_key_str\n\nEach key_num value must be a number in the range from 0 to 9. Lines in the\nfile may be in any order. des_key_str is the string that is used to encrypt\nthe message. There should be at least one space between the number and the\nkey. The first key is the default key that is used if you do not specify any\nkey argument to DES_ENCRYPT().\n\nYou can tell MariaDB to read new key values from the key file with the FLUSH\nDES_KEY_FILE statement. This requires the RELOAD privilege.\n\nOne benefit of having a set of default keys is that it gives applications a\nway to check for the existence of encrypted column values, without giving the\nend user the right to decrypt those values.\n\nExamples\n--------\n\nSELECT customer_address FROM customer_table \n WHERE crypted_credit_card = DES_ENCRYPT(\'credit_card_number\');\n\nURL: https://mariadb.com/kb/en/des_encrypt/','','https://mariadb.com/kb/en/des_encrypt/'), (197,'CONNECTION_ID',17,'Syntax\n------\n\nCONNECTION_ID()\n\nDescription\n-----------\n\nReturns the connection ID for the connection. Every connection (including\nevents) has an ID that is unique among the set of currently connected clients.\n\nUntil MariaDB 10.3.1, returns MYSQL_TYPE_LONGLONG, or bigint(10), in all\ncases. From MariaDB 10.3.1, returns MYSQL_TYPE_LONG, or int(10), when the\nresult would fit within 32-bits.\n\nExamples\n--------\n\nSELECT CONNECTION_ID();\n+-----------------+\n| CONNECTION_ID() |\n+-----------------+\n| 3 |\n+-----------------+\n\nURL: https://mariadb.com/kb/en/connection_id/','','https://mariadb.com/kb/en/connection_id/'), (209,'SCHEMA',17,'Syntax\n------\n\nSCHEMA()\n\nDescription\n-----------\n\nThis function is a synonym for DATABASE().\n\nURL: https://mariadb.com/kb/en/schema/','','https://mariadb.com/kb/en/schema/'), (210,'SESSION_USER',17,'Syntax\n------\n\nSESSION_USER()\n\nDescription\n-----------\n\nSESSION_USER() is a synonym for USER().\n\nURL: https://mariadb.com/kb/en/session_user/','','https://mariadb.com/kb/en/session_user/'), (132,'ENCODE',12,'Syntax\n------\n\nENCODE(str,pass_str)\n\nDescription\n-----------\n\nENCODE is not considered cryptographically secure, and should not be used for\npassword encryption.\n\nEncrypt str using pass_str as the password. To decrypt the result, use\nDECODE().\n\nThe result is a binary string of the same length as str.\n\nThe strength of the encryption is based on how good the random generator is.\n\nIt is not recommended to rely on the encryption performed by the ENCODE\nfunction. Using a salt value (changed when a password is updated) will improve\nmatters somewhat, but for storing passwords, consider a more cryptographically\nsecure function, such as SHA2().\n\nExamples\n--------\n\nENCODE(\'not so secret text\', CONCAT(\'random_salt\',\'password\'))\n\nURL: https://mariadb.com/kb/en/encode/','','https://mariadb.com/kb/en/encode/'), (133,'ENCRYPT',12,'Syntax\n------\n\nENCRYPT(str[,salt])\n\nDescription\n-----------\n\nEncrypts a string using the Unix crypt() system call, returning an encrypted\nbinary string. The salt argument should be a string with at least two\ncharacters or the returned result will be NULL. If no salt argument is given,\na random value of sufficient length is used.\n\nIt is not recommended to use ENCRYPT() with utf16, utf32 or ucs2 multi-byte\ncharacter sets because the crypt() system call expects a string terminated\nwith a zero byte.\n\nNote that the underlying crypt() system call may have some limitations, such\nas ignoring all but the first eight characters.\n\nIf the have_crypt system variable is set to NO (because the crypt() system\ncall is not available), the ENCRYPT function will always return NULL.\n\nExamples\n--------\n\nSELECT ENCRYPT(\'encrypt me\');\n+-----------------------+\n| ENCRYPT(\'encrypt me\') |\n+-----------------------+\n| 4I5BsEx0lqTDk |\n+-----------------------+\n\nURL: https://mariadb.com/kb/en/encrypt/','','https://mariadb.com/kb/en/encrypt/'), (135,'OLD_PASSWORD',12,'Syntax\n------\n\nOLD_PASSWORD(str)\n\nDescription\n-----------\n\nOLD_PASSWORD() was added to MySQL when the implementation of PASSWORD() was\nchanged to improve security. OLD_PASSWORD() returns the value of the old\n(pre-MySQL 4.1) implementation of PASSWORD() as a string, and is intended to\npermit you to reset passwords for any pre-4.1 clients that need to connect to\na more recent MySQL server version, or any version of MariaDB, without locking\nthem out.\n\nAs of MariaDB 5.5, the return value is a nonbinary string in the connection\ncharacter set and collation, determined by the values of the\ncharacter_set_connection and collation_connection system variables. Before\n5.5, the return value was a binary string.\n\nThe return value is 16 bytes in length, or NULL if the argument was NULL.\n\nURL: https://mariadb.com/kb/en/old_password/','','https://mariadb.com/kb/en/old_password/'), (136,'PASSWORD',12,'Syntax\n------\n\nPASSWORD(str)\n\nDescription\n-----------\n\nThe PASSWORD() function is used for hashing passwords for use in\nauthentication by the MariaDB server. It is not intended for use in other\napplications.\n\nCalculates and returns a hashed password string from the plaintext password\nstr. Returns an empty string (>= MariaDB 10.0.4) if the argument was NULL.\n\nThe return value is a nonbinary string in the connection character set and\ncollation, determined by the values of the character_set_connection and\ncollation_connection system variables.\n\nThis is the function that is used for hashing MariaDB passwords for storage in\nthe Password column of the user table (see privileges), usually used with the\nSET PASSWORD statement. It is not intended for use in other applications.\n\nUntil MariaDB 10.3, the return value is 41-bytes in length, and the first\ncharacter is always \'*\'. From MariaDB 10.4, the function takes into account\nthe authentication plugin where applicable (A CREATE USER or SET PASSWORD\nstatement). For example, when used in conjunction with a user authenticated by\nthe ed25519 plugin, the statement will create a longer hash:\n\nCREATE USER edtest@localhost IDENTIFIED VIA ed25519 USING PASSWORD(\'secret\');\n\nCREATE USER edtest2@localhost IDENTIFIED BY \'secret\';\n\nSELECT CONCAT(user, \'@\', host, \' => \', JSON_DETAILED(priv)) FROM\nmysql.global_priv\n WHERE user LIKE \'edtest%\'\\G\n*************************** 1. row ***************************\nCONCAT(user, \'@\', host, \' => \', JSON_DETAILED(priv)): edtest@localhost => {\n...\n \"plugin\": \"ed25519\",\n \"authentication_string\": \"ZIgUREUg5PVgQ6LskhXmO+eZLS0nC8be6HPjYWR4YJY\",\n...\n}\n*************************** 2. row ***************************\nCONCAT(user, \'@\', host, \' => \', JSON_DETAILED(priv)): edtest2@localhost => {\n...\n \"plugin\": \"mysql_native_password\",\n \"authentication_string\": \"*14E65567ABDB5135D0CFD9A70B3032C179A49EE7\",\n...\n}\n\nThe behavior of this function is affected by the value of the old_passwords\nsystem variable. If this is set to 1 (0 is default), MariaDB reverts to using\nthe mysql_old_password authentication plugin by default for newly created\nusers and passwords.\n\nExamples\n--------\n\nSELECT PASSWORD(\'notagoodpwd\');\n+-------------------------------------------+\n| PASSWORD(\'notagoodpwd\') |\n+-------------------------------------------+\n| *3A70EE9FC6594F88CE9E959CD51C5A1C002DC937 |\n+-------------------------------------------+\n\nSET PASSWORD FOR \'bob\'@\'%.loc.gov\' = PASSWORD(\'newpass\');\n\nURL: https://mariadb.com/kb/en/password/','','https://mariadb.com/kb/en/password/'), (211,'SYSTEM_USER',17,'Syntax\n------\n\nSYSTEM_USER()\n\nDescription\n-----------\n\nSYSTEM_USER() is a synonym for USER().\n\nURL: https://mariadb.com/kb/en/system_user/','','https://mariadb.com/kb/en/system_user/'), (214,'Assignment Operator (:=)',18,'Syntax\n------\n\nvar_name := expr\n\nDescription\n-----------\n\nAssignment operator for assigning a value. The value on the right is assigned\nto the variable on left.\n\nUnlike the = operator, := can always be used to assign a value to a variable.\n\nThis operator works with both user-defined variables and local variables.\n\nWhen assigning the same value to several variables, LAST_VALUE() can be useful.\n\nExamples\n--------\n\nSELECT @x := 10;\n+----------+\n| @x := 10 |\n+----------+\n| 10 |\n+----------+\n\nSELECT @x, @y := @x;\n+------+----------+\n| @x | @y := @x |\n+------+----------+\n| 10 | 10 |\n+------+----------+\n\nURL: https://mariadb.com/kb/en/assignment-operator/','','https://mariadb.com/kb/en/assignment-operator/'), (225,'GREATEST',19,'Syntax\n------\n\nGREATEST(value1,value2,...)\n\nDescription\n-----------\n\nWith two or more arguments, returns the largest (maximum-valued) argument. The\narguments are compared using the same rules as for LEAST().\n\nExamples\n--------\n\nSELECT GREATEST(2,0);\n+---------------+\n| GREATEST(2,0) |\n+---------------+\n| 2 |\n+---------------+\n\nSELECT GREATEST(34.0,3.0,5.0,767.0);\n+------------------------------+\n| GREATEST(34.0,3.0,5.0,767.0) |\n+------------------------------+\n| 767.0 |\n+------------------------------+\n\nSELECT GREATEST(\'B\',\'A\',\'C\');\n+-----------------------+\n| GREATEST(\'B\',\'A\',\'C\') |\n+-----------------------+\n| C |\n+-----------------------+\n\nURL: https://mariadb.com/kb/en/greatest/','','https://mariadb.com/kb/en/greatest/'), (230,'IS NOT NULL',19,'Syntax\n------\n\nIS NOT NULL\n\nDescription\n-----------\n\nTests whether a value is not NULL. See also NULL Values in MariaDB.\n\nExamples\n--------\n\nSELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n+---------------+---------------+------------------+\n| 1 IS NOT NULL | 0 IS NOT NULL | NULL IS NOT NULL |\n+---------------+---------------+------------------+\n| 1 | 1 | 0 |\n+---------------+---------------+------------------+\n\nURL: https://mariadb.com/kb/en/is-not-null/','','https://mariadb.com/kb/en/is-not-null/'), (137,'RANDOM_BYTES',12,'MariaDB starting with 10.10.0\n-----------------------------\nThe RANDOM_BYTES function generates a binary string of random bytes. It was\nadded in MariaDB 10.10.0.\n\nSyntax\n------\n\nRANDOM_BYTES(length)\n\nDescription\n-----------\n\nGiven a length from 1 to 1024, generates a binary string of length consisting\nof random bytes generated by the SSL library\'s random number generator.\n\nSee the RAND_bytes() function documentation of your SSL library for\ninformation on the random number generator. In the case of OpenSSL, a\ncryptographically secure pseudo random generator (CSPRNG) is used.\n\nStatements containing the RANDOM_BYTES function are unsafe for statement-based\nreplication.\n\nAn error occurs if length is outside the range 1 to 1024.\n\nURL: https://mariadb.com/kb/en/random_bytes/','','https://mariadb.com/kb/en/random_bytes/'), (138,'SHA1',12,'Syntax\n------\n\nSHA1(str), SHA(str)\n\nDescription\n-----------\n\nCalculates an SHA-1 160-bit checksum for the string str, as described in RFC\n3174 (Secure Hash Algorithm).\n\nThe value is returned as a string of 40 hex digits, or NULL if the argument\nwas NULL. As of MariaDB 5.5, the return value is a nonbinary string in the\nconnection character set and collation, determined by the values of the\ncharacter_set_connection and collation_connection system variables. Before\n5.5, the return value was a binary string.\n\nExamples\n--------\n\nSELECT SHA1(\'some boring text\');\n+------------------------------------------+\n| SHA1(\'some boring text\') |\n+------------------------------------------+\n| af969fc2085b1bb6d31e517d5c456def5cdd7093 |\n+------------------------------------------+\n\nURL: https://mariadb.com/kb/en/sha1/','','https://mariadb.com/kb/en/sha1/'), (139,'SHA2',12,'Syntax\n------\n\nSHA2(str,hash_len)\n\nDescription\n-----------\n\nGiven a string str, calculates an SHA-2 checksum, which is considered more\ncryptographically secure than its SHA-1 equivalent. The SHA-2 family includes\nSHA-224, SHA-256, SHA-384, and SHA-512, and the hash_len must correspond to\none of these, i.e. 224, 256, 384 or 512. 0 is equivalent to 256.\n\nThe return value is a nonbinary string in the connection character set and\ncollation, determined by the values of the character_set_connection and\ncollation_connection system variables.\n\nNULL is returned if the hash length is not valid, or the string str is NULL.\n\nSHA2 will only work if MariaDB was has been configured with TLS support.\n\nExamples\n--------\n\nSELECT SHA2(\'Maria\',224);\n+----------------------------------------------------------+\n| SHA2(\'Maria\',224) |\n+----------------------------------------------------------+\n| 6cc67add32286412efcab9d0e1675a43a5c2ef3cec8879f81516ff83 |\n+----------------------------------------------------------+\n\nSELECT SHA2(\'Maria\',256);\n+------------------------------------------------------------------+\n| SHA2(\'Maria\',256) |\n+------------------------------------------------------------------+\n| 9ff18ebe7449349f358e3af0b57cf7a032c1c6b2272cb2656ff85eb112232f16 |\n+------------------------------------------------------------------+\n\nSELECT SHA2(\'Maria\',0);\n+------------------------------------------------------------------+\n| SHA2(\'Maria\',0) |\n+------------------------------------------------------------------+\n| 9ff18ebe7449349f358e3af0b57cf7a032c1c6b2272cb2656ff85eb112232f16 |\n+------------------------------------------------------------------+\n\nURL: https://mariadb.com/kb/en/sha2/','','https://mariadb.com/kb/en/sha2/'), (150,'INET6_ATON',14,'Syntax\n------\n\nINET6_ATON(expr)\n\nDescription\n-----------\n\nGiven an IPv6 or IPv4 network address as a string, returns a binary string\nthat represents the numeric value of the address.\n\nNo trailing zone ID\'s or traling network masks are permitted. For IPv4\naddresses, or IPv6 addresses with IPv4 address parts, no classful addresses or\ntrailing port numbers are permitted and octal numbers are not supported.\n\nThe returned binary string will be VARBINARY(16) or VARBINARY(4) for IPv6 and\nIPv4 addresses respectively.\n\nReturns NULL if the argument is not understood.\n\nMariaDB starting with 10.5.0\n----------------------------\nFrom MariaDB 10.5.0, INET6_ATON can take INET6 as an argument.\n\nExamples\n--------\n\nSELECT HEX(INET6_ATON(\'10.0.1.1\'));\n+-----------------------------+\n| HEX(INET6_ATON(\'10.0.1.1\')) |\n+-----------------------------+\n| 0A000101 |\n+-----------------------------+\n\nSELECT HEX(INET6_ATON(\'48f3::d432:1431:ba23:846f\'));\n+----------------------------------------------+\n| HEX(INET6_ATON(\'48f3::d432:1431:ba23:846f\')) |\n+----------------------------------------------+\n| 48F3000000000000D4321431BA23846F |\n+----------------------------------------------+\n\nURL: https://mariadb.com/kb/en/inet6_aton/','','https://mariadb.com/kb/en/inet6_aton/'), (232,'ISNULL',19,'Syntax\n------\n\nISNULL(expr)\n\nDescription\n-----------\n\nIf expr is NULL, ISNULL() returns 1, otherwise it returns 0.\n\nSee also NULL Values in MariaDB.\n\nExamples\n--------\n\nSELECT ISNULL(1+1);\n+-------------+\n| ISNULL(1+1) |\n+-------------+\n| 0 |\n+-------------+\n\nSELECT ISNULL(1/0);\n+-------------+\n| ISNULL(1/0) |\n+-------------+\n| 1 |\n+-------------+\n\nURL: https://mariadb.com/kb/en/isnull/','','https://mariadb.com/kb/en/isnull/'), (236,'&',20,'Syntax\n------\n\n&\n\nDescription\n-----------\n\nBitwise AND. Converts the values to binary and compares bits. Only if both the\ncorresponding bits are 1 is the resulting bit also 1.\n\nSee also bitwise OR.\n\nExamples\n--------\n\nSELECT 2&1;\n+-----+\n| 2&1 |\n+-----+\n| 0 |\n+-----+\n\nSELECT 3&1;\n+-----+\n| 3&1 |\n+-----+\n| 1 |\n+-----+\n\nSELECT 29 & 15;\n+---------+\n| 29 & 15 |\n+---------+\n| 13 |\n+---------+\n\nURL: https://mariadb.com/kb/en/bitwise_and/','','https://mariadb.com/kb/en/bitwise_and/'), (237,'<<',20,'Syntax\n------\n\nvalue1 << value2\n\nDescription\n-----------\n\nConverts a longlong (BIGINT) number (value1) to binary and shifts value2 units\nto the left.\n\nExamples\n--------\n\nSELECT 1 << 2;\n+--------+\n| 1 << 2 |\n+--------+\n| 4 |\n+--------+\n\nURL: https://mariadb.com/kb/en/shift-left/','','https://mariadb.com/kb/en/shift-left/'), (238,'>>',20,'Syntax\n------\n\nvalue1 >> value2\n\nDescription\n-----------\n\nConverts a longlong (BIGINT) number (value1) to binary and shifts value2 units\nto the right.\n\nExamples\n--------\n\nSELECT 4 >> 2;\n+--------+\n| 4 >> 2 |\n+--------+\n| 1 |\n+--------+\n\nURL: https://mariadb.com/kb/en/shift-right/','','https://mariadb.com/kb/en/shift-right/'), (239,'BIT_COUNT',20,'Syntax\n------\n\nBIT_COUNT(N)\n\nDescription\n-----------\n\nReturns the number of bits that are set in the argument N.\n\nExamples\n--------\n\nSELECT BIT_COUNT(29), BIT_COUNT(b\'101010\');\n+---------------+----------------------+\n| BIT_COUNT(29) | BIT_COUNT(b\'101010\') |\n+---------------+----------------------+\n| 4 | 3 |\n+---------------+----------------------+\n\nURL: https://mariadb.com/kb/en/bit_count/','','https://mariadb.com/kb/en/bit_count/'), (240,'^',20,'Syntax\n------\n\n^\n\nDescription\n-----------\n\nBitwise XOR. Converts the values to binary and compares bits. If one (and only\none) of the corresponding bits is 1 is the resulting bit also 1.\n\nExamples\n--------\n\nSELECT 1 ^ 1;\n+-------+\n| 1 ^ 1 |\n+-------+\n| 0 |\n+-------+\n\nSELECT 1 ^ 0;\n+-------+\n| 1 ^ 0 |\n+-------+\n| 1 |\n+-------+\n\nSELECT 11 ^ 3;\n+--------+\n| 11 ^ 3 |\n+--------+\n| 8 |\n+--------+\n\nURL: https://mariadb.com/kb/en/bitwise-xor/','','https://mariadb.com/kb/en/bitwise-xor/'), (149,'GET_LOCK',14,'Syntax\n------\n\nGET_LOCK(str,timeout)\n\nDescription\n-----------\n\nTries to obtain a lock with a name given by the string str, using a timeout of\ntimeout seconds. Returns 1 if the lock was obtained successfully, 0 if the\nattempt timed out (for example, because another client has previously locked\nthe name), or NULL if an error occurred (such as running out of memory or the\nthread was killed with mariadb-admin kill).\n\nA lock is released with RELEASE_LOCK(), when the connection terminates (either\nnormally or abnormally). A connection can hold multiple locks at the same\ntime, so a lock that is no longer needed needs to be explicitly released.\n\nThe IS_FREE_LOCK function returns whether a specified lock a free or not, and\nthe IS_USED_LOCK whether the function is in use or not.\n\nLocks obtained with GET_LOCK() do not interact with transactions. That is,\ncommitting a transaction does not release any such locks obtained during the\ntransaction.\n\nIt is also possible to recursively set the same lock. If a lock with the same\nname is set n times, it needs to be released n times as well.\n\nstr is case insensitive for GET_LOCK() and related functions. If str is an\nempty string or NULL, GET_LOCK() returns NULL and does nothing. timeout\nsupports microseconds.\n\nIf the metadata_lock_info plugin is installed, locks acquired with this\nfunction are visible in the Information Schema METADATA_LOCK_INFO table.\n\nThis function can be used to implement application locks or to simulate record\nlocks. Names are locked on a server-wide basis. If a name has been locked by\none client, GET_LOCK() blocks any request by another client for a lock with\nthe same name. This allows clients that agree on a given lock name to use the\nname to perform cooperative advisory locking. But be aware that it also allows\na client that is not among the set of cooperating clients to lock a name,\neither inadvertently or deliberately, and thus prevent any of the cooperating\nclients from locking that name. One way to reduce the likelihood of this is to\nuse lock names that are database-specific or application-specific. For\nexample, use lock names of the form db_name.str or app_name.str.\n\nStatements using the GET_LOCK function are not safe for statement-based\nreplication.\n\nThe patch to permit multiple locks was contributed by Konstantin \"Kostja\"\nOsipov (MDEV-3917).\n\nExamples\n--------\n\nSELECT GET_LOCK(\'lock1\',10);\n+----------------------+\n| GET_LOCK(\'lock1\',10) |\n+----------------------+\n| 1 |\n+----------------------+\n\nSELECT IS_FREE_LOCK(\'lock1\'), IS_USED_LOCK(\'lock1\');\n+-----------------------+-----------------------+\n| IS_FREE_LOCK(\'lock1\') | IS_USED_LOCK(\'lock1\') |\n+-----------------------+-----------------------+\n| 0 | 46 |\n+-----------------------+-----------------------+\n\nSELECT IS_FREE_LOCK(\'lock2\'), IS_USED_LOCK(\'lock2\');\n+-----------------------+-----------------------+\n| IS_FREE_LOCK(\'lock2\') | IS_USED_LOCK(\'lock2\') |\n+-----------------------+-----------------------+\n| 1 | NULL |\n+-----------------------+-----------------------+\n\nMultiple locks can be held:\n\nSELECT GET_LOCK(\'lock2\',10);\n+----------------------+\n| GET_LOCK(\'lock2\',10) |\n+----------------------+\n| 1 |\n+----------------------+\n\nSELECT IS_FREE_LOCK(\'lock1\'), IS_FREE_LOCK(\'lock2\');\n+-----------------------+-----------------------+\n| IS_FREE_LOCK(\'lock1\') | IS_FREE_LOCK(\'lock2\') |\n+-----------------------+-----------------------+\n| 0 | 0 |\n+-----------------------+-----------------------+\n\nSELECT RELEASE_LOCK(\'lock1\'), RELEASE_LOCK(\'lock2\');\n+-----------------------+-----------------------+\n| RELEASE_LOCK(\'lock1\') | RELEASE_LOCK(\'lock2\') |\n+-----------------------+-----------------------+\n| 1 | 1 |\n+-----------------------+-----------------------+\n\nIt is possible to hold the same lock recursively. This example is viewed using\nthe metadata_lock_info plugin:\n\nSELECT GET_LOCK(\'lock3\',10);\n+----------------------+\n| GET_LOCK(\'lock3\',10) |\n+----------------------+\n| 1 |\n+----------------------+\n\nSELECT GET_LOCK(\'lock3\',10);\n+----------------------+\n| GET_LOCK(\'lock3\',10) |\n+----------------------+\n| 1 |\n+----------------------+\n\nSELECT * FROM INFORMATION_SCHEMA.METADATA_LOCK_INFO;\n+-----------+---------------------+---------------+-----------+--------------+-\n----------+\n| THREAD_ID | LOCK_MODE | LOCK_DURATION | LOCK_TYPE | TABLE_SCHEMA |\nTABLE_NAME |\n+-----------+---------------------+---------------+-----------+--------------+-\n----------+\n| 46 | MDL_SHARED_NO_WRITE | NULL | User lock | lock3 |\n |\n+-----------+---------------------+---------------+-----------+--------------+-\n----------+\n\nSELECT RELEASE_LOCK(\'lock3\');\n+-----------------------+\n| RELEASE_LOCK(\'lock3\') |\n+-----------------------+\n| 1 |\n+-----------------------+\n\nSELECT * FROM INFORMATION_SCHEMA.METADATA_LOCK_INFO;\n+-----------+---------------------+---------------+-----------+--------------+-\n----------+\n| THREAD_ID | LOCK_MODE | LOCK_DURATION | LOCK_TYPE | TABLE_SCHEMA |\nTABLE_NAME |\n+-----------+---------------------+---------------+-----------+--------------+-\n----------+\n| 46 | MDL_SHARED_NO_WRITE | NULL | User lock | lock3 |\n |\n+-----------+---------------------+---------------+-----------+--------------+-\n----------+\n\nSELECT RELEASE_LOCK(\'lock3\');\n+-----------------------+\n| RELEASE_LOCK(\'lock3\') |\n+-----------------------+\n| 1 |\n+-----------------------+\n\nSELECT * FROM INFORMATION_SCHEMA.METADATA_LOCK_INFO;\nEmpty set (0.000 sec)\n\nTimeout example: Connection 1:\n\nSELECT GET_LOCK(\'lock4\',10);\n+----------------------+\n| GET_LOCK(\'lock4\',10) |\n+----------------------+\n| 1 |\n+----------------------+\n\nConnection 2:\n\nSELECT GET_LOCK(\'lock4\',10);\n\nAfter 10 seconds...\n\n+----------------------+\n| GET_LOCK(\'lock4\',10) |\n+----------------------+\n| 0 |\n+----------------------+\n\nDeadlocks are automatically detected and resolved. Connection 1:\n\nSELECT GET_LOCK(\'lock5\',10); \n+----------------------+\n| GET_LOCK(\'lock5\',10) |\n+----------------------+\n| 1 |\n+----------------------+\n\nConnection 2:\n\nSELECT GET_LOCK(\'lock6\',10);\n+----------------------+\n| GET_LOCK(\'lock6\',10) |\n+----------------------+\n| 1 |\n+----------------------+\n\nConnection 1:\n\nSELECT GET_LOCK(\'lock6\',10); \n+----------------------+\n| GET_LOCK(\'lock6\',10) |\n+----------------------+\n| 0 |\n+----------------------+\n\nConnection 2:\n\nSELECT GET_LOCK(\'lock5\',10);\nERROR 1213 (40001): Deadlock found when trying to get lock; try restarting\ntransaction\n\nURL: https://mariadb.com/kb/en/get_lock/','','https://mariadb.com/kb/en/get_lock/'), (241,'|',20,'Syntax\n------\n\n|\n\nDescription\n-----------\n\nBitwise OR. Converts the values to binary and compares bits. If either of the\ncorresponding bits has a value of 1, the resulting bit is also 1.\n\nSee also bitwise AND.\n\nExamples\n--------\n\nSELECT 2|1;\n+-----+\n| 2|1 |\n+-----+\n| 3 |\n+-----+\n\nSELECT 29 | 15;\n+---------+\n| 29 | 15 |\n+---------+\n| 31 |\n+---------+\n\nURL: https://mariadb.com/kb/en/bitwise-or/','','https://mariadb.com/kb/en/bitwise-or/'), (151,'INET6_NTOA',14,'Syntax\n------\n\nINET6_NTOA(expr)\n\nDescription\n-----------\n\nGiven an IPv6 or IPv4 network address as a numeric binary string, returns the\naddress as a nonbinary string in the connection character set.\n\nThe return string is lowercase, and is platform independent, since it does not\nuse functions specific to the operating system. It has a maximum length of 39\ncharacters.\n\nReturns NULL if the argument is not understood.\n\nExamples\n--------\n\nSELECT INET6_NTOA(UNHEX(\'0A000101\'));\n+-------------------------------+\n| INET6_NTOA(UNHEX(\'0A000101\')) |\n+-------------------------------+\n| 10.0.1.1 |\n+-------------------------------+\n\nSELECT INET6_NTOA(UNHEX(\'48F3000000000000D4321431BA23846F\'));\n+-------------------------------------------------------+\n| INET6_NTOA(UNHEX(\'48F3000000000000D4321431BA23846F\')) |\n+-------------------------------------------------------+\n| 48f3::d432:1431:ba23:846f |\n+-------------------------------------------------------+\n\nURL: https://mariadb.com/kb/en/inet6_ntoa/','','https://mariadb.com/kb/en/inet6_ntoa/'), (155,'IS_IPV4',14,'Syntax\n------\n\nIS_IPV4(expr)\n\nDescription\n-----------\n\nIf the expression is a valid IPv4 address, returns 1, otherwise returns 0.\n\nIS_IPV4() is stricter than INET_ATON(), but as strict as INET6_ATON(), in\ndetermining the validity of an IPv4 address. This implies that if IS_IPV4\nreturns 1, the same expression will always return a non-NULL result when\npassed to INET_ATON(), but that the reverse may not apply.\n\nExamples\n--------\n\nSELECT IS_IPV4(\'1110.0.1.1\');\n+-----------------------+\n| IS_IPV4(\'1110.0.1.1\') |\n+-----------------------+\n| 0 |\n+-----------------------+\n\nSELECT IS_IPV4(\'48f3::d432:1431:ba23:846f\');\n+--------------------------------------+\n| IS_IPV4(\'48f3::d432:1431:ba23:846f\') |\n+--------------------------------------+\n| 0 |\n+--------------------------------------+\n\nURL: https://mariadb.com/kb/en/is_ipv4/','','https://mariadb.com/kb/en/is_ipv4/'), (156,'IS_IPV4_COMPAT',14,'Syntax\n------\n\nIS_IPV4_COMPAT(expr)\n\nDescription\n-----------\n\nReturns 1 if a given numeric binary string IPv6 address, such as returned by\nINET6_ATON(), is IPv4-compatible, otherwise returns 0.\n\nMariaDB starting with 10.5.0\n----------------------------\nFrom MariaDB 10.5.0, when the argument is not INET6, automatic implicit CAST\nto INET6 is applied. As a consequence, IS_IPV4_COMPAT now understands\narguments in both text representation and binary(16) representation. Before\nMariaDB 10.5.0, the function understood only binary(16) representation.\n\nExamples\n--------\n\nSELECT IS_IPV4_COMPAT(INET6_ATON(\'::10.0.1.1\'));\n+------------------------------------------+\n| IS_IPV4_COMPAT(INET6_ATON(\'::10.0.1.1\')) |\n+------------------------------------------+\n| 1 |\n+------------------------------------------+\n\nSELECT IS_IPV4_COMPAT(INET6_ATON(\'::48f3::d432:1431:ba23:846f\'));\n+-----------------------------------------------------------+\n| IS_IPV4_COMPAT(INET6_ATON(\'::48f3::d432:1431:ba23:846f\')) |\n+-----------------------------------------------------------+\n| 0 |\n+-----------------------------------------------------------+\n\nURL: https://mariadb.com/kb/en/is_ipv4_compat/','','https://mariadb.com/kb/en/is_ipv4_compat/'), (157,'IS_IPV4_MAPPED',14,'Syntax\n------\n\nIS_IPV4_MAPPED(expr)\n\nDescription\n-----------\n\nReturns 1 if a given a numeric binary string IPv6 address, such as returned by\nINET6_ATON(), is a valid IPv4-mapped address, otherwise returns 0.\n\nMariaDB starting with 10.5.0\n----------------------------\nFrom MariaDB 10.5.0, when the argument is not INET6, automatic implicit CAST\nto INET6 is applied. As a consequence, IS_IPV4_MAPPED now understands\narguments in both text representation and binary(16) representation. Before\nMariaDB 10.5.0, the function understood only binary(16) representation.\n\nExamples\n--------\n\nSELECT IS_IPV4_MAPPED(INET6_ATON(\'::10.0.1.1\'));\n+------------------------------------------+\n| IS_IPV4_MAPPED(INET6_ATON(\'::10.0.1.1\')) |\n+------------------------------------------+\n| 0 |\n+------------------------------------------+\n\nSELECT IS_IPV4_MAPPED(INET6_ATON(\'::ffff:10.0.1.1\'));\n+-----------------------------------------------+\n| IS_IPV4_MAPPED(INET6_ATON(\'::ffff:10.0.1.1\')) |\n+-----------------------------------------------+\n| 1 |\n+-----------------------------------------------+\n\nURL: https://mariadb.com/kb/en/is_ipv4_mapped/','','https://mariadb.com/kb/en/is_ipv4_mapped/'), (161,'MASTER_POS_WAIT',14,'Syntax\n------\n\nMASTER_POS_WAIT(log_name,log_pos[,timeout,[\"connection_name\"]])\n\nDescription\n-----------\n\nThis function is useful in replication for controlling primary/replica\nsynchronization. It blocks until the replica has read and applied all updates\nup to the specified position (log_name,log_pos) in the primary log. The return\nvalue is the number of log events the replica had to wait for to advance to\nthe specified position. The function returns NULL if the replica SQL thread is\nnot started, the replica\'s primary information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the timeout has\nbeen exceeded. If the replica SQL thread stops while MASTER_POS_WAIT() is\nwaiting, the function returns NULL. If the replica is past the specified\nposition, the function returns immediately.\n\nIf a timeout value is specified, MASTER_POS_WAIT() stops waiting when timeout\nseconds have elapsed. timeout must be greater than 0; a zero or negative\ntimeout means no timeout.\n\nThe connection_name is used when you are using multi-source-replication. If\nyou don\'t specify it, it\'s set to the value of the default_master_connection\nsystem variable.\n\nStatements using the MASTER_POS_WAIT() function are not safe for replication.\n\nURL: https://mariadb.com/kb/en/master_pos_wait/','','https://mariadb.com/kb/en/master_pos_wait/'), (242,'~',20,'Syntax\n------\n\n~\n\nDescription\n-----------\n\nBitwise NOT. Converts the value to 4 bytes binary and inverts all bits.\n\nExamples\n--------\n\nSELECT 3 & ~1;\n+--------+\n| 3 & ~1 |\n+--------+\n| 2 |\n+--------+\n\nSELECT 5 & ~1;\n+--------+\n| 5 & ~1 |\n+--------+\n| 4 |\n+--------+\n\nURL: https://mariadb.com/kb/en/bitwise-not/','','https://mariadb.com/kb/en/bitwise-not/'), (244,'TRUE FALSE',20,'Description\n-----------\n\nThe constants TRUE and FALSE evaluate to 1 and 0, respectively. The constant\nnames can be written in any lettercase.\n\nExamples\n--------\n\nSELECT TRUE, true, FALSE, false;\n+------+------+-------+-------+\n| TRUE | TRUE | FALSE | FALSE |\n+------+------+-------+-------+\n| 1 | 1 | 0 | 0 |\n+------+------+-------+-------+\n\nURL: https://mariadb.com/kb/en/true-false/','','https://mariadb.com/kb/en/true-false/'), (247,'CHECK VIEW',21,'Syntax\n------\n\nCHECK VIEW view_name\n\nDescription\n-----------\n\nThe CHECK VIEW statement was introduced in MariaDB 10.0.18 to assist with\nfixing MDEV-6916, an issue introduced in MariaDB 5.2 where the view algorithms\nwere swapped. It checks whether the view algorithm is correct. It is run as\npart of mariadb-upgrade, and should not normally be required in regular use.\n\nURL: https://mariadb.com/kb/en/check-view/','','https://mariadb.com/kb/en/check-view/'), (160,'MASTER_GTID_WAIT',14,'Syntax\n------\n\nMASTER_GTID_WAIT(gtid-list[, timeout)\n\nDescription\n-----------\n\nThis function takes a string containing a comma-separated list of global\ntransaction id\'s (similar to the value of, for example, gtid_binlog_pos). It\nwaits until the value of gtid_slave_pos has the same or higher seq_no within\nall replication domains specified in the gtid-list; in other words, it waits\nuntil the slave has reached the specified GTID position.\n\nAn optional second argument gives a timeout in seconds. If the timeout expires\nbefore the specified GTID position is reached, then the function returns -1.\nPassing NULL or a negative number for the timeout means no timeout, and the\nfunction will wait indefinitely.\n\nIf the wait completes without a timeout, 0 is returned. Passing NULL for the\ngtid-list makes the function return NULL immediately, without waiting.\n\nThe gtid-list may be the empty string, in which case MASTER_GTID_WAIT()\nreturns immediately. If the gtid-list contains fewer domains than\ngtid_slave_pos, then only those domains are waited upon. If gtid-list contains\na domain that is not present in @@gtid_slave_pos, then MASTER_GTID_WAIT() will\nwait until an event containing such domain_id arrives on the slave (or until\ntimed out or killed).\n\nMASTER_GTID_WAIT() can be useful to ensure that a slave has caught up to a\nmaster. Simply take the value of gtid_binlog_pos on the master, and use it in\na MASTER_GTID_WAIT() call on the slave; when the call completes, the slave\nwill have caught up with that master position.\n\nMASTER_GTID_WAIT() can also be used in client applications together with the\nlast_gtid session variable. This is useful in a read-scaleout replication\nsetup, where the application writes to a single master but divides the reads\nout to a number of slaves to distribute the load. In such a setup, there is a\nrisk that an application could first do an update on the master, and then a\nbit later do a read on a slave, and if the slave is not fast enough, the data\nread from the slave might not include the update just made, possibly confusing\nthe application and/or the end-user. One way to avoid this is to request the\nvalue of last_gtid on the master just after the update. Then before doing the\nread on the slave, do a MASTER_GTID_WAIT() on the value obtained from the\nmaster; this will ensure that the read is not performed until the slave has\nreplicated sufficiently far for the update to have become visible.\n\nNote that MASTER_GTID_WAIT() can be used even if the slave is configured not\nto use GTID for connections (CHANGE MASTER TO master_use_gtid=no). This is\nbecause from MariaDB 10, GTIDs are always logged on the master server, and\nalways recorded on the slave servers.\n\nDifferences to MASTER_POS_WAIT()\n--------------------------------\n\n* MASTER_GTID_WAIT() is global; it waits for any master connection to reach\n the specified GTID position. MASTER_POS_WAIT() works only against a\n specific connection. This also means that while MASTER_POS_WAIT() aborts if\n its master connection is terminated with STOP SLAVE or due to an error,\n MASTER_GTID_WAIT() continues to wait while slaves are stopped.\n\n* MASTER_GTID_WAIT() can take its timeout as a floating-point value, so a\n timeout in fractional seconds is supported, eg. MASTER_GTID_WAIT(\"0-1-100\",\n 0.5). (The minimum wait is one microsecond, 0.000001 seconds).\n\n* MASTER_GTID_WAIT() allows one to specify a timeout of zero in order to do a\n non-blocking check to see if the slaves have progressed to a specific GTID\nposition\n (MASTER_POS_WAIT() takes a zero timeout as meaning an infinite wait). To do\n an infinite MASTER_GTID_WAIT(), specify a negative timeout, or omit the\n timeout argument.\n\n* MASTER_GTID_WAIT() does not return the number of events executed since the\n wait started, nor does it return NULL if a slave thread is stopped. It\n always returns either 0 for successful wait completed, or -1 for timeout\n reached (or NULL if the specified gtid-pos is NULL).\n\nSince MASTER_GTID_WAIT() looks only at the seq_no part of the GTIDs, not the\nserver_id, care is needed if a slave becomes diverged from another server so\nthat two different GTIDs with the same seq_no (in the same domain) arrive at\nthe same server. This situation is in any case best avoided; setting\ngtid_strict_mode is recommended, as this will prevent any such out-of-order\nsequence numbers from ever being replicated on a slave.\n\nURL: https://mariadb.com/kb/en/master_gtid_wait/','','https://mariadb.com/kb/en/master_gtid_wait/'), (163,'RELEASE_ALL_LOCKS',14,'MariaDB until 10.5.2\n--------------------\nRELEASE_ALL_LOCKS was added in MariaDB 10.5.2.\n\nSyntax\n------\n\nRELEASE_ALL_LOCKS()\n\nDescription\n-----------\n\nReleases all named locks held by the current session. Returns the number of\nlocks released, or 0 if none were held.\n\nStatements using the RELEASE_ALL_LOCKS function are not safe for\nstatement-based replication.\n\nExamples\n--------\n\nSELECT RELEASE_ALL_LOCKS();\n+---------------------+\n| RELEASE_ALL_LOCKS() | \n+---------------------+\n| 0 |\n+---------------------+\n\nSELECT GET_LOCK(\'lock1\',10);\n+----------------------+\n| GET_LOCK(\'lock1\',10) |\n+----------------------+\n| 1 |\n+----------------------+\n\nSELECT RELEASE_ALL_LOCKS();\n+---------------------+\n| RELEASE_ALL_LOCKS() | \n+---------------------+\n| 1 |\n+---------------------+\n\nURL: https://mariadb.com/kb/en/release_all_locks/','','https://mariadb.com/kb/en/release_all_locks/'), (272,'BLOB and TEXT Data Types',23,'Description\n-----------\n\nA BLOB is a binary large object that can hold a variable amount of data. The\nfour BLOB types are\n\n* TINYBLOB,\n* BLOB, \n* MEDIUMBLOB, and\n* LONGBLOB.\n\nThese differ only in the maximum length of the values they can hold.\n\nThe TEXT types are\n\n* TINYTEXT,\n* TEXT,\n* MEDIUMTEXT, and\n* LONGTEXT.\n* JSON (alias for LONGTEXT)\n\nThese correspond to the four BLOB types and have the same maximum lengths and\nstorage requirements.\n\nBLOB and TEXT columns can have a DEFAULT value.\n\nMariaDB starting with 10.4.3\n----------------------------\nFrom MariaDB 10.4, it is possible to set a unique index on columns that use\nthe BLOB or TEXT data types.\n\nURL: https://mariadb.com/kb/en/blob-and-text-data-types/','','https://mariadb.com/kb/en/blob-and-text-data-types/'), (274,'CHAR BYTE',23,'Description\n-----------\n\nThe CHAR BYTE data type is an alias for the BINARY data type. This is a\ncompatibility feature.\n\nURL: https://mariadb.com/kb/en/char-byte/','','https://mariadb.com/kb/en/char-byte/'), (277,'INET6',23,'MariaDB starting with 10.5.0\n----------------------------\nThe INET6 data type was added in MariaDB 10.5.0\n\nSyntax\n------\n\nINET6\n\nDescription\n-----------\n\nThe INET6 data type is intended for storage of IPv6 addresses, as well as IPv4\naddresses assuming conventional mapping of IPv4 addresses into IPv6 addresses.\n\nBoth short and long IPv6 notation are permitted, according to RFC-5952.\n\n* Values are stored as a 16-byte fixed length binary string, with most\nsignificant byte first.\n* Storage engines see INET6 as BINARY(16).\n* Clients see INET6 as CHAR(39) and get text representation on retrieval.\n\nThe IPv4-compatible notation is considered as deprecated. It is supported for\ncompatibility with the INET6_ATON function, which also understands this\nformat. It\'s recommended to use the mapped format to store IPv4 addresses in\nINET6.\n\nWhen an IPv4 mapped (or compatible) value is stored in INET6, it still\noccupies 16 bytes:\n\nRetrieval\n---------\n\nOn retrieval, in the client-server text protocol, INET6 values are converted\nto the short text representation, according to RFC-5952, that is with all\nleading zeroes in each group removed and with consequent zero groups\ncompressed.\n\nBesides creating one\'s own stored function, there is no a way to retrieve an\nINET6 value using long text representation.\n\nCasting\n-------\n\n* CAST from a character string to INET6 understands addresses in short or long\ntext notation (including IPv4 mapped and compatible addresses). NULL is\nreturned if the format is not understood.\n* CAST from a binary string to INET6 requires a 16-byte string as an argument.\nNULL is returned if the argument length is not equal to 16.\n* CAST from other data types to INET6 first converts data to a character\nstring, then CAST from character string to INET6 is applied.\n* CAST from INET6 to CHAR returns short text address notation.\n* CAST from INET6 to BINARY returns its 16-byte binary string representation.\n* CAST from INET6 to data types other than CHAR (e.g. SIGNED, UNSIGNED, TIME,\netc) returns an error.\n\nComparisons\n-----------\n\nAn INET6 expression can be compared to:\n\n* another INET6 expression\n* a character string expression with a text (short or long) address\nrepresentation:\n* a 16-byte binary string expression:\n\nAttempting to compare INET6 to an expression of any other data type returns an\nerror.\n\nMixing INET6 Values for Result\n------------------------------\n\nAn INET6 expression can be mixed for result (i.e. UNION, CASE..THEN, COALESCE\netc) with:\n\n* another INET6 expression. The resulting data type is INET6.\n* a character string in text (short or long) address representation. The\nresult data type is INET6. The character string counterpart is automatically\nconverted to INET6. If the string format is not understood, it\'s converted\nwith a warning to either NULL or to \'::\', depending on the NULL-ability of the\nresult.\n* a 16-byte binary string. The resulting data type is INET6. The binary string\ncounterpart is automatically converted to INET6. If the length of the binary\nstring is not equal to 16, it\'s converted with a warning to NULL or to \'::\'\ndepending on the NULL-ability of the result.\n\nAttempts to mix INET6 for result with other data types will return an error.\n\nMixing INET6 with other data types for LEAST and GREATEST, when mixing for\ncomparison and mixing for result are involved at the same time, uses the same\nrules with mixing for result, described in the previous paragraphs.\n\nFunctions and Operators\n-----------------------\n\n* HEX() with an INET6 argument returns a hexadecimal representation of the\nunderlying 16-byte binary string\n* Arithmetic operators (+,-,*,/,MOD,DIV) are not supported for INET6. This may\nchange in the future.\n* The INET6_ATON function now understands INET6 values as an argument\n* The prototypes of the IS_IPV4_COMPAT and IS_IPV4_MAPPED functions have\nchanged from a BINARY(16) to a INET6,\n* When the argument for these two functions is not INET6, automatic implicit\nCAST to INET6 is applied. As a consequence, both functions now understand\narguments in both text representation and binary(16) representation. Before\nMariaDB 10.5.0, these functions understood only binary(16) representation.\n\nPrepared Statement Parameters\n-----------------------------\n\nINET6 understands both text and binary(16) address representation in prepared\nstatement parameters (PREPARE..EXECUTE and EXECUTE IMMEDIATE statements).\n\nMigration between BINARY(16) and INET6\n---------------------------------------\n\nBefore MariaDB 10.5.0, you may have used BINARY(16) as a storage for IPv6\ninternet addresses, in combination with INET6_ATON and INET6_NTOA to\nrespectively insert and retrieve data.\n\nFrom 10.5, you can ALTER BINARY(16) columns storing IPv6 addresses to INET6.\nAfter such an alter, there is no a need to use INET6_ATON() and INET6_NTOA().\nAddresses can be inserted and retrieved directly.\n\nIt is also possible to convert INET6 columns to BINARY(16) and continue using\nthe data in combination with INET6_NTOA() and INET6_ATON().\n\nExamples\n--------\n\nCREATE TABLE t1 (a INET6);\n\nInserting using short text address notation:\n\nINSERT INTO t1 VALUES (\'2001:db8::ff00:42:8329\');\n\nLong text address notation:\n\nINSERT INTO t1 VALUES (\'2001:0db8:0000:0000:0000:ff00:0042:8329\');\n\n16-byte binary string notation:\n\nINSERT INTO t1 VALUES (0x20010DB8000000000000FF0000428329);\nINSERT INTO t1 VALUES (UNHEX(\'20010DB8000000000000FF0000428329\'));\n\nIPv4 addresses, using IPv4-mapped and IPv4-compatible notations:\n\nINSERT INTO t1 VALUES (\'::ffff:192.0.2.128\'); -- mapped\nINSERT INTO t1 VALUES (\'::192.0.2.128\'); -- compatible\n\nSELECT * FROM t1;\n+------------------------+\n| a |\n+------------------------+\n| 2001:db8::ff00:42:8329 |\n| 2001:db8::ff00:42:8329 |\n| 2001:db8::ff00:42:8329 |\n| 2001:db8::ff00:42:8329 |\n| ::ffff:192.0.2.128 |\n| ::192.0.2.128 |\n+------------------------+\n\nIPv4 mapped (or compatible) values still occupy 16 bytes:\n\nCREATE OR REPLACE TABLE t1 (a INET6);\n\nINSERT INTO t1 VALUES (\'::ffff:192.0.2.128\');\n\nSELECT * FROM t1;\n+--------------------+\n| a |\n+--------------------+\n| ::ffff:192.0.2.128 |\n+--------------------+\n\nSELECT HEX(a) FROM t1;\n+----------------------------------+\n| HEX(a) |\n+----------------------------------+\n| 00000000000000000000FFFFC0000280 |\n+----------------------------------+\n\nCasting from INET6 to anything other than CHAR returns an error:\n\nSELECT CAST(a AS DECIMAL) FROM t1;\n\nERROR 4079 (HY000): Illegal parameter data type inet6 for operation\n\'decimal_typecast\'\n\nComparison Examples\n-------------------\n\nComparison with another INET6 expression:\n\nCREATE OR REPLACE TABLE t1 (a INET6);\n CREATE OR REPLACE TABLE t2 (a INET6);\n\nINSERT INTO t1 VALUES\n(\'2001:db8::ff00:42:8328\'),(\'2001:db8::ff00:42:8329\');\n INSERT INTO t2 VALUES\n(\'2001:db8::ff00:42:832a\'),(\'2001:db8::ff00:42:8329\');\n\nSELECT t1.* FROM t1,t2 WHERE t1.a=t2.a;\n +------------------------+\n | a |\n +------------------------+\n | 2001:db8::ff00:42:8329 |\n +------------------------+\n\nWith a character string expression with a text (short or long) address\nrepresentation:\n\nCREATE OR REPLACE TABLE t1 (a INET6);\n\nINSERT INTO t1 VALUES (\'2001:db8::ff00:42:8329\');\n\nSELECT * FROM t1 WHERE a=\'2001:db8::ff00:42:8329\';\n +------------------------+\n | a |\n +------------------------+\n | 2001:db8::ff00:42:8329 |\n +------------------------+\n\nWith a 16-byte binary string expression:\n\nCREATE OR REPLACE TABLE t1 (a INET6);\n\nINSERT INTO t1 VALUES (\'2001:db8::ff00:42:8329\');\n\nSELECT * FROM t1 WHERE a=X\'20010DB8000000000000FF0000428329\';\n +------------------------+\n | a |\n +------------------------+\n | 2001:db8::ff00:42:8329 |\n +------------------------+\n\nWith an expression of another data type:\n\nSELECT * FROM t1 WHERE a=1;\nERROR 4078 (HY000): Illegal parameter data types inet6 and int for operation\n\'=\'\n\nMixing for Result Examples\n--------------------------\n\nMixed with another INET6 expression, returning an INET6 data type:\n\nCREATE OR REPLACE TABLE t1 (a INET6, b INET6);\n\nINSERT INTO t1 VALUES (NULL,\'2001:db8::ff00:42:8329\');\n\nSELECT a FROM t1 UNION SELECT b FROM t1;\n +------------------------+\n | a |\n +------------------------+\n | NULL |\n | 2001:db8::ff00:42:8329 |\n +------------------------+\n\nSELECT COALESCE(a, b) FROM t1;\n +------------------------+\n | COALESCE(a, b) |\n +------------------------+\n | 2001:db8::ff00:42:8329 |\n +------------------------+\n\nMixed with a character string in text (short or long) address representation:\n\nCREATE OR REPLACE TABLE t1 (a INET6, b VARCHAR(64));\n\nINSERT INTO t1 VALUES (NULL,\'2001:db8::ff00:42:8328\');\n\nINSERT INTO t1 VALUES (NULL,\'2001:db8::ff00:42:832a garbage\');\n\nSELECT COALESCE(a,b) FROM t1;\n +------------------------+\n | COALESCE(a,b) |\n +------------------------+\n | 2001:db8::ff00:42:8328 |\n | NULL |\n +------------------------+\n 2 rows in set, 1 warning (0.001 sec)\n\nSHOW WARNINGS;\n\n+---------+------+---------------------------------------------------------+\n | Level | Code | Message\n|\n\n+---------+------+---------------------------------------------------------+\n | Warning | 1292 | Incorrect inet6 value: \'2001:db8::ff00:42:832a garbage\'\n|\n\n+---------+------+---------------------------------------------------------+\n\nMixed with a 16-byte binary string:\n\nCREATE OR REPLACE TABLE t1 (a INET6, b VARBINARY(16));\n\nINSERT INTO t1 VALUES (NULL,CONCAT(0xFFFF,REPEAT(0x0000,6),0xFFFF));\n\nINSERT INTO t1 VALUES (NULL,0x00/*garbage*/);\n\nSELECT COALESCE(a,b) FROM t1;\n +---------------+\n | COALESCE(a,b) |\n +---------------+\n | ffff::ffff |\n | NULL |\n +---------------+\n 2 rows in set, 1 warning (0.001 sec)\n\nSHOW WARNINGS;\n +---------+------+-------------------------------+\n | Level | Code | Message |\n +---------+------+-------------------------------+\n | Warning | 1292 | Incorrect inet6 value: \'\\x00\' |\n +---------+------+-------------------------------+\n\nMixing with other data types:\n\nSELECT CAST(\'ffff::ffff\' AS INET6) UNION SELECT 1;\nERROR 4078 (HY000): Illegal parameter data types inet6 and int for operation\n\'UNION\'\n\nFunctions and Operators Examples\n--------------------------------\n\nHEX with an INET6 argument returning a hexadecimal representation:\n\nSELECT HEX(CAST(\'2001:db8::ff00:42:8329\' AS INET6));\n +----------------------------------------------+\n | HEX(CAST(\'2001:db8::ff00:42:8329\' AS INET6)) |\n +----------------------------------------------+\n | 20010DB8000000000000FF0000428329 |\n +----------------------------------------------+\n\nINET6_ATON now understands INET6 values as an argument:\n\nCREATE OR REPLACE TABLE t1 (a INET6);\n\nINSERT INTO t1 VALUES (\'2001:db8::ff00:42:8329\');\n\nSELECT a, HEX(INET6_ATON(a)) FROM t1;\n +------------------------+----------------------------------+\n | a | HEX(INET6_ATON(a)) |\n +------------------------+----------------------------------+\n | 2001:db8::ff00:42:8329 | 20010DB8000000000000FF0000428329 |\n +------------------------+----------------------------------+\n\nIS_IPV4_COMPAT and IS_IPV4_MAPPED prototype now a BINARY(16)):\n\nCREATE OR REPLACE TABLE t1 (a INET6);\n\nINSERT INTO t1 VALUES (\'2001:db8::ff00:42:8329\');\n INSERT INTO t1 VALUES (\'::ffff:192.168.0.1\');\n INSERT INTO t1 VALUES (\'::192.168.0.1\');\n\nSELECT a, IS_IPV4_MAPPED(a), IS_IPV4_COMPAT(a) FROM t1;\n +------------------------+-------------------+-------------------+\n | a | IS_IPV4_MAPPED(a) | IS_IPV4_COMPAT(a) |\n +------------------------+-------------------+-------------------+\n | 2001:db8::ff00:42:8329 | 0 | 0 |\n | ::ffff:192.168.0.1 | 1 | 0 |\n | ::192.168.0.1 | 0 | 1 |\n +------------------------+-------------------+-------------------+\n\nAutomatic implicit CAST to INET6:\n\nCREATE OR REPLACE TABLE t1 (\n a INET6,\n b VARCHAR(39) DEFAULT a\n );\n\nINSERT INTO t1 (a) VALUES (\'ffff::ffff\'),(\'::ffff:192.168.0.1\');\n\nSELECT a, IS_IPV4_MAPPED(a), b, IS_IPV4_MAPPED(b) FROM t1;\n\n+--------------------+-------------------+--------------------+----------------\n--+\n | a | IS_IPV4_MAPPED(a) | b |\nIS_IPV4_MAPPED(b) |\n\n+--------------------+-------------------+--------------------+----------------\n--+\n | ffff::ffff | 0 | ffff::ffff |\n 0 |\n | ::ffff:192.168.0.1 | 1 | ::ffff:192.168.0.1 |\n 1 |\n\n+--------------------+-------------------+--------------------+----------------\n--+\n\nCREATE OR REPLACE TABLE t1 (\n a INET6,\n b BINARY(16) DEFAULT UNHEX(HEX(a))\n );\n\nINSERT INTO t1 (a) VALUES (\'ffff::ffff\'),(\'::ffff:192.168.0.1\');\n\nSELECT a, IS_IPV4_MAPPED(a), HEX(b), IS_IPV4_MAPPED(b) FROM t1;\n\n+--------------------+-------------------+----------------------------------+--\n----------------+\n | a | IS_IPV4_MAPPED(a) | HEX(b)\n | IS_IPV4_MAPPED(b) |\n\n+--------------------+-------------------+----------------------------------+--\n----------------+\n | ffff::ffff | 0 |\nFFFF000000000000000000000000FFFF | 0 |\n | ::ffff:192.168.0.1 | 1 |\n00000000000000000000FFFFC0A80001 | 1 |\n\n+--------------------+-------------------+----------------------------------+--\n----------------+\n\nPrepared Statement Parameters Examples\n--------------------------------------\n\nCREATE OR REPLACE TABLE t1 (a INET6);\n\nEXECUTE IMMEDIATE \'INSERT INTO t1 VALUES (?)\' USING \'ffff::fffe\';\nEXECUTE IMMEDIATE \'INSERT INTO t1 VALUES (?)\' USING\nX\'FFFF000000000000000000000000FFFF\';\n\nSELECT * FROM t1;\n+------------+\n| a |\n+------------+\n| ffff::fffe |\n| ffff::ffff |\n+------------+\n\nEXECUTE IMMEDIATE \'SELECT * FROM t1 WHERE a=?\' USING \'ffff::fffe\';\n+------------+\n| a |\n+------------+\n| ffff::fffe |\n+------------+\n\nEXECUTE IMMEDIATE \'SELECT * FROM t1 WHERE a=?\' USING\nX\'FFFF000000000000000000000000FFFF\';\n+------------+\n| a |\n+------------+\n| ffff::ffff |\n+------------+\n\nMigration between BINARY(16) and INET6 Examples\n-----------------------------------------------\n\nBefore MariaDB 10.5:\n\nCREATE OR REPLACE TABLE t1 (a BINARY(16));\n\nINSERT INTO t1 VALUES (INET6_ATON(\'ffff::ffff\'));\n\nSELECT INET6_NTOA(a) FROM t1;\n+---------------+\n| INET6_NTOA(a) |\n+---------------+\n| ffff::ffff |\n+---------------+\n\nMigrating to INET6, from MariaDB 10.5:\n\nALTER TABLE t1 MODIFY a INET6;\n\nINSERT INTO t1 VALUES (\'ffff::fffe\');\n\nSELECT * FROM t1;\n+------------+\n| a |\n+------------+\n| ffff::ffff |\n| ffff::fffe |\n+------------+\n\nMigration from INET6 to BINARY(16):\n\nCREATE OR REPLACE TABLE t1 (a INET6);\n\nINSERT INTO t1 VALUES (\'2001:db8::ff00:42:8329\');\nINSERT INTO t1 VALUES (\'::ffff:192.168.0.1\');\nINSERT INTO t1 VALUES (\'::192.168.0.1\');\n\nALTER TABLE t1 MODIFY a BINARY(16);\n\nSELECT INET6_NTOA(a) FROM t1;\n+------------------------+\n| INET6_NTOA(a) |\n+------------------------+\n| 2001:db8::ff00:42:8329 |\n| ::ffff:192.168.0.1 |\n| ::192.168.0.1 |\n+------------------------+\n\nURL: https://mariadb.com/kb/en/inet6/','','https://mariadb.com/kb/en/inet6/'), (279,'MEDIUMBLOB',23,'Syntax\n------\n\nMEDIUMBLOB\n\nDescription\n-----------\n\nA BLOB column with a maximum length of 16,777,215 (224 - 1) bytes. Each\nMEDIUMBLOB value is stored using a three-byte length prefix that indicates the\nnumber of bytes in the value.\n\nURL: https://mariadb.com/kb/en/mediumblob/','','https://mariadb.com/kb/en/mediumblob/'), (280,'MEDIUMTEXT',23,'Syntax\n------\n\nMEDIUMTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nDescription\n-----------\n\nA TEXT column with a maximum length of 16,777,215 (224 - 1) characters. The\neffective maximum length is less if the value contains multi-byte characters.\nEach MEDIUMTEXT value is stored using a three-byte length prefix that\nindicates the number of bytes in the value.\n\nURL: https://mariadb.com/kb/en/mediumtext/','','https://mariadb.com/kb/en/mediumtext/'), (164,'RELEASE_LOCK',14,'Syntax\n------\n\nRELEASE_LOCK(str)\n\nDescription\n-----------\n\nReleases the lock named by the string str that was obtained with GET_LOCK().\nReturns 1 if the lock was released, 0 if the lock was not established by this\nthread (in which case the lock is not released), and NULL if the named lock\ndid not exist. The lock does not exist if it was never obtained by a call to\nGET_LOCK() or if it has previously been released.\n\nstr is case insensitive. If str is an empty string or NULL, RELEASE_LOCK()\nreturns NULL and does nothing.\n\nStatements using the RELEASE_LOCK() function are not safe for replication.\n\nThe DO statement is convenient to use with RELEASE_LOCK().\n\nExamples\n--------\n\nConnection1:\n\nSELECT GET_LOCK(\'lock1\',10);\n+----------------------+\n| GET_LOCK(\'lock1\',10) |\n+----------------------+\n| 1 |\n+----------------------+\n\nConnection 2:\n\nSELECT GET_LOCK(\'lock2\',10);\n+----------------------+\n| GET_LOCK(\'lock2\',10) |\n+----------------------+\n| 1 |\n+----------------------+\n\nConnection 1:\n\nSELECT RELEASE_LOCK(\'lock1\'), RELEASE_LOCK(\'lock2\'), RELEASE_LOCK(\'lock3\');\n+-----------------------+-----------------------+-----------------------+\n| RELEASE_LOCK(\'lock1\') | RELEASE_LOCK(\'lock2\') | RELEASE_LOCK(\'lock3\') |\n+-----------------------+-----------------------+-----------------------+\n| 1 | 0 | NULL |\n+-----------------------+-----------------------+-----------------------+\n\nFrom MariaDB 10.0.2, it is possible to hold the same lock recursively. This\nexample is viewed using the metadata_lock_info plugin:\n\nSELECT GET_LOCK(\'lock3\',10);\n+----------------------+\n| GET_LOCK(\'lock3\',10) |\n+----------------------+\n| 1 |\n+----------------------+\n\nSELECT GET_LOCK(\'lock3\',10);\n+----------------------+\n| GET_LOCK(\'lock3\',10) |\n+----------------------+\n| 1 |\n+----------------------+\n\nSELECT * FROM INFORMATION_SCHEMA.METADATA_LOCK_INFO;\n+-----------+---------------------+---------------+-----------+--------------+-\n----------+\n| THREAD_ID | LOCK_MODE | LOCK_DURATION | LOCK_TYPE | TABLE_SCHEMA |\nTABLE_NAME |\n+-----------+---------------------+---------------+-----------+--------------+-\n----------+\n| 46 | MDL_SHARED_NO_WRITE | NULL | User lock | lock3 |\n |\n+-----------+---------------------+---------------+-----------+--------------+-\n----------+\n\nSELECT RELEASE_LOCK(\'lock3\');\n+-----------------------+\n| RELEASE_LOCK(\'lock3\') |\n+-----------------------+\n| 1 |\n+-----------------------+\n\nSELECT * FROM INFORMATION_SCHEMA.METADATA_LOCK_INFO;\n+-----------+---------------------+---------------+-----------+--------------+-\n----------+\n| THREAD_ID | LOCK_MODE | LOCK_DURATION | LOCK_TYPE | TABLE_SCHEMA |\nTABLE_NAME |\n+-----------+---------------------+---------------+-----------+--------------+-\n----------+\n| 46 | MDL_SHARED_NO_WRITE | NULL | User lock | lock3 |\n |\n+-----------+---------------------+---------------+-----------+--------------+-\n----------+\n\nSELECT RELEASE_LOCK(\'lock3\');\n+-----------------------+\n| RELEASE_LOCK(\'lock3\') |\n+-----------------------+\n| 1 |\n+-----------------------+\n\nSELECT * FROM INFORMATION_SCHEMA.METADATA_LOCK_INFO;\nEmpty set (0.000 sec)\n\nURL: https://mariadb.com/kb/en/release_lock/','','https://mariadb.com/kb/en/release_lock/'), (167,'UUID',14,'Syntax\n------\n\nUUID()\n\nDescription\n-----------\n\nReturns a Universally Unique Identifier (UUID).\n\nA UUID is designed as a number that is globally unique in space and time. Two\ncalls to UUID() are expected to generate two different values, even if these\ncalls are performed on two separate computers that are not connected to each\nother.\n\nUUID() results are intended to be unique, but cannot always be relied upon to\nunpredictable and unguessable, so should not be relied upon for these purposes.\n\nA UUID is a 128-bit number represented by a utf8 string of five hexadecimal\nnumbers in aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee format:\n\n* The first three numbers are generated from a timestamp.\n* The fourth number preserves temporal uniqueness in case the timestamp value\n loses monotonicity (for example, due to daylight saving time).\n* The fifth number is an IEEE 802 node number that provides spatial uniqueness.\n A random number is substituted if the latter is not available (for example,\n because the host computer has no Ethernet card, or we do not know how to find\n the hardware address of an interface on your operating system). In this case,\n spatial uniqueness cannot be guaranteed. Nevertheless, a collision should\n have very low probability.\n\nCurrently, the MAC address of an interface is taken into account only on\nFreeBSD and Linux. On other operating systems, MariaDB uses a randomly\ngenerated 48-bit number.\n\nStatements using the UUID() function are not safe for replication.\n\nThe results are generated according to the \"DCE 1.1:Remote Procedure Call\"\n(Appendix A) CAE (Common Applications Environment) Specifications published by\nThe Open Group in October 1997 (Document Number C706).\n\nExamples\n--------\n\nSELECT UUID();\n+--------------------------------------+\n| UUID() |\n+--------------------------------------+\n| cd41294a-afb0-11df-bc9b-00241dd75637 |\n+--------------------------------------+\n\nURL: https://mariadb.com/kb/en/uuid/','','https://mariadb.com/kb/en/uuid/'), (281,'LONGBLOB',23,'Syntax\n------\n\nLONGBLOB\n\nDescription\n-----------\n\nA BLOB column with a maximum length of 4,294,967,295 bytes or 4GB (232 - 1).\nThe effective maximum length of LONGBLOB columns depends on the configured\nmaximum packet size in the client/server protocol and available memory. Each\nLONGBLOB value is stored using a four-byte length prefix that indicates the\nnumber of bytes in the value.\n\nOracle Mode\n-----------\n\nMariaDB starting with 10.3\n--------------------------\nIn Oracle mode from MariaDB 10.3, BLOB is a synonym for LONGBLOB.\n\nURL: https://mariadb.com/kb/en/longblob/','','https://mariadb.com/kb/en/longblob/'), (285,'TINYBLOB',23,'Syntax\n------\n\nTINYBLOB\n\nDescription\n-----------\n\nA BLOB column with a maximum length of 255 (28 - 1) bytes. Each TINYBLOB value\nis stored using a one-byte length prefix that indicates the number of bytes in\nthe value.\n\nURL: https://mariadb.com/kb/en/tinyblob/','','https://mariadb.com/kb/en/tinyblob/'), (286,'TINYTEXT',23,'Syntax\n------\n\nTINYTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nDescription\n-----------\n\nA TEXT column with a maximum length of 255 (28 - 1) characters. The effective\nmaximum length is less if the value contains multi-byte characters. Each\nTINYTEXT value is stored using a one-byte length prefix that indicates the\nnumber of bytes in the value.\n\nURL: https://mariadb.com/kb/en/tinytext/','','https://mariadb.com/kb/en/tinytext/'), (289,'SET Data Type',23,'Syntax\n------\n\nSET(\'value1\',\'value2\',...) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nDescription\n-----------\n\nA set. A string object that can have zero or more values, each of which must\nbe chosen from the list of values \'value1\', \'value2\', ... A SET column can\nhave a maximum of 64 members. SET values are represented internally as\nintegers.\n\nSET values cannot contain commas.\n\nIf a SET contains duplicate values, an error will be returned if strict mode\nis enabled, or a warning if strict mode is not enabled.\n\nURL: https://mariadb.com/kb/en/set-data-type/','','https://mariadb.com/kb/en/set-data-type/'), (168,'UUID_SHORT',14,'Syntax\n------\n\nUUID_SHORT()\n\nDescription\n-----------\n\nReturns a \"short\" universally unique identifier as a 64-bit unsigned integer\n(rather than a string-form 128-bit identifier as returned by the UUID()\nfunction).\n\nThe value of UUID_SHORT() is guaranteed to be unique if the following\nconditions hold:\n\n* The server_id of the current host is unique among your set of master and\n slave servers\n* server_id is between 0 and 255\n* You don\'t set back your system time for your server between mysqld restarts\n* You do not invoke UUID_SHORT() on average more than 16\n million times per second between mysqld restarts\n\nThe UUID_SHORT() return value is constructed this way:\n\n(server_id & 255) << 56\n+ (server_startup_time_in_seconds << 24)\n+ incremented_variable++;\n\nStatements using the UUID_SHORT() function are not safe for statement-based\nreplication.\n\nExamples\n--------\n\nSELECT UUID_SHORT();\n+-------------------+\n| UUID_SHORT() |\n+-------------------+\n| 21517162376069120 |\n+-------------------+\n\ncreate table t1 (a bigint unsigned default(uuid_short()) primary key);\ninsert into t1 values(),();\nselect * from t1;\n+-------------------+\n| a |\n+-------------------+\n| 98113699159474176 |\n| 98113699159474177 |\n+-------------------+\n\nURL: https://mariadb.com/kb/en/uuid_short/','','https://mariadb.com/kb/en/uuid_short/'), (169,'VALUES / VALUE',14,'Syntax\n------\n\nMariaDB starting with 10.3.3\n----------------------------\n\nVALUE(col_name)\n\nMariaDB until 10.3.2\n--------------------\n\nVALUES(col_name)\n\nDescription\n-----------\n\nIn an INSERT ... ON DUPLICATE KEY UPDATE statement, you can use the\nVALUES(col_name) function in the UPDATE clause to refer to column values from\nthe INSERT portion of the statement. In other words, VALUES(col_name) in the\nUPDATE clause refers to the value of col_name that would be inserted, had no\nduplicate-key conflict occurred. This function is especially useful in\nmultiple-row inserts.\n\nThe VALUES() function is meaningful only in INSERT ... ON DUPLICATE KEY UPDATE\nstatements and returns NULL otherwise.\n\nIn MariaDB 10.3.3 this function was renamed to VALUE(), because it\'s\nincompatible with the standard Table Value Constructors syntax, implemented in\nMariaDB 10.3.3.\n\nThe VALUES() function can still be used even from MariaDB 10.3.3, but only in\nINSERT ... ON DUPLICATE KEY UPDATE statements; it\'s a syntax error otherwise.\n\nExamples\n--------\n\nMariaDB starting with 10.3.3\n----------------------------\n\nINSERT INTO t (a,b,c) VALUES (1,2,3),(4,5,6)\n ON DUPLICATE KEY UPDATE c=VALUE(a)+VALUE(b);\n\nMariaDB until 10.3.2\n--------------------\n\nINSERT INTO t (a,b,c) VALUES (1,2,3),(4,5,6)\n ON DUPLICATE KEY UPDATE c=VALUES(a)+VALUES(b);\n\nURL: https://mariadb.com/kb/en/values-value/','','https://mariadb.com/kb/en/values-value/'), (173,'||',15,'Syntax\n------\n\nOR, ||\n\nDescription\n-----------\n\nLogical OR. When both operands are non-NULL, the result is 1 if any operand is\nnon-zero, and 0 otherwise. With a NULL operand, the result is 1 if the other\noperand is non-zero, and NULL otherwise. If both operands are NULL, the result\nis NULL.\n\nFor this operator, short-circuit evaluation can be used.\n\nNote that, if the PIPES_AS_CONCAT SQL_MODE is set, || is used as a string\nconcatenation operator. This means that a || b is the same as CONCAT(a,b). See\nCONCAT() for details.\n\nOracle Mode\n-----------\n\nMariaDB starting with 10.3\n--------------------------\nIn Oracle mode from MariaDB 10.3, || ignores NULL.\n\nExamples\n--------\n\nSELECT 1 || 1;\n+--------+\n| 1 || 1 |\n+--------+\n| 1 |\n+--------+\n\nSELECT 1 || 0;\n+--------+\n| 1 || 0 |\n+--------+\n| 1 |\n+--------+\n\nSELECT 0 || 0;\n+--------+\n| 0 || 0 |\n+--------+\n| 0 |\n+--------+\n\nSELECT 0 || NULL;\n+-----------+\n| 0 || NULL |\n+-----------+\n| NULL |\n+-----------+\n\nSELECT 1 || NULL;\n+-----------+\n| 1 || NULL |\n+-----------+\n| 1 |\n+-----------+\n\nIn Oracle mode, from MariaDB 10.3:\n\nSELECT 0 || NULL;\n+-----------+\n| 0 || NULL |\n+-----------+\n| 0 |\n+-----------+\n\nURL: https://mariadb.com/kb/en/or/','','https://mariadb.com/kb/en/or/'), (175,'AVG',16,'Syntax\n------\n\nAVG([DISTINCT] expr)\n\nDescription\n-----------\n\nReturns the average value of expr. The DISTINCT option can be used to return\nthe average of the distinct values of expr. NULL values are ignored. It is an\naggregate function, and so can be used with the GROUP BY clause.\n\nAVG() returns NULL if there were no matching rows.\n\nAVG() can be used as a window function.\n\nExamples\n--------\n\nCREATE TABLE sales (sales_value INT);\n\nINSERT INTO sales VALUES(10),(20),(20),(40);\n\nSELECT AVG(sales_value) FROM sales;\n+------------------+\n| AVG(sales_value) |\n+------------------+\n| 22.5000 |\n+------------------+\n\nSELECT AVG(DISTINCT(sales_value)) FROM sales;\n+----------------------------+\n| AVG(DISTINCT(sales_value)) |\n+----------------------------+\n| 23.3333 |\n+----------------------------+\n\nCommonly, AVG() is used with a GROUP BY clause:\n\nCREATE TABLE student (name CHAR(10), test CHAR(10), score TINYINT);\n\nINSERT INTO student VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87), (\'Tatiana\', \'Tuning\', 83);\n\nSELECT name, AVG(score) FROM student GROUP BY name;\n+---------+------------+\n| name | AVG(score) |\n+---------+------------+\n| Chun | 74.0000 |\n| Esben | 37.0000 |\n| Kaolin | 72.0000 |\n| Tatiana | 85.0000 |\n+---------+------------+\n\nBe careful to avoid this common mistake, not grouping correctly and returning\nmismatched data:\n\nSELECT name,test,AVG(score) FROM student;\n+------+------+------------+\n| name | test | MIN(score) |\n+------+------+------------+\n| Chun | SQL | 31 |\n+------+------+------------+\n\nAs a window function:\n\nCREATE TABLE student_test (name CHAR(10), test CHAR(10), score TINYINT);\n\nINSERT INTO student_test VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87), (\'Tatiana\', \'Tuning\', 83);\n\nSELECT name, test, score, AVG(score) OVER (PARTITION BY test) \n AS average_by_test FROM student_test;\n+---------+--------+-------+-----------------+\n| name | test | score | average_by_test |\n+---------+--------+-------+-----------------+\n| Chun | SQL | 75 | 65.2500 |\n| Chun | Tuning | 73 | 68.7500 |\n| Esben | SQL | 43 | 65.2500 |\n| Esben | Tuning | 31 | 68.7500 |\n| Kaolin | SQL | 56 | 65.2500 |\n| Kaolin | Tuning | 88 | 68.7500 |\n| Tatiana | SQL | 87 | 65.2500 |\n| Tatiana | Tuning | 83 | 68.7500 |\n+---------+--------+-------+-----------------+\n\nURL: https://mariadb.com/kb/en/avg/','','https://mariadb.com/kb/en/avg/'), (294,'TIMESTAMP',23,'Syntax\n------\n\nTIMESTAMP [(>\n SELECT 3;\n\nEND;\n\n//\n\nDELIMITER\n\ncall p1();\n+---+\n| 1 |\n+---+\n| 1 |\n+---+\n1 row in set (0.000 sec)\n\n+---+\n| 3 |\n+---+\n| 3 |\n+---+\n1 row in set (0.000 sec)\n\nURL: https://mariadb.com/kb/en/goto/','','https://mariadb.com/kb/en/goto/'), (174,'Stored Aggregate Functions',16,'MariaDB starting with 10.3.3\n----------------------------\nThe ability to create stored aggregate functions was added in MariaDB 10.3.3.\n\nAggregate functions are functions that are computed over a sequence of rows\nand return one result for the sequence of rows.\n\nCreating a custom aggregate function is done using the CREATE FUNCTION\nstatement with two main differences:\n\n* The addition of the AGGREGATE keyword, so CREATE AGGREGATE FUNCTION\n* The FETCH GROUP NEXT ROW instruction inside the loop\n* Oracle PL/SQL compatibility using SQL/PL is provided\n\nStandard Syntax\n---------------\n\nCREATE AGGREGATE FUNCTION function_name (parameters) RETURNS return_type\nBEGIN\n All types of declarations\n DECLARE CONTINUE HANDLER FOR NOT FOUND RETURN return_val;\n LOOP\n FETCH GROUP NEXT ROW; // fetches next row from table\n other instructions\n END LOOP;\nEND\n\nStored aggregate functions were a 2016 Google Summer of Code project by Varun\nGupta.\n\nUsing SQL/PL\n------------\n\nSET sql_mode=Oracle;\nDELIMITER //\n\nCREATE AGGREGATE FUNCTION function_name (parameters) RETURN return_type\n declarations\nBEGIN\n LOOP\n FETCH GROUP NEXT ROW; -- fetches next row from table\n -- other instructions\n\nEND LOOP;\nEXCEPTION\n WHEN NO_DATA_FOUND THEN\n RETURN return_val;\nEND //\n\nDELIMITER ;\n\nExamples\n--------\n\nFirst a simplified example:\n\nCREATE TABLE marks(stud_id INT, grade_count INT);\n\nINSERT INTO marks VALUES (1,6), (2,4), (3,7), (4,5), (5,8);\n\nSELECT * FROM marks;\n+---------+-------------+\n| stud_id | grade_count |\n+---------+-------------+\n| 1 | 6 |\n| 2 | 4 |\n| 3 | 7 |\n| 4 | 5 |\n| 5 | 8 |\n+---------+-------------+\n\nDELIMITER //\nCREATE AGGREGATE FUNCTION IF NOT EXISTS aggregate_count(x INT) RETURNS INT\nBEGIN\n DECLARE count_students INT DEFAULT 0;\n DECLARE CONTINUE HANDLER FOR NOT FOUND\n RETURN count_students;\n LOOP\n FETCH GROUP NEXT ROW;\n IF x THEN\n SET count_students = count_students+1;\n END IF;\n END LOOP;\nEND //\nDELIMITER ;\n\nA non-trivial example that cannot easily be rewritten using existing functions:\n\nDELIMITER //\nCREATE AGGREGATE FUNCTION medi_int(x INT) RETURNS DOUBLE\nBEGIN\n DECLARE CONTINUE HANDLER FOR NOT FOUND\n BEGIN\n DECLARE res DOUBLE;\n DECLARE cnt INT DEFAULT (SELECT COUNT(*) FROM tt);\n DECLARE lim INT DEFAULT (cnt-1) DIV 2;\n IF cnt % 2 = 0 THEN\n SET res = (SELECT AVG(a) FROM (SELECT a FROM tt ORDER BY a LIMIT\nlim,2) ttt);\n ELSE\n SET res = (SELECT a FROM tt ORDER BY a LIMIT lim,1);\n END IF;\n DROP TEMPORARY TABLE tt;\n RETURN res;\n END;\n CREATE TEMPORARY TABLE tt (a INT);\n LOOP\n FETCH GROUP NEXT ROW;\n INSERT INTO tt VALUES (x);\n END LOOP;\nEND //\nDELIMITER ;\n\nSQL/PL Example\n--------------\n\nThis uses the same marks table as created above.\n\nSET sql_mode=Oracle;\nDELIMITER //\n\nCREATE AGGREGATE FUNCTION aggregate_count(x INT) RETURN INT AS count_students\nINT DEFAULT 0;\nBEGIN\n LOOP\n FETCH GROUP NEXT ROW;\n IF x THEN\n SET count_students := count_students+1;\n END IF;\n END LOOP;\nEXCEPTION\n WHEN NO_DATA_FOUND THEN\n RETURN count_students;\nEND aggregate_count //\nDELIMITER ;\n\nSELECT aggregate_count(stud_id) FROM marks;\n\nURL: https://mariadb.com/kb/en/stored-aggregate-functions/','','https://mariadb.com/kb/en/stored-aggregate-functions/'), (176,'BIT_AND',16,'Syntax\n------\n\nBIT_AND(expr) [over_clause]\n\nDescription\n-----------\n\nReturns the bitwise AND of all bits in expr. The calculation is performed with\n64-bit (BIGINT) precision. It is an aggregate function, and so can be used\nwith the GROUP BY clause.\n\nIf no rows match, BIT_AND will return a value with all bits set to 1. NULL\nvalues have no effect on the result unless all results are NULL, which is\ntreated as no match.\n\nBIT_AND can be used as a window function with the addition of the over_clause.\n\nExamples\n--------\n\nCREATE TABLE vals (x INT);\n\nINSERT INTO vals VALUES(111),(110),(100);\n\nSELECT BIT_AND(x), BIT_OR(x), BIT_XOR(x) FROM vals;\n+------------+-----------+------------+\n| BIT_AND(x) | BIT_OR(x) | BIT_XOR(x) |\n+------------+-----------+------------+\n| 100 | 111 | 101 |\n+------------+-----------+------------+\n\nAs an aggregate function:\n\nCREATE TABLE vals2 (category VARCHAR(1), x INT);\n\nINSERT INTO vals2 VALUES\n (\'a\',111),(\'a\',110),(\'a\',100),\n (\'b\',\'000\'),(\'b\',001),(\'b\',011);\n\nSELECT category, BIT_AND(x), BIT_OR(x), BIT_XOR(x) \n FROM vals GROUP BY category;\n+----------+------------+-----------+------------+\n| category | BIT_AND(x) | BIT_OR(x) | BIT_XOR(x) |\n+----------+------------+-----------+------------+\n| a | 100 | 111 | 101 |\n| b | 0 | 11 | 10 |\n+----------+------------+-----------+------------+\n\nNo match:\n\nSELECT BIT_AND(NULL);\n+----------------------+\n| BIT_AND(NULL) |\n+----------------------+\n| 18446744073709551615 |\n+----------------------+\n\nURL: https://mariadb.com/kb/en/bit_and/','','https://mariadb.com/kb/en/bit_and/'), (305,'IF',24,'Syntax\n------\n\nIF search_condition THEN statement_list\n [ELSEIF search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND IF;\n\nDescription\n-----------\n\nIF implements a basic conditional construct. If the search_condition evaluates\nto true, the corresponding SQL statement list is executed. If no\nsearch_condition matches, the statement list in the ELSE clause is executed.\nEach statement_list consists of one or more statements.\n\nURL: https://mariadb.com/kb/en/if/','','https://mariadb.com/kb/en/if/'), (309,'LOOP',24,'Syntax\n------\n\n[begin_label:] LOOP\n statement_list\nEND LOOP [end_label]\n\nDescription\n-----------\n\nLOOP implements a simple loop construct, enabling repeated execution of the\nstatement list, which consists of one or more statements, each terminated by a\nsemicolon (i.e., ;) statement delimiter. The statements within the loop are\nrepeated until the loop is exited; usually this is accomplished with a LEAVE\nstatement.\n\nA LOOP statement can be labeled. end_label cannot be given unless begin_label\nalso is present. If both are present, they must be the same.\n\nSee Delimiters in the mariadb client for more on delimiter usage in the client.\n\nURL: https://mariadb.com/kb/en/loop/','','https://mariadb.com/kb/en/loop/'), (312,'RETURN',24,'Syntax\n------\n\nRETURN expr\n\nThe RETURN statement terminates execution of a stored function and returns the\nvalue expr to the function caller. There must be at least one RETURN statement\nin a stored function. If the function has multiple exit points, all exit\npoints must have a RETURN.\n\nThis statement is not used in stored procedures, triggers, or events. LEAVE\ncan be used instead.\n\nThe following example shows that RETURN can return the result of a scalar\nsubquery:\n\nCREATE FUNCTION users_count() RETURNS BOOL\n READS SQL DATA\nBEGIN\n RETURN (SELECT COUNT(DISTINCT User) FROM mysql.user);\nEND;\n\nURL: https://mariadb.com/kb/en/return/','','https://mariadb.com/kb/en/return/'), (315,'WHILE',24,'Syntax\n------\n\n[begin_label:] WHILE search_condition DO\n statement_list\nEND WHILE [end_label]\n\nDescription\n-----------\n\nThe statement list within a WHILE statement is repeated as long as the\nsearch_condition is true. statement_list consists of one or more statements.\nIf the loop must be executed at least once, REPEAT ... LOOP can be used\ninstead.\n\nA WHILE statement can be labeled. end_label cannot be given unless begin_label\nalso is present. If both are present, they must be the same.\n\nExamples\n--------\n\nCREATE PROCEDURE dowhile()\nBEGIN\n DECLARE v1 INT DEFAULT 5;\n\nWHILE v1 > 0 DO\n ...\n SET v1 = v1 - 1;\n END WHILE;\nEND\n\nURL: https://mariadb.com/kb/en/while/','','https://mariadb.com/kb/en/while/'), (177,'BIT_OR',16,'Syntax\n------\n\nBIT_OR(expr) [over_clause]\n\nDescription\n-----------\n\nReturns the bitwise OR of all bits in expr. The calculation is performed with\n64-bit (BIGINT) precision. It is an aggregate function, and so can be used\nwith the GROUP BY clause.\n\nIf no rows match, BIT_OR will return a value with all bits set to 0. NULL\nvalues have no effect on the result unless all results are NULL, which is\ntreated as no match.\n\nBIT_OR can be used as a window function with the addition of the over_clause.\n\nExamples\n--------\n\nCREATE TABLE vals (x INT);\n\nINSERT INTO vals VALUES(111),(110),(100);\n\nSELECT BIT_AND(x), BIT_OR(x), BIT_XOR(x) FROM vals;\n+------------+-----------+------------+\n| BIT_AND(x) | BIT_OR(x) | BIT_XOR(x) |\n+------------+-----------+------------+\n| 100 | 111 | 101 |\n+------------+-----------+------------+\n\nAs an aggregate function:\n\nCREATE TABLE vals2 (category VARCHAR(1), x INT);\n\nINSERT INTO vals2 VALUES\n (\'a\',111),(\'a\',110),(\'a\',100),\n (\'b\',\'000\'),(\'b\',001),(\'b\',011);\n\nSELECT category, BIT_AND(x), BIT_OR(x), BIT_XOR(x) \n FROM vals GROUP BY category;\n+----------+------------+-----------+------------+\n| category | BIT_AND(x) | BIT_OR(x) | BIT_XOR(x) |\n+----------+------------+-----------+------------+\n| a | 100 | 111 | 101 |\n| b | 0 | 11 | 10 |\n+----------+------------+-----------+------------+\n\nNo match:\n\nSELECT BIT_OR(NULL);\n+--------------+\n| BIT_OR(NULL) |\n+--------------+\n| 0 |\n+--------------+\n\nURL: https://mariadb.com/kb/en/bit_or/','','https://mariadb.com/kb/en/bit_or/'), (178,'BIT_XOR',16,'Syntax\n------\n\nBIT_XOR(expr) [over_clause]\n\nDescription\n-----------\n\nReturns the bitwise XOR of all bits in expr. The calculation is performed with\n64-bit (BIGINT) precision. It is an aggregate function, and so can be used\nwith the GROUP BY clause.\n\nIf no rows match, BIT_XOR will return a value with all bits set to 0. NULL\nvalues have no effect on the result unless all results are NULL, which is\ntreated as no match.\n\nBIT_XOR can be used as a window function with the addition of the over_clause.\n\nExamples\n--------\n\nCREATE TABLE vals (x INT);\n\nINSERT INTO vals VALUES(111),(110),(100);\n\nSELECT BIT_AND(x), BIT_OR(x), BIT_XOR(x) FROM vals;\n+------------+-----------+------------+\n| BIT_AND(x) | BIT_OR(x) | BIT_XOR(x) |\n+------------+-----------+------------+\n| 100 | 111 | 101 |\n+------------+-----------+------------+\n\nAs an aggregate function:\n\nCREATE TABLE vals2 (category VARCHAR(1), x INT);\n\nINSERT INTO vals2 VALUES\n (\'a\',111),(\'a\',110),(\'a\',100),\n (\'b\',\'000\'),(\'b\',001),(\'b\',011);\n\nSELECT category, BIT_AND(x), BIT_OR(x), BIT_XOR(x) \n FROM vals GROUP BY category;\n+----------+------------+-----------+------------+\n| category | BIT_AND(x) | BIT_OR(x) | BIT_XOR(x) |\n+----------+------------+-----------+------------+\n| a | 100 | 111 | 101 |\n| b | 0 | 11 | 10 |\n+----------+------------+-----------+------------+\n\nNo match:\n\nSELECT BIT_XOR(NULL);\n+---------------+\n| BIT_XOR(NULL) |\n+---------------+\n| 0 |\n+---------------+\n\nURL: https://mariadb.com/kb/en/bit_xor/','','https://mariadb.com/kb/en/bit_xor/'), (179,'COUNT',16,'Syntax\n------\n\nCOUNT(expr)\n\nDescription\n-----------\n\nReturns a count of the number of non-NULL values of expr in the rows retrieved\nby a SELECT statement. The result is a BIGINT value. It is an aggregate\nfunction, and so can be used with the GROUP BY clause.\n\nCOUNT(*) counts the total number of rows in a table.\n\nCOUNT() returns 0 if there were no matching rows.\n\nCOUNT() can be used as a window function.\n\nExamples\n--------\n\nCREATE TABLE student (name CHAR(10), test CHAR(10), score TINYINT);\n\nINSERT INTO student VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87), (\'Tatiana\', \'Tuning\', 83);\n\nSELECT COUNT(*) FROM student;\n+----------+\n| COUNT(*) |\n+----------+\n| 8 |\n+----------+\n\nCOUNT(DISTINCT) example:\n\nSELECT COUNT(DISTINCT (name)) FROM student;\n+------------------------+\n| COUNT(DISTINCT (name)) |\n+------------------------+\n| 4 |\n+------------------------+\n\nAs a window function\n\nCREATE OR REPLACE TABLE student_test (name CHAR(10), test CHAR(10), score\nTINYINT);\n\nINSERT INTO student_test VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87);\n\nSELECT name, test, score, COUNT(score) OVER (PARTITION BY name) \n AS tests_written FROM student_test;\n+---------+--------+-------+---------------+\n| name | test | score | tests_written |\n+---------+--------+-------+---------------+\n| Chun | SQL | 75 | 2 |\n| Chun | Tuning | 73 | 2 |\n| Esben | SQL | 43 | 2 |\n| Esben | Tuning | 31 | 2 |\n| Kaolin | SQL | 56 | 2 |\n| Kaolin | Tuning | 88 | 2 |\n| Tatiana | SQL | 87 | 1 |\n+---------+--------+-------+---------------+\n\nURL: https://mariadb.com/kb/en/count/','','https://mariadb.com/kb/en/count/'), (318,'OPEN',24,'Syntax\n------\n\n<= MariaDB 10.2\n\nOPEN cursor_name\n\nFrom MariaDB 10.3\n\nOPEN cursor_name [expression[,...]];\n\nDescription\n-----------\n\nThis statement opens a cursor which was previously declared with DECLARE\nCURSOR.\n\nThe query associated to the DECLARE CURSOR is executed when OPEN is executed.\nIt is important to remember this if the query produces an error, or calls\nfunctions which have side effects.\n\nThis is necessary in order to FETCH rows from a cursor.\n\nSee Cursor Overview for an example.\n\nURL: https://mariadb.com/kb/en/open/','','https://mariadb.com/kb/en/open/'), (319,'FETCH',24,'Syntax\n------\n\nFETCH cursor_name INTO var_name [, var_name] ...\n\nDescription\n-----------\n\nThis statement fetches the next row (if a row exists) using the specified open\ncursor, and advances the cursor pointer.\n\nvar_name can be a local variable, but not a user-defined variable.\n\nIf no more rows are available, a No Data condition occurs with SQLSTATE value\n02000. To detect this condition, you can set up a handler for it (or for a NOT\nFOUND condition).\n\nSee Cursor Overview for an example.\n\nURL: https://mariadb.com/kb/en/fetch/','','https://mariadb.com/kb/en/fetch/'), (320,'CLOSE',24,'Syntax\n------\n\nCLOSE cursor_name\n\nDescription\n-----------\n\nThis statement closes a previously opened cursor. The cursor must have been\npreviously opened or else an error occurs.\n\nIf not closed explicitly, a cursor is closed at the end of the compound\nstatement in which it was declared.\n\nSee Cursor Overview for an example.\n\nURL: https://mariadb.com/kb/en/close/','','https://mariadb.com/kb/en/close/'), (321,'BUFFER',25,'A synonym for ST_BUFFER.\n\nURL: https://mariadb.com/kb/en/buffer/','','https://mariadb.com/kb/en/buffer/'), (322,'CONVEXHULL',25,'A synonym for ST_CONVEXHULL.\n\nURL: https://mariadb.com/kb/en/convexhull/','','https://mariadb.com/kb/en/convexhull/'), (323,'GEOMETRYCOLLECTION',25,'Syntax\n------\n\nGeometryCollection(g1,g2,...)\n\nDescription\n-----------\n\nConstructs a WKB GeometryCollection. If any argument is not a well-formed WKB\nrepresentation of a geometry, the return value is NULL.\n\nExamples\n--------\n\nCREATE TABLE gis_geometrycollection (g GEOMETRYCOLLECTION);\nSHOW FIELDS FROM gis_geometrycollection;\nINSERT INTO gis_geometrycollection VALUES\n (GeomCollFromText(\'GEOMETRYCOLLECTION(POINT(0 0), LINESTRING(0 0,10\n10))\')),\n (GeometryFromWKB(AsWKB(GeometryCollection(Point(44, 6),\nLineString(Point(3, 6), Point(7, 9)))))),\n (GeomFromText(\'GeometryCollection()\')),\n (GeomFromText(\'GeometryCollection EMPTY\'));\n\nURL: https://mariadb.com/kb/en/geometrycollection/','','https://mariadb.com/kb/en/geometrycollection/'), (180,'COUNT DISTINCT',16,'Syntax\n------\n\nCOUNT(DISTINCT expr,[expr...])\n\nDescription\n-----------\n\nReturns a count of the number of different non-NULL values.\n\nCOUNT(DISTINCT) returns 0 if there were no matching rows.\n\nAlthough, from MariaDB 10.2.0, COUNT can be used as a window function, COUNT\nDISTINCT cannot be.\n\nExamples\n--------\n\nCREATE TABLE student (name CHAR(10), test CHAR(10), score TINYINT);\n\nINSERT INTO student VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87), (\'Tatiana\', \'Tuning\', 83);\n\nSELECT COUNT(*) FROM student;\n+----------+\n| COUNT(*) |\n+----------+\n| 8 |\n+----------+\n\nSELECT COUNT(DISTINCT (name)) FROM student;\n+------------------------+\n| COUNT(DISTINCT (name)) |\n+------------------------+\n| 4 |\n+------------------------+\n\nURL: https://mariadb.com/kb/en/count-distinct/','','https://mariadb.com/kb/en/count-distinct/'), (181,'GROUP_CONCAT',16,'Syntax\n------\n\nGROUP_CONCAT(expr)\n\nDescription\n-----------\n\nThis function returns a string result with the concatenated non-NULL values\nfrom a group. It returns NULL if there are no non-NULL values.\n\nThe maximum returned length in bytes is determined by the group_concat_max_len\nserver system variable, which defaults to 1M (>= MariaDB 10.2.4) or 1K (<=\nMariaDB 10.2.3).\n\nIf group_concat_max_len <= 512, the return type is VARBINARY or VARCHAR;\notherwise, the return type is BLOB or TEXT. The choice between binary or\nnon-binary types depends from the input.\n\nThe full syntax is as follows:\n\nGROUP_CONCAT([DISTINCT] expr [,expr ...]\n [ORDER BY {unsigned_integer | col_name | expr}\n [ASC | DESC] [,col_name ...]]\n [SEPARATOR str_val]\n [LIMIT {[offset,] row_count | row_count OFFSET offset}])\n\nDISTINCT eliminates duplicate values from the output string.\n\nORDER BY determines the order of returned values.\n\nSEPARATOR specifies a separator between the values. The default separator is a\ncomma (,). It is possible to avoid using a separator by specifying an empty\nstring.\n\nLIMIT\n-----\n\nMariaDB starting with 10.3.3\n----------------------------\nUntil MariaDB 10.3.2, it was not possible to use the LIMIT clause with\nGROUP_CONCAT. This restriction was lifted in MariaDB 10.3.3.\n\nExamples\n--------\n\nSELECT student_name,\n GROUP_CONCAT(test_score)\n FROM student\n GROUP BY student_name;\n\nGet a readable list of MariaDB users from the mysql.user table:\n\nSELECT GROUP_CONCAT(DISTINCT User ORDER BY User SEPARATOR \'\\n\')\n FROM mysql.user;\n\nIn the former example, DISTINCT is used because the same user may occur more\nthan once. The new line (\\n) used as a SEPARATOR makes the results easier to\nread.\n\nGet a readable list of hosts from which each user can connect:\n\nSELECT User, GROUP_CONCAT(Host ORDER BY Host SEPARATOR \', \') \n FROM mysql.user GROUP BY User ORDER BY User;\n\nThe former example shows the difference between the GROUP_CONCAT\'s ORDER BY\n(which sorts the concatenated hosts), and the SELECT\'s ORDER BY (which sorts\nthe rows).\n\nFrom MariaDB 10.3.3, LIMIT can be used with GROUP_CONCAT, so, for example,\ngiven the following table:\n\nCREATE TABLE d (dd DATE, cc INT);\n\nINSERT INTO d VALUES (\'2017-01-01\',1);\nINSERT INTO d VALUES (\'2017-01-02\',2);\nINSERT INTO d VALUES (\'2017-01-04\',3);\n\nthe following query:\n\nSELECT SUBSTRING_INDEX(GROUP_CONCAT(CONCAT_WS(\":\",dd,cc) ORDER BY cc\nDESC),\",\",1) FROM d;\n+----------------------------------------------------------------------------+\n| SUBSTRING_INDEX(GROUP_CONCAT(CONCAT_WS(\":\",dd,cc) ORDER BY cc DESC),\",\",1) |\n+----------------------------------------------------------------------------+\n| 2017-01-04:3 |\n+----------------------------------------------------------------------------+\n\ncan be more simply rewritten as:\n\nSELECT GROUP_CONCAT(CONCAT_WS(\":\",dd,cc) ORDER BY cc DESC LIMIT 1) FROM d;\n+-------------------------------------------------------------+\n| GROUP_CONCAT(CONCAT_WS(\":\",dd,cc) ORDER BY cc DESC LIMIT 1) |\n+-------------------------------------------------------------+\n| 2017-01-04:3 |\n+-------------------------------------------------------------+\n\nURL: https://mariadb.com/kb/en/group_concat/','','https://mariadb.com/kb/en/group_concat/'), (182,'MAX',16,'Syntax\n------\n\nMAX([DISTINCT] expr)\n\nDescription\n-----------\n\nReturns the largest, or maximum, value of expr. MAX() can also take a string\nargument in which case it returns the maximum string value. The DISTINCT\nkeyword can be used to find the maximum of the distinct values of expr,\nhowever, this produces the same result as omitting DISTINCT.\n\nNote that SET and ENUM fields are currently compared by their string value\nrather than their relative position in the set, so MAX() may produce a\ndifferent highest result than ORDER BY DESC.\n\nIt is an aggregate function, and so can be used with the GROUP BY clause.\n\nMAX() can be used as a window function.\n\nMAX() returns NULL if there were no matching rows.\n\nExamples\n--------\n\nCREATE TABLE student (name CHAR(10), test CHAR(10), score TINYINT);\n\nINSERT INTO student VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87), (\'Tatiana\', \'Tuning\', 83);\n\nSELECT name, MAX(score) FROM student GROUP BY name;\n+---------+------------+\n| name | MAX(score) |\n+---------+------------+\n| Chun | 75 |\n| Esben | 43 |\n| Kaolin | 88 |\n| Tatiana | 87 |\n+---------+------------+\n\nMAX string:\n\nSELECT MAX(name) FROM student;\n+-----------+\n| MAX(name) |\n+-----------+\n| Tatiana |\n+-----------+\n\nBe careful to avoid this common mistake, not grouping correctly and returning\nmismatched data:\n\nSELECT name,test,MAX(SCORE) FROM student;\n+------+------+------------+\n| name | test | MAX(SCORE) |\n+------+------+------------+\n| Chun | SQL | 88 |\n+------+------+------------+\n\nDifference between ORDER BY DESC and MAX():\n\nCREATE TABLE student2(name CHAR(10),grade ENUM(\'b\',\'c\',\'a\'));\n\nINSERT INTO student2 VALUES(\'Chun\',\'b\'),(\'Esben\',\'c\'),(\'Kaolin\',\'a\');\n\nSELECT MAX(grade) FROM student2;\n+------------+\n| MAX(grade) |\n+------------+\n| c |\n+------------+\n\nSELECT grade FROM student2 ORDER BY grade DESC LIMIT 1;\n+-------+\n| grade |\n+-------+\n| a |\n+-------+\n\nAs a window function:\n\nCREATE OR REPLACE TABLE student_test (name CHAR(10), test CHAR(10), score\nTINYINT);\nINSERT INTO student_test VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87);\n\nSELECT name, test, score, MAX(score) \n OVER (PARTITION BY name) AS highest_score FROM student_test;\n+---------+--------+-------+---------------+\n| name | test | score | highest_score |\n+---------+--------+-------+---------------+\n| Chun | SQL | 75 | 75 |\n| Chun | Tuning | 73 | 75 |\n| Esben | SQL | 43 | 43 |\n| Esben | Tuning | 31 | 43 |\n| Kaolin | SQL | 56 | 88 |\n| Kaolin | Tuning | 88 | 88 |\n| Tatiana | SQL | 87 | 87 |\n+---------+--------+-------+---------------+\n\nURL: https://mariadb.com/kb/en/max/','','https://mariadb.com/kb/en/max/'), (183,'MIN',16,'Syntax\n------\n\nMIN([DISTINCT] expr)\n\nDescription\n-----------\n\nReturns the minimum value of expr. MIN() may take a string argument, in which\ncase it returns the minimum string value. The DISTINCT keyword can be used to\nfind the minimum of the distinct values of expr, however, this produces the\nsame result as omitting DISTINCT.\n\nNote that SET and ENUM fields are currently compared by their string value\nrather than their relative position in the set, so MIN() may produce a\ndifferent lowest result than ORDER BY ASC.\n\nIt is an aggregate function, and so can be used with the GROUP BY clause.\n\nMIN() can be used as a window function.\n\nMIN() returns NULL if there were no matching rows.\n\nExamples\n--------\n\nCREATE TABLE student (name CHAR(10), test CHAR(10), score TINYINT);\n\nINSERT INTO student VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87), (\'Tatiana\', \'Tuning\', 83);\n\nSELECT name, MIN(score) FROM student GROUP BY name;\n+---------+------------+\n| name | MIN(score) |\n+---------+------------+\n| Chun | 73 |\n| Esben | 31 |\n| Kaolin | 56 |\n| Tatiana | 83 |\n+---------+------------+\n\nMIN() with a string:\n\nSELECT MIN(name) FROM student;\n+-----------+\n| MIN(name) |\n+-----------+\n| Chun |\n+-----------+\n\nBe careful to avoid this common mistake, not grouping correctly and returning\nmismatched data:\n\nSELECT name,test,MIN(score) FROM student;\n+------+------+------------+\n| name | test | MIN(score) |\n+------+------+------------+\n| Chun | SQL | 31 |\n+------+------+------------+\n\nDifference between ORDER BY ASC and MIN():\n\nCREATE TABLE student2(name CHAR(10),grade ENUM(\'b\',\'c\',\'a\'));\n\nINSERT INTO student2 VALUES(\'Chun\',\'b\'),(\'Esben\',\'c\'),(\'Kaolin\',\'a\');\n\nSELECT MIN(grade) FROM student2;\n+------------+\n| MIN(grade) |\n+------------+\n| a |\n+------------+\n\nSELECT grade FROM student2 ORDER BY grade ASC LIMIT 1;\n+-------+\n| grade |\n+-------+\n| b |\n+-------+\n\nAs a window function:\n\nCREATE OR REPLACE TABLE student_test (name CHAR(10), test CHAR(10), score\nTINYINT);\nINSERT INTO student_test VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87);\n\nSELECT name, test, score, MIN(score) \n OVER (PARTITION BY name) AS lowest_score FROM student_test;\n+---------+--------+-------+--------------+\n| name | test | score | lowest_score |\n+---------+--------+-------+--------------+\n| Chun | SQL | 75 | 73 |\n| Chun | Tuning | 73 | 73 |\n| Esben | SQL | 43 | 31 |\n| Esben | Tuning | 31 | 31 |\n| Kaolin | SQL | 56 | 56 |\n| Kaolin | Tuning | 88 | 56 |\n| Tatiana | SQL | 87 | 87 |\n+---------+--------+-------+--------------+\n\nURL: https://mariadb.com/kb/en/min/','','https://mariadb.com/kb/en/min/'), (184,'STD',16,'Syntax\n------\n\nSTD(expr)\n\nDescription\n-----------\n\nReturns the population standard deviation of expr. This is an extension to\nstandard SQL. The standard SQL function STDDEV_POP() can be used instead.\n\nIt is an aggregate function, and so can be used with the GROUP BY clause.\n\nSTD() can be used as a window function.\n\nThis function returns NULL if there were no matching rows.\n\nExamples\n--------\n\nAs an aggregate function:\n\nCREATE OR REPLACE TABLE stats (category VARCHAR(2), x INT);\n\nINSERT INTO stats VALUES \n (\'a\',1),(\'a\',2),(\'a\',3),\n (\'b\',11),(\'b\',12),(\'b\',20),(\'b\',30),(\'b\',60);\n\nSELECT category, STDDEV_POP(x), STDDEV_SAMP(x), VAR_POP(x) \n FROM stats GROUP BY category;\n+----------+---------------+----------------+------------+\n| category | STDDEV_POP(x) | STDDEV_SAMP(x) | VAR_POP(x) |\n+----------+---------------+----------------+------------+\n| a | 0.8165 | 1.0000 | 0.6667 |\n| b | 18.0400 | 20.1693 | 325.4400 |\n+----------+---------------+----------------+------------+\n\nAs a window function:\n\nCREATE OR REPLACE TABLE student_test (name CHAR(10), test CHAR(10), score\nTINYINT);\n\nINSERT INTO student_test VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87);\n\nSELECT name, test, score, STDDEV_POP(score) \n OVER (PARTITION BY test) AS stddev_results FROM student_test;\n+---------+--------+-------+----------------+\n| name | test | score | stddev_results |\n+---------+--------+-------+----------------+\n| Chun | SQL | 75 | 16.9466 |\n| Chun | Tuning | 73 | 24.1247 |\n| Esben | SQL | 43 | 16.9466 |\n| Esben | Tuning | 31 | 24.1247 |\n| Kaolin | SQL | 56 | 16.9466 |\n| Kaolin | Tuning | 88 | 24.1247 |\n| Tatiana | SQL | 87 | 16.9466 |\n+---------+--------+-------+----------------+\n\nURL: https://mariadb.com/kb/en/std/','','https://mariadb.com/kb/en/std/'), (325,'MULTILINESTRING',25,'Syntax\n------\n\nMultiLineString(ls1,ls2,...)\n\nDescription\n-----------\n\nConstructs a WKB MultiLineString value using WKB LineString arguments. If any\nargument is not a WKB LineString, the return value is NULL.\n\nExample\n-------\n\nCREATE TABLE gis_multi_line (g MULTILINESTRING);\nINSERT INTO gis_multi_line VALUES\n (MultiLineStringFromText(\'MULTILINESTRING((10 48,10 21,10 0),(16 0,16 23,16\n48))\')),\n (MLineFromText(\'MULTILINESTRING((10 48,10 21,10 0))\')),\n (MLineFromWKB(AsWKB(MultiLineString(LineString(Point(1, 2), \n Point(3, 5)), LineString(Point(2, 5),Point(5, 8),Point(21, 7))))));\n\nURL: https://mariadb.com/kb/en/multilinestring/','','https://mariadb.com/kb/en/multilinestring/'), (326,'MULTIPOINT',25,'Syntax\n------\n\nMultiPoint(pt1,pt2,...)\n\nDescription\n-----------\n\nConstructs a WKB MultiPoint value using WKB Point arguments. If any argument\nis not a WKB Point, the return value is NULL.\n\nExamples\n--------\n\nSET @g = ST_GEOMFROMTEXT(\'MultiPoint( 1 1, 2 2, 5 3, 7 2, 9 3, 8 4, 6 6, 6 9,\n4 9, 1 5 )\');\n\nCREATE TABLE gis_multi_point (g MULTIPOINT);\nINSERT INTO gis_multi_point VALUES\n (MultiPointFromText(\'MULTIPOINT(0 0,10 10,10 20,20 20)\')),\n (MPointFromText(\'MULTIPOINT(1 1,11 11,11 21,21 21)\')),\n (MPointFromWKB(AsWKB(MultiPoint(Point(3, 6), Point(4, 10)))));\n\nURL: https://mariadb.com/kb/en/multipoint/','','https://mariadb.com/kb/en/multipoint/'), (328,'POINT',25,'Syntax\n------\n\nPoint(x,y)\n\nDescription\n-----------\n\nConstructs a WKB Point using the given coordinates.\n\nExamples\n--------\n\nSET @g = ST_GEOMFROMTEXT(\'Point(1 1)\');\n\nCREATE TABLE gis_point (g POINT);\nINSERT INTO gis_point VALUES\n (PointFromText(\'POINT(10 10)\')),\n (PointFromText(\'POINT(20 10)\')),\n (PointFromText(\'POINT(20 20)\')),\n (PointFromWKB(AsWKB(PointFromText(\'POINT(10 20)\'))));\n\nURL: https://mariadb.com/kb/en/point/','','https://mariadb.com/kb/en/point/'), (329,'PointOnSurface',25,'A synonym for ST_PointOnSurface.\n\nURL: https://mariadb.com/kb/en/pointonsurface/','','https://mariadb.com/kb/en/pointonsurface/'), (333,'ST_INTERSECTION',25,'Syntax\n------\n\nST_INTERSECTION(g1,g2)\n\nDescription\n-----------\n\nReturns a geometry that is the intersection, or shared portion, of geometry g1\nand geometry g2.\n\nExamples\n--------\n\nSET @g1 = ST_GEOMFROMTEXT(\'POINT(2 1)\');\n\nSET @g2 = ST_GEOMFROMTEXT(\'LINESTRING(2 1, 0 2)\');\n\nSELECT ASTEXT(ST_INTERSECTION(@g1,@g2));\n+----------------------------------+\n| ASTEXT(ST_INTERSECTION(@g1,@g2)) |\n+----------------------------------+\n| POINT(2 1) |\n+----------------------------------+\n\nURL: https://mariadb.com/kb/en/st_intersection/','','https://mariadb.com/kb/en/st_intersection/'), (185,'STDDEV',16,'Syntax\n------\n\nSTDDEV(expr)\n\nDescription\n-----------\n\nReturns the population standard deviation of expr. This function is provided\nfor compatibility with Oracle. The standard SQL function STDDEV_POP() can be\nused instead.\n\nIt is an aggregate function, and so can be used with the GROUP BY clause.\n\nSTDDEV() can be used as a window function.\n\nThis function returns NULL if there were no matching rows.\n\nExamples\n--------\n\nAs an aggregate function:\n\nCREATE OR REPLACE TABLE stats (category VARCHAR(2), x INT);\n\nINSERT INTO stats VALUES \n (\'a\',1),(\'a\',2),(\'a\',3),\n (\'b\',11),(\'b\',12),(\'b\',20),(\'b\',30),(\'b\',60);\n\nSELECT category, STDDEV_POP(x), STDDEV_SAMP(x), VAR_POP(x) \n FROM stats GROUP BY category;\n+----------+---------------+----------------+------------+\n| category | STDDEV_POP(x) | STDDEV_SAMP(x) | VAR_POP(x) |\n+----------+---------------+----------------+------------+\n| a | 0.8165 | 1.0000 | 0.6667 |\n| b | 18.0400 | 20.1693 | 325.4400 |\n+----------+---------------+----------------+------------+\n\nAs a window function:\n\nCREATE OR REPLACE TABLE student_test (name CHAR(10), test CHAR(10), score\nTINYINT);\n\nINSERT INTO student_test VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87);\n\nSELECT name, test, score, STDDEV_POP(score) \n OVER (PARTITION BY test) AS stddev_results FROM student_test;\n+---------+--------+-------+----------------+\n| name | test | score | stddev_results |\n+---------+--------+-------+----------------+\n| Chun | SQL | 75 | 16.9466 |\n| Chun | Tuning | 73 | 24.1247 |\n| Esben | SQL | 43 | 16.9466 |\n| Esben | Tuning | 31 | 24.1247 |\n| Kaolin | SQL | 56 | 16.9466 |\n| Kaolin | Tuning | 88 | 24.1247 |\n| Tatiana | SQL | 87 | 16.9466 |\n+---------+--------+-------+----------------+\n\nURL: https://mariadb.com/kb/en/stddev/','','https://mariadb.com/kb/en/stddev/'), (186,'STDDEV_POP',16,'Syntax\n------\n\nSTDDEV_POP(expr)\n\nDescription\n-----------\n\nReturns the population standard deviation of expr (the square root of\nVAR_POP()). You can also use STD() or STDDEV(), which are equivalent but not\nstandard SQL.\n\nIt is an aggregate function, and so can be used with the GROUP BY clause.\n\nSTDDEV_POP() can be used as a window function.\n\nSTDDEV_POP() returns NULL if there were no matching rows.\n\nExamples\n--------\n\nAs an aggregate function:\n\nCREATE OR REPLACE TABLE stats (category VARCHAR(2), x INT);\n\nINSERT INTO stats VALUES \n (\'a\',1),(\'a\',2),(\'a\',3),\n (\'b\',11),(\'b\',12),(\'b\',20),(\'b\',30),(\'b\',60);\n\nSELECT category, STDDEV_POP(x), STDDEV_SAMP(x), VAR_POP(x) \n FROM stats GROUP BY category;\n+----------+---------------+----------------+------------+\n| category | STDDEV_POP(x) | STDDEV_SAMP(x) | VAR_POP(x) |\n+----------+---------------+----------------+------------+\n| a | 0.8165 | 1.0000 | 0.6667 |\n| b | 18.0400 | 20.1693 | 325.4400 |\n+----------+---------------+----------------+------------+\n\nAs a window function:\n\nCREATE OR REPLACE TABLE student_test (name CHAR(10), test CHAR(10), score\nTINYINT);\n\nINSERT INTO student_test VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87);\n\nSELECT name, test, score, STDDEV_POP(score) \n OVER (PARTITION BY test) AS stddev_results FROM student_test;\n+---------+--------+-------+----------------+\n| name | test | score | stddev_results |\n+---------+--------+-------+----------------+\n| Chun | SQL | 75 | 16.9466 |\n| Chun | Tuning | 73 | 24.1247 |\n| Esben | SQL | 43 | 16.9466 |\n| Esben | Tuning | 31 | 24.1247 |\n| Kaolin | SQL | 56 | 16.9466 |\n| Kaolin | Tuning | 88 | 24.1247 |\n| Tatiana | SQL | 87 | 16.9466 |\n+---------+--------+-------+----------------+\n\nURL: https://mariadb.com/kb/en/stddev_pop/','','https://mariadb.com/kb/en/stddev_pop/'), (188,'SUM',16,'Syntax\n------\n\nSUM([DISTINCT] expr)\n\nDescription\n-----------\n\nReturns the sum of expr. If the return set has no rows, SUM() returns NULL.\nThe DISTINCT keyword can be used to sum only the distinct values of expr.\n\nSUM() can be used as a window function, although not with the DISTINCT\nspecifier.\n\nExamples\n--------\n\nCREATE TABLE sales (sales_value INT);\nINSERT INTO sales VALUES(10),(20),(20),(40);\n\nSELECT SUM(sales_value) FROM sales;\n+------------------+\n| SUM(sales_value) |\n+------------------+\n| 90 |\n+------------------+\n\nSELECT SUM(DISTINCT(sales_value)) FROM sales;\n+----------------------------+\n| SUM(DISTINCT(sales_value)) |\n+----------------------------+\n| 70 |\n+----------------------------+\n\nCommonly, SUM is used with a GROUP BY clause:\n\nCREATE TABLE sales (name CHAR(10), month CHAR(10), units INT);\n\nINSERT INTO sales VALUES \n (\'Chun\', \'Jan\', 75), (\'Chun\', \'Feb\', 73),\n (\'Esben\', \'Jan\', 43), (\'Esben\', \'Feb\', 31),\n (\'Kaolin\', \'Jan\', 56), (\'Kaolin\', \'Feb\', 88),\n (\'Tatiana\', \'Jan\', 87), (\'Tatiana\', \'Feb\', 83);\n\nSELECT name, SUM(units) FROM sales GROUP BY name;\n+---------+------------+\n| name | SUM(units) |\n+---------+------------+\n| Chun | 148 |\n| Esben | 74 |\n| Kaolin | 144 |\n| Tatiana | 170 |\n+---------+------------+\n\nThe GROUP BY clause is required when using an aggregate function along with\nregular column data, otherwise the result will be a mismatch, as in the\nfollowing common type of mistake:\n\nSELECT name,SUM(units) FROM sales\n;+------+------------+\n| name | SUM(units) |\n+------+------------+\n| Chun | 536 |\n+------+------------+\n\nAs a window function:\n\nCREATE OR REPLACE TABLE student_test (name CHAR(10), test CHAR(10), score\nTINYINT);\nINSERT INTO student_test VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87);\n\nSELECT name, test, score, SUM(score) OVER (PARTITION BY name) AS total_score\nFROM student_test;\n+---------+--------+-------+-------------+\n| name | test | score | total_score |\n+---------+--------+-------+-------------+\n| Chun | SQL | 75 | 148 |\n| Chun | Tuning | 73 | 148 |\n| Esben | SQL | 43 | 74 |\n| Esben | Tuning | 31 | 74 |\n| Kaolin | SQL | 56 | 144 |\n| Kaolin | Tuning | 88 | 144 |\n| Tatiana | SQL | 87 | 87 |\n+---------+--------+-------+-------------+\n\nURL: https://mariadb.com/kb/en/sum/','','https://mariadb.com/kb/en/sum/'), (334,'ST_POINTONSURFACE',25,'MariaDB starting with 10.1.2\n----------------------------\nST_POINTONSURFACE() was introduced in MariaDB 10.1.2\n\nSyntax\n------\n\nST_PointOnSurface(g)\nPointOnSurface(g)\n\nDescription\n-----------\n\nGiven a geometry, returns a POINT guaranteed to intersect a surface. However,\nsee MDEV-7514.\n\nST_PointOnSurface() and PointOnSurface() are synonyms.\n\nURL: https://mariadb.com/kb/en/st_pointonsurface/','','https://mariadb.com/kb/en/st_pointonsurface/'), (345,'FLUSH',26,'Syntax\n------\n\nFLUSH [NO_WRITE_TO_BINLOG | LOCAL]\n flush_option [, flush_option] ...\n\nor when flushing tables:\n\nFLUSH [NO_WRITE_TO_BINLOG | LOCAL] TABLES [table_list] [table_flush_option]\n\nwhere table_list is a list of tables separated by , (comma).\n\nDescription\n-----------\n\nThe FLUSH statement clears or reloads various internal caches used by MariaDB.\nTo execute FLUSH, you must have the RELOAD privilege. See GRANT.\n\nThe RESET statement is similar to FLUSH. See RESET.\n\nYou cannot issue a FLUSH statement from within a stored function or a trigger.\nDoing so within a stored procedure is permitted, as long as it is not called\nby a stored function or trigger. See Stored Routine Limitations, Stored\nFunction Limitations and Trigger Limitations.\n\nIf a listed table is a view, an error like the following will be produced:\n\nERROR 1347 (HY000): \'test.v\' is not BASE TABLE\n\nBy default, FLUSH statements are written to the binary log and will be\nreplicated. The NO_WRITE_TO_BINLOG keyword (LOCAL is an alias) will ensure the\nstatement is not written to the binary log.\n\nThe different flush options are:\n\n+---------------------------+------------------------------------------------+\n| Option | Description |\n+---------------------------+------------------------------------------------+\n| CHANGED_PAGE_BITMAPS | XtraDB only. Internal command used for backup |\n| | purposes. See the Information Schema |\n| | CHANGED_PAGE_BITMAPS Table. |\n+---------------------------+------------------------------------------------+\n| CLIENT_STATISTICS | Reset client statistics (see SHOW |\n| | CLIENT_STATISTICS). |\n+---------------------------+------------------------------------------------+\n| DES_KEY_FILE | Reloads the DES key file (Specified with the |\n| | --des-key-file startup option). |\n+---------------------------+------------------------------------------------+\n| HOSTS | Flush the hostname cache (used for converting |\n| | ip to host names and for unblocking blocked |\n| | hosts. See max_connect_errors and |\n| | performance_schema.host_cache |\n+---------------------------+------------------------------------------------+\n| INDEX_STATISTICS | Reset index statistics (see SHOW |\n| | INDEX_STATISTICS). |\n+---------------------------+------------------------------------------------+\n| [ERROR | ENGINE | | Close and reopen the specified log type, or |\n| GENERAL | SLOW | BINARY | all log types if none are specified. FLUSH |\n| | RELAY] LOGS | RELAY LOGS [connection-name] can be used to |\n| | flush the relay logs for a specific |\n| | connection. Only one connection can be |\n| | specified per FLUSH command. See Multi-source |\n| | replication. FLUSH ENGINE LOGS will delete |\n| | all unneeded Aria redo logs. FLUSH BINARY |\n| | LOGS DELETE_DOMAIN_ID=(list-of-domains) can |\n| | be used to discard obsolete GTID domains from |\n| | the server\'s binary log state. In order for |\n| | this to be successful, no event group from |\n| | the listed GTID domains can be present in |\n| | existing binary log files. If some still |\n| | exist, then they must be purged prior to |\n| | executing this command. If the command |\n| | completes successfully, then it also rotates |\n| | the binary log. |\n+---------------------------+------------------------------------------------+\n| MASTER | Deprecated option, use RESET MASTER instead. |\n+---------------------------+------------------------------------------------+\n| PRIVILEGES | Reload all privileges from the privilege |\n| | tables in the mysql database. If the server |\n| | is started with --skip-grant-table option, |\n| | this will activate the privilege tables again. |\n+---------------------------+------------------------------------------------+\n| QUERY CACHE | Defragment the query cache to better utilize |\n| | its memory. If you want to reset the query |\n| | cache, you can do it with RESET QUERY CACHE. |\n+---------------------------+------------------------------------------------+\n| QUERY_RESPONSE_TIME | See the QUERY_RESPONSE_TIME plugin. |\n+---------------------------+------------------------------------------------+\n| SLAVE | Deprecated option, use RESET REPLICA or RESET |\n| | SLAVE instead. |\n+---------------------------+------------------------------------------------+\n| SSL | Used to dynamically reinitialize the server\'s |\n| | TLS context by reloading the files defined by |\n| | several TLS system variables. See FLUSH SSL |\n| | for more information. |\n+---------------------------+------------------------------------------------+\n| STATUS | Resets all server status variables that can |\n| | be reset to 0. Not all global status |\n| | variables support this, so not all global |\n| | values are reset. See FLUSH STATUS for more |\n| | information. |\n+---------------------------+------------------------------------------------+\n| TABLE | Close tables given as options or all open |\n| | tables if no table list was used. From |\n| | MariaDB 10.4.1, using without any table list |\n| | will only close tables not in use, and tables |\n| | not locked by the FLUSH TABLES connection. If |\n| | there are no locked tables, FLUSH TABLES will |\n| | be instant and will not cause any waits, as |\n| | it no longer waits for tables in use. When a |\n| | table list is provided, from MariaDB 10.4.1, |\n| | the server will wait for the end of any |\n| | transactions that are using the tables. |\n| | Previously, FLUSH TABLES only waited for the |\n| | statements to complete. |\n+---------------------------+------------------------------------------------+\n| TABLES | Same as FLUSH TABLE. |\n+---------------------------+------------------------------------------------+\n| TABLES ... FOR EXPORT | For InnoDB tables, flushes table changes to |\n| | disk to permit binary table copies while the |\n| | server is running. See FLUSH TABLES ... FOR |\n| | EXPORT for more. |\n+---------------------------+------------------------------------------------+\n| TABLES WITH READ LOCK | Closes all open tables. New tables are only |\n| | allowed to be opened with read locks until an |\n| | UNLOCK TABLES is given. |\n+---------------------------+------------------------------------------------+\n| TABLES WITH READ LOCK | As TABLES WITH READ LOCK but also disable all |\n| AND DISABLE CHECKPOINT | checkpoint writes by transactional table |\n| | engines. This is useful when doing a disk |\n| | snapshot of all tables. |\n+---------------------------+------------------------------------------------+\n| TABLE_STATISTICS | Reset table statistics (see SHOW |\n| | TABLE_STATISTICS). |\n+---------------------------+------------------------------------------------+\n| USER_RESOURCES | Resets all per hour user resources. This |\n| | enables clients that have exhausted their |\n| | resources to connect again. |\n+---------------------------+------------------------------------------------+\n| USER_STATISTICS | Reset user statistics (see SHOW |\n| | USER_STATISTICS). |\n+---------------------------+------------------------------------------------+\n| USER_VARIABLES | Reset user variables (see User-defined |\n| | variables). |\n+---------------------------+------------------------------------------------+\n\nYou can also use the mariadb-admin client to flush things. Use mariadb-admin\n--help to examine what flush commands it supports.\n\nFLUSH RELAY LOGS\n----------------\n\nFLUSH RELAY LOGS \'connection_name\';\n\nCompatibility with MySQL\n------------------------\n\nMariaDB starting with 10.7.0\n----------------------------\nThe FOR CHANNEL keyword was added for MySQL compatibility. This is identical\nas using the channel_name directly after the FLUSH command.\n\nFor example, one can now use:\n\nFLUSH RELAY LOGS FOR CHANNEL \'connection_name\';\n\nFLUSH STATUS\n------------\n\nServer status variables can be reset by executing the following:\n\nFLUSH STATUS;\n\nGlobal Status Variables that Support FLUSH STATUS\n-------------------------------------------------\n\nNot all global status variables support being reset by FLUSH STATUS.\nCurrently, the following status variables are reset by FLUSH STATUS:\n\n* Aborted_clients\n* Aborted_connects\n* Binlog_cache_disk_use\n* Binlog_cache_use\n* Binlog_stmt_cache_disk_use\n* Binlog_stmt_cache_use\n* Connection_errors_accept\n* Connection_errors_internal\n* Connection_errors_max_connections\n* Connection_errors_peer_address\n* Connection_errors_select\n* Connection_errors_tcpwrap\n* Created_tmp_files\n* Delayed_errors\n* Delayed_writes\n* Feature_check_constraint\n* Feature_delay_key_write\n* Max_used_connections\n* Opened_plugin_libraries\n* Performance_schema_accounts_lost\n* Performance_schema_cond_instances_lost\n* Performance_schema_digest_lost\n* Performance_schema_file_handles_lost\n* Performance_schema_file_instances_lost\n* Performance_schema_hosts_lost\n* Performance_schema_locker_lost\n* Performance_schema_mutex_instances_lost\n* Performance_schema_rwlock_instances_lost\n* Performance_schema_session_connect_attrs_lost\n* Performance_schema_socket_instances_lost\n* Performance_schema_stage_classes_lost\n* Performance_schema_statement_classes_lost\n* Performance_schema_table_handles_lost\n* Performance_schema_table_instances_lost\n* Performance_schema_thread_instances_lost\n* Performance_schema_users_lost\n* Qcache_hits\n* Qcache_inserts\n* Qcache_lowmem_prunes\n* Qcache_not_cached\n* Rpl_semi_sync_master_no_times\n* Rpl_semi_sync_master_no_tx\n* Rpl_semi_sync_master_timefunc_failures\n* Rpl_semi_sync_master_wait_pos_backtraverse\n* Rpl_semi_sync_master_yes_tx\n* Rpl_transactions_multi_engine\n* Server_audit_writes_failed\n* Slave_retried_transactions\n* Slow_launch_threads\n* Ssl_accept_renegotiates\n* Ssl_accepts\n* Ssl_callback_cache_hits\n* Ssl_client_connects\n* Ssl_connect_renegotiates\n* Ssl_ctx_verify_depth\n* Ssl_ctx_verify_mode\n* Ssl_finished_accepts\n* Ssl_finished_connects\n* Ssl_session_cache_hits\n* Ssl_session_cache_misses\n* Ssl_session_cache_overflows\n* Ssl_session_cache_size\n* Ssl_session_cache_timeouts\n* Ssl_sessions_reused\n* Ssl_used_session_cache_entries\n* Subquery_cache_hit\n* Subquery_cache_miss\n* Table_locks_immediate\n* Table_locks_waited\n* Tc_log_max_pages_used\n* Tc_log_page_waits\n* Transactions_gtid_foreign_engine\n* Transactions_multi_engine\n\nThe different usage of FLUSH TABLES\n-----------------------------------\n\nThe purpose of FLUSH TABLES\n---------------------------\n\nThe purpose of FLUSH TABLES is to clean up the open table cache and table\ndefinition cache from not in use tables. This frees up memory and file\ndescriptors. Normally this is not needed as the caches works on a FIFO bases,\nbut can be useful if the server seams to use up to much memory for some reason.\n\nThe purpose of FLUSH TABLES WITH READ LOCK \n-------------------------------------------\n\nFLUSH TABLES WITH READ LOCK is useful if you want to take a backup of some\ntables. When FLUSH TABLES WITH READ LOCK returns, all write access to tables\nare blocked and all tables are marked as \'properly closed\' on disk. The tables\ncan still be used for read operations.\n\nThe purpose of FLUSH TABLES table_list\n--------------------------------------\n\nFLUSH TABLES table_list is useful if you want to copy a table object/files to\nor from the server. This command puts a lock that stops new users of the table\nand will wait until everyone has stopped using the table. The table is then\nremoved from the table definition and table cache.\n\nNote that it\'s up to the user to ensure that no one is accessing the table\nbetween FLUSH TABLES and the table is copied to or from the server. This can\nbe secured by using LOCK TABLES.\n\nIf there are any tables locked by the connection that is using FLUSH TABLES\nall the locked tables will be closed as part of the flush and reopened and\nrelocked before FLUSH TABLES returns. This allows one to copy the table after\nFLUSH TABLES returns without having any writes on the table. For now this\nworks works with most tables, except InnoDB as InnoDB may do background purges\non the table even while it\'s write locked.\n\nThe purpose of FLUSH TABLES table_list WITH READ LOCK\n-----------------------------------------------------\n\nFLUSH TABLES table_list WITH READ LOCK should work as FLUSH TABLES WITH READ\nLOCK, but only those tables that are listed will be properly closed. However\nin practice this works exactly like FLUSH TABLES WITH READ LOCK as the FLUSH\ncommand has anyway to wait for all WRITE operations to end because we are\ndepending on a global read lock for this code. In the future we should\nconsider fixing this to instead use meta data locks.\n\nImplementation of FLUSH TABLES commands in MariaDB 10.4.8 and above\n-------------------------------------------------------------------\n\nImplementation of FLUSH TABLES\n------------------------------\n\n* Free memory and file descriptors not in use\n\nImplementation of FLUSH TABLES WITH READ LOCK\n---------------------------------------------\n\n* Lock all tables read only for simple old style backup.\n* All background writes are suspended and tables are marked as closed.\n* No statement requiring table changes are allowed for any user until UNLOCK\nTABLES.\n\nInstead of using FLUSH TABLE WITH READ LOCK one should in most cases instead\nuse BACKUP STAGE BLOCK_COMMIT.\n\nImplementation of FLUSH TABLES table_list\n-----------------------------------------\n\n* Free memory and file descriptors for tables not in use from table list.\n* Lock given tables as read only.\n* Wait until all translations has ended that uses any of the given tables.\n* Wait until all background writes are suspended and tables are marked as\nclosed.\n\nImplementation of FLUSH TABLES table_list FOR EXPORT\n----------------------------------------------------\n\n* Free memory and file descriptors for tables not in use from table list\n* Lock given tables as read.\n* Wait until all background writes are suspended and tables are marked as\nclosed.\n* Check that all tables supports FOR EXPORT\n* No changes to these tables allowed until UNLOCK TABLES\n\nThis is basically the same behavior as in old MariaDB version if one first\nlock the tables, then do FLUSH TABLES. The tables will be copyable until\nUNLOCK TABLES.\n\nFLUSH SSL\n---------\n\nMariaDB starting with 10.4\n--------------------------\nThe FLUSH SSL command was first added in MariaDB 10.4.\n\nIn MariaDB 10.4 and later, the FLUSH SSL command can be used to dynamically\nreinitialize the server\'s TLS context. This is most useful if you need to\nreplace a certificate that is about to expire without restarting the server.\n\nThis operation is performed by reloading the files defined by the following\nTLS system variables:\n\n* ssl_cert\n* ssl_key\n* ssl_ca\n* ssl_capath\n* ssl_crl\n* ssl_crlpath\n\nThese TLS system variables are not dynamic, so their values can not be changed\nwithout restarting the server.\n\nIf you want to dynamically reinitialize the server\'s TLS context, then you\nneed to change the certificate and key files at the relevant paths defined by\nthese TLS system variables, without actually changing the values of the\nvariables. See MDEV-19341 for more information.\n\nReducing Memory Usage\n---------------------\n\nTo flush some of the global caches that take up memory, you could execute the\nfollowing command:\n\nFLUSH LOCAL HOSTS,\n QUERY CACHE,\n TABLE_STATISTICS,\n INDEX_STATISTICS,\n USER_STATISTICS;\n\nURL: https://mariadb.com/kb/en/flush/','','https://mariadb.com/kb/en/flush/'), (346,'FLUSH QUERY CACHE',26,'Description\n-----------\n\nYou can defragment the query cache to better utilize its memory with the FLUSH\nQUERY CACHE statement. The statement does not remove any queries from the\ncache.\n\nThe RESET QUERY CACHE statement removes all query results from the query\ncache. The FLUSH TABLES statement also does this.\n\nURL: https://mariadb.com/kb/en/flush-query-cache/','','https://mariadb.com/kb/en/flush-query-cache/'), (189,'VARIANCE',16,'Syntax\n------\n\nVARIANCE(expr)\n\nDescription\n-----------\n\nReturns the population standard variance of expr. This is an extension to\nstandard SQL. The standard SQL function VAR_POP() can be used instead.\n\nVariance is calculated by\n\n* working out the mean for the set\n* for each number, subtracting the mean and squaring the result\n* calculate the average of the resulting differences\n\nIt is an aggregate function, and so can be used with the GROUP BY clause.\n\nVARIANCE() can be used as a window function.\n\nVARIANCE() returns NULL if there were no matching rows.\n\nExamples\n--------\n\nCREATE TABLE v(i tinyint);\n\nINSERT INTO v VALUES(101),(99);\n\nSELECT VARIANCE(i) FROM v;\n+-------------+\n| VARIANCE(i) |\n+-------------+\n| 1.0000 |\n+-------------+\n\nINSERT INTO v VALUES(120),(80);\n\nSELECT VARIANCE(i) FROM v;\n+-------------+\n| VARIANCE(i) |\n+-------------+\n| 200.5000 |\n+-------------+\n\nAs an aggregate function:\n\nCREATE OR REPLACE TABLE stats (category VARCHAR(2), x INT);\n\nINSERT INTO stats VALUES \n (\'a\',1),(\'a\',2),(\'a\',3),\n (\'b\',11),(\'b\',12),(\'b\',20),(\'b\',30),(\'b\',60);\n\nSELECT category, STDDEV_POP(x), STDDEV_SAMP(x), VAR_POP(x) \n FROM stats GROUP BY category;\n+----------+---------------+----------------+------------+\n| category | STDDEV_POP(x) | STDDEV_SAMP(x) | VAR_POP(x) |\n+----------+---------------+----------------+------------+\n| a | 0.8165 | 1.0000 | 0.6667 |\n| b | 18.0400 | 20.1693 | 325.4400 |\n+----------+---------------+----------------+------------+\n\nAs a window function:\n\nCREATE OR REPLACE TABLE student_test (name CHAR(10), test CHAR(10), score\nTINYINT);\n\nINSERT INTO student_test VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87);\n\nSELECT name, test, score, VAR_POP(score) \n OVER (PARTITION BY test) AS variance_results FROM student_test;\n+---------+--------+-------+------------------+\n| name | test | score | variance_results |\n+---------+--------+-------+------------------+\n| Chun | SQL | 75 | 287.1875 |\n| Chun | Tuning | 73 | 582.0000 |\n| Esben | SQL | 43 | 287.1875 |\n| Esben | Tuning | 31 | 582.0000 |\n| Kaolin | SQL | 56 | 287.1875 |\n| Kaolin | Tuning | 88 | 582.0000 |\n| Tatiana | SQL | 87 | 287.1875 |\n+---------+--------+-------+------------------+\n\nURL: https://mariadb.com/kb/en/variance/','','https://mariadb.com/kb/en/variance/'), (190,'VAR_POP',16,'Syntax\n------\n\nVAR_POP(expr)\n\nDescription\n-----------\n\nReturns the population standard variance of expr. It considers rows as the\nwhole population, not as a sample, so it has the number of rows as the\ndenominator. You can also use VARIANCE(), which is equivalent but is not\nstandard SQL.\n\nVariance is calculated by\n\n* working out the mean for the set\n* for each number, subtracting the mean and squaring the result\n* calculate the average of the resulting differences\n\nIt is an aggregate function, and so can be used with the GROUP BY clause.\n\nVAR_POP() can be used as a window function.\n\nVAR_POP() returns NULL if there were no matching rows.\n\nExamples\n--------\n\nCREATE TABLE v(i tinyint);\n\nINSERT INTO v VALUES(101),(99);\n\nSELECT VAR_POP(i) FROM v;\n+------------+\n| VAR_POP(i) |\n+------------+\n| 1.0000 |\n+------------+\n\nINSERT INTO v VALUES(120),(80);\n\nSELECT VAR_POP(i) FROM v;\n+------------+\n| VAR_POP(i) |\n+------------+\n| 200.5000 |\n+------------+\n\nAs an aggregate function:\n\nCREATE OR REPLACE TABLE stats (category VARCHAR(2), x INT);\n\nINSERT INTO stats VALUES \n (\'a\',1),(\'a\',2),(\'a\',3),\n (\'b\',11),(\'b\',12),(\'b\',20),(\'b\',30),(\'b\',60);\n\nSELECT category, STDDEV_POP(x), STDDEV_SAMP(x), VAR_POP(x) \n FROM stats GROUP BY category;\n+----------+---------------+----------------+------------+\n| category | STDDEV_POP(x) | STDDEV_SAMP(x) | VAR_POP(x) |\n+----------+---------------+----------------+------------+\n| a | 0.8165 | 1.0000 | 0.6667 |\n| b | 18.0400 | 20.1693 | 325.4400 |\n+----------+---------------+----------------+------------+\n\nAs a window function:\n\nCREATE OR REPLACE TABLE student_test (name CHAR(10), test CHAR(10), score\nTINYINT);\n\nINSERT INTO student_test VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87);\n\nSELECT name, test, score, VAR_POP(score) \n OVER (PARTITION BY test) AS variance_results FROM student_test;\n+---------+--------+-------+------------------+\n| name | test | score | variance_results |\n+---------+--------+-------+------------------+\n| Chun | SQL | 75 | 287.1875 |\n| Esben | SQL | 43 | 287.1875 |\n| Kaolin | SQL | 56 | 287.1875 |\n| Tatiana | SQL | 87 | 287.1875 |\n| Chun | Tuning | 73 | 582.0000 |\n| Esben | Tuning | 31 | 582.0000 |\n| Kaolin | Tuning | 88 | 582.0000 |\n+---------+--------+-------+------------------+\n\nURL: https://mariadb.com/kb/en/var_pop/','','https://mariadb.com/kb/en/var_pop/'), (349,'SHOW SLAVE STATUS',26,'Syntax\n------\n\nSHOW SLAVE [\"connection_name\"] STATUS [FOR CHANNEL \"connection_name\"]\nSHOW REPLICA [\"connection_name\"] STATUS -- From MariaDB 10.5.1\n\nor\n\nSHOW ALL SLAVES STATUS\nSHOW ALL REPLICAS STATUS -- From MariaDB 10.5.1\n\nDescription\n-----------\n\nThis statement is to be run on a replica and provides status information on\nessential parameters of the replica threads.\n\nThis statement requires the SUPER privilege, the REPLICATION_CLIENT privilege,\nor, from MariaDB 10.5.2, the REPLICATION SLAVE ADMIN privilege, or, from\nMariaDB 10.5.9, the REPLICA MONITOR privilege.\n\nMulti-Source\n------------\n\nThe ALL and \"connection_name\" options allow you to connect to many primaries\nat the same time.\n\nALL SLAVES (or ALL REPLICAS from MariaDB 10.5.1) gives you a list of all\nconnections to the primary nodes.\n\nThe rows will be sorted according to Connection_name.\n\nIf you specify a connection_name, you only get the information about that\nconnection. If connection_name is not used, then the name set by\ndefault_master_connection is used. If the connection name doesn\'t exist you\nwill get an error: There is no master connection for \'xxx\'.\n\nMariaDB starting with 10.7.0\n----------------------------\nThe FOR CHANNEL keyword was added for MySQL compatibility. This is identical\nto using the channel_name directly after SHOW SLAVE.\n\nColumn Descriptions\n-------------------\n\n+---------------------+------------------------------------------------------+\n| Name | Description |\n+---------------------+------------------------------------------------------+\n| Connection_name | Name of the primary connection. Returned with SHOW |\n| | ALL SLAVES STATUS (or SHOW ALL REPLICAS STATUS from |\n| | MariaDB 10.5.1) only. |\n+---------------------+------------------------------------------------------+\n| Slave_SQL_State | State of SQL thread. Returned with SHOW ALL SLAVES |\n| | STATUS (or SHOW ALL REPLICAS STATUS from MariaDB |\n| | 10.5.1) only. See Slave SQL Thread States. |\n+---------------------+------------------------------------------------------+\n| Slave_IO_State | State of I/O thread. See Slave I/O Thread States. |\n+---------------------+------------------------------------------------------+\n| Master_host | Master host that the replica is connected to. |\n+---------------------+------------------------------------------------------+\n| Master_user | Account user name being used to connect to the |\n| | primary. |\n+---------------------+------------------------------------------------------+\n| Master_port | The port being used to connect to the primary. |\n+---------------------+------------------------------------------------------+\n| Connect_Retry | Time in seconds between retries to connect. The |\n| | default is 60. The CHANGE MASTER TO statement can |\n| | set this. The master-retry-count option determines |\n| | the maximum number of reconnection attempts. |\n+---------------------+------------------------------------------------------+\n| Master_Log_File | Name of the primary binary log file that the I/O |\n| | thread is currently reading from. |\n+---------------------+------------------------------------------------------+\n| Read_Master_Log_Pos | Position up to which the I/O thread has read in the |\n| | current primary binary log file. |\n+---------------------+------------------------------------------------------+\n| Relay_Log_File | Name of the relay log file that the SQL thread is |\n| | currently processing. |\n+---------------------+------------------------------------------------------+\n| Relay_Log_Pos | Position up to which the SQL thread has finished |\n| | processing in the current relay log file. |\n+---------------------+------------------------------------------------------+\n| Relay_Master_Log_Fi | Name of the primary binary log file that contains |\n| e | the most recent event executed by the SQL thread. |\n+---------------------+------------------------------------------------------+\n| Slave_IO_Running | Whether the replica I/O thread is running and |\n| | connected (Yes), running but not connected to a |\n| | primary (Connecting) or not running (No). |\n+---------------------+------------------------------------------------------+\n| Slave_SQL_Running | Whether or not the SQL thread is running. |\n+---------------------+------------------------------------------------------+\n| Replicate_Rewrite_D | Databases specified for replicating and rewriting |\n| | with the replicate_rewrite_db option. Added in |\n| | MariaDB 10.11 |\n+---------------------+------------------------------------------------------+\n| Replicate_Do_DB | Databases specified for replicating with the |\n| | replicate_do_db option. |\n+---------------------+------------------------------------------------------+\n| Replicate_Ignore_DB | Databases specified for ignoring with the |\n| | replicate_ignore_db option. |\n+---------------------+------------------------------------------------------+\n| Replicate_Do_Table | Tables specified for replicating with the |\n| | replicate_do_table option. |\n+---------------------+------------------------------------------------------+\n| Replicate_Ignore_Ta | Tables specified for ignoring with the |\n| le | replicate_ignore_table option. |\n+---------------------+------------------------------------------------------+\n| Replicate_Wild_Do_T | Tables specified for replicating with the |\n| ble | replicate_wild_do_table option. |\n+---------------------+------------------------------------------------------+\n| Replicate_Wild_Igno | Tables specified for ignoring with the |\n| e_Table | replicate_wild_ignore_table option. |\n+---------------------+------------------------------------------------------+\n| Last_Errno | Alias for Last_SQL_Errno (see below) |\n+---------------------+------------------------------------------------------+\n| Last Error | Alias for Last_SQL_Error (see below) |\n+---------------------+------------------------------------------------------+\n| Skip_Counter | Number of events that a replica skips from the |\n| | master, as recorded in the sql_slave_skip_counter |\n| | system variable. |\n+---------------------+------------------------------------------------------+\n| Exec_Master_Log_Pos | Position up to which the SQL thread has processed |\n| | in the current master binary log file. Can be used |\n| | to start a new replica from a current replica with |\n| | the CHANGE MASTER TO ... MASTER_LOG_POS option. |\n+---------------------+------------------------------------------------------+\n| Relay_Log_Space | Total size of all relay log files combined. |\n+---------------------+------------------------------------------------------+\n| Until_Condition | |\n+---------------------+------------------------------------------------------+\n| Until_Log_File | The MASTER_LOG_FILE value of the START SLAVE UNTIL |\n| | condition. |\n+---------------------+------------------------------------------------------+\n| Until_Log_Pos | The MASTER_LOG_POS value of the START SLAVE UNTIL |\n| | condition. |\n+---------------------+------------------------------------------------------+\n| Master_SSL_Allowed | Whether an SSL connection is permitted (Yes), not |\n| | permitted (No) or permitted but without the replica |\n| | having SSL support enabled (Ignored) |\n+---------------------+------------------------------------------------------+\n| Master_SSL_CA_File | The MASTER_SSL_CA option of the CHANGE MASTER TO |\n| | statement. |\n+---------------------+------------------------------------------------------+\n| Master_SSL_CA_Path | The MASTER_SSL_CAPATH option of the CHANGE MASTER |\n| | TO statement. |\n+---------------------+------------------------------------------------------+\n| Master_SSL_Cert | The MASTER_SSL_CERT option of the CHANGE MASTER TO |\n| | statement. |\n+---------------------+------------------------------------------------------+\n| Master_SSL_Cipher | The MASTER_SSL_CIPHER option of the CHANGE MASTER |\n| | TO statement. |\n+---------------------+------------------------------------------------------+\n| Master_SSL_Key | The MASTER_SSL_KEY option of the CHANGE MASTER TO |\n| | statement. |\n+---------------------+------------------------------------------------------+\n| Seconds_Behind_Mast | Difference between the timestamp logged on the |\n| r | master for the event that the replica is currently |\n| | processing, and the current timestamp on the |\n| | replica. Zero if the replica is not currently |\n| | processing an event. With serial replication, |\n| | seconds_behind_master is updated when the SQL |\n| | thread begins executing a transaction. With |\n| | parallel replication, seconds_behind_master is |\n| | updated only after transactions commit. Starting in |\n| | MariaDB 10.3.38, 10.4.28, 10.5.19, 10.6.12, 10.8.7, |\n| | 10.9.5, 10.10.3, and 10.11.2, an exception is drawn |\n| | on the parallel replica to additionally update |\n| | seconds_behind_master when the first transaction |\n| | received after idling is queued to a worker for |\n| | execution, to provide a reliable initial value for |\n| | the duration until a transaction commits. |\n| | Additional behaviors to be aware of are as follows: |\n| | 1) Seconds_Behind_Master will update for ignored |\n| | events, e.g. those skipped due to |\n| | sql_slave_skip_counter. 2) On the serial replica, |\n| | transactions with prior timestamps can update |\n| | Seconds_Behind_Master such that it can go |\n| | backwards, though this is not true for the parallel |\n| | replica. 3) When configured with MASTER_DELAY, as a |\n| | replicated transaction begins executing (i.e. on a |\n| | serial or post-idle parallel replica), |\n| | Seconds_Behind_Master will update before delaying, |\n| | and while delaying occurs will grow to encompass |\n| | the configured value. 4) There is a known issue, |\n| | tracked by MDEV-17516, such that |\n| | Seconds_Behind_Master will initially present as 0 |\n| | on replica restart until a replicated transaction |\n| | begins executing, even if the last replica session |\n| | was lagging behind when stopped. |\n+---------------------+------------------------------------------------------+\n| Master_SSL_Verify_S | The MASTER_SSL_VERIFY_SERVER_CERT option of the |\n| rver_Cert | CHANGE MASTER TO statement. |\n+---------------------+------------------------------------------------------+\n| Last_IO_Errno | Error code of the most recent error that caused the |\n| | I/O thread to stop (also recorded in the replica\'s |\n| | error log). 0 means no error. RESET SLAVE or RESET |\n| | MASTER will reset this value. |\n+---------------------+------------------------------------------------------+\n| Last_IO_Error | Error message of the most recent error that caused |\n| | the I/O thread to stop (also recorded in the |\n| | replica\'s error log). An empty string means no |\n| | error. RESET SLAVE or RESET MASTER will reset this |\n| | value. |\n+---------------------+------------------------------------------------------+\n| Last_SQL_Errno | Error code of the most recent error that caused the |\n| | SQL thread to stop (also recorded in the replica\'s |\n| | error log). 0 means no error. RESET SLAVE or RESET |\n| | MASTER will reset this value. |\n+---------------------+------------------------------------------------------+\n| Last_SQL_Error | Error message of the most recent error that caused |\n| | the SQL thread to stop (also recorded in the |\n| | replica\'s error log). An empty string means no |\n| | error. RESET SLAVE or RESET MASTER will reset this |\n| | value. |\n+---------------------+------------------------------------------------------+\n| Replicate_Ignore_Se | List of server_ids that are currently being ignored |\n| ver_Ids | for replication purposes, or an empty string for |\n| | none, as specified in the IGNORE_SERVER_IDS option |\n| | of the CHANGE MASTER TO statement. |\n+---------------------+------------------------------------------------------+\n| Master_Server_Id | The master\'s server_id value. |\n+---------------------+------------------------------------------------------+\n| Master_SSL_Crl | The MASTER_SSL_CRL option of the CHANGE MASTER TO |\n| | statement. |\n+---------------------+------------------------------------------------------+\n| Master_SSL_Crlpath | The MASTER_SSL_CRLPATH option of the CHANGE MASTER |\n| | TO statement. |\n+---------------------+------------------------------------------------------+\n| Using_Gtid | Whether or not global transaction ID\'s are being |\n| | used for replication (can be No, Slave_Pos, or |\n| | Current_Pos). |\n+---------------------+------------------------------------------------------+\n| Gtid_IO_Pos | Current global transaction ID value. |\n+---------------------+------------------------------------------------------+\n| Retried_transaction | Number of retried transactions for this connection. |\n| | Returned with SHOW ALL SLAVES STATUS only. |\n+---------------------+------------------------------------------------------+\n| Max_relay_log_size | Max relay log size for this connection. Returned |\n| | with SHOW ALL SLAVES STATUS only. |\n+---------------------+------------------------------------------------------+\n| Executed_log_entrie | How many log entries the replica has executed. |\n| | Returned with SHOW ALL SLAVES STATUS only. |\n+---------------------+------------------------------------------------------+\n| Slave_received_hear | How many heartbeats we have got from the master. |\n| beats | Returned with SHOW ALL SLAVES STATUS only. |\n+---------------------+------------------------------------------------------+\n| Slave_heartbeat_per | How often to request a heartbeat packet from the |\n| od | master (in seconds). Returned with SHOW ALL SLAVES |\n| | STATUS only. |\n+---------------------+------------------------------------------------------+\n| Gtid_Slave_Pos | GTID of the last event group replicated on a |\n| | replica server, for each replication domain, as |\n| | stored in the gtid_slave_pos system variable. |\n| | Returned with SHOW ALL SLAVES STATUS only. |\n+---------------------+------------------------------------------------------+\n| SQL_Delay | Value specified by MASTER_DELAY in CHANGE MASTER |\n| | (or 0 if none). |\n+---------------------+------------------------------------------------------+\n| SQL_Remaining_Delay | When the replica is delaying the execution of an |\n| | event due to MASTER_DELAY, this is the number of |\n| | seconds of delay remaining before the event will be |\n| | applied. Otherwise, the value is NULL. |\n+---------------------+------------------------------------------------------+\n| Slave_SQL_Running_S | The state of the SQL driver threads, same as in |\n| ate | SHOW PROCESSLIST. When the replica is delaying the |\n| | execution of an event due to MASTER_DELAY, this |\n| | field displays: \"Waiting until MASTER_DELAY seconds |\n| | after master executed event\". |\n+---------------------+------------------------------------------------------+\n| Slave_DDL_Groups | This status variable counts the occurrence of DDL |\n| | statements. This is a replica-side counter for |\n| | optimistic parallel replication. |\n+---------------------+------------------------------------------------------+\n| Slave_Non_Transacti | This status variable counts the occurrence of |\n| nal_Groups | non-transactional event groups. This is a |\n| | replica-side counter for optimistic parallel |\n| | replication. |\n+---------------------+------------------------------------------------------+\n| Slave_Transactional | This status variable counts the occurrence of |\n| Groups | transactional event groups. This is a replica-side |\n| | counter for optimistic parallel replication. |\n+---------------------+------------------------------------------------------+\n\nSHOW REPLICA STATUS\n-------------------\n\nMariaDB starting with 10.5.1\n----------------------------\nSHOW REPLICA STATUS is an alias for SHOW SLAVE STATUS from MariaDB 10.5.1.\n\nExamples\n--------\n\nIf you issue this statement using the mariadb client, you can use a \\G\nstatement terminator rather than a semicolon to obtain a more readable\nvertical layout.\n\nSHOW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: db01.example.com\n Master_User: replicant\n Master_Port: 3306\n Connect_Retry: 60\n Master_Log_File: mariadb-bin.000010\n Read_Master_Log_Pos: 548\n Relay_Log_File: relay-bin.000004\n Relay_Log_Pos: 837\n Relay_Master_Log_File: mariadb-bin.000010\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Replicate_Do_Table:\n Replicate_Ignore_Table:\n Replicate_Wild_Do_Table:\n Replicate_Wild_Ignore_Table:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 548\n Relay_Log_Space: 1497\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\n Seconds_Behind_Master: 0\nMaster_SSL_Verify_Server_Cert: No\n Last_IO_Errno: 0\n Last_IO_Error:\n Last_SQL_Errno: 0\n Last_SQL_Error:\n Replicate_Ignore_Server_Ids:\n Master_Server_Id: 101\n Master_SSL_Crl:\n Master_SSL_Crlpath:\n Using_Gtid: No\n Gtid_IO_Pos:\n\nSHOW ALL SLAVES STATUS\\G\n*************************** 1. row ***************************\n Connection_name:\n Slave_SQL_State: Slave has read all relay log; waiting for the\nslave I/O thread to update it\n Slave_IO_State: Waiting for master to send event\n Master_Host: db01.example.com\n Master_User: replicant\n Master_Port: 3306\n Connect_Retry: 60\n Master_Log_File: mariadb-bin.000010\n Read_Master_Log_Pos: 3608\n Relay_Log_File: relay-bin.000004\n Relay_Log_Pos: 3897\n Relay_Master_Log_File: mariadb-bin.000010\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Replicate_Do_Table:\n Replicate_Ignore_Table:\n Replicate_Wild_Do_Table:\n Replicate_Wild_Ignore_Table:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 3608\n Relay_Log_Space: 4557\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\n Seconds_Behind_Master: 0\nMaster_SSL_Verify_Server_Cert: No\n Last_IO_Errno: 0\n Last_IO_Error:\n Last_SQL_Errno: 0\n Last_SQL_Error:\n Replicate_Ignore_Server_Ids:\n Master_Server_Id: 101\n Master_SSL_Crl:\n Master_SSL_Crlpath:\n Using_Gtid: No\n Gtid_IO_Pos:\n Retried_transactions: 0\n Max_relay_log_size: 104857600\n Executed_log_entries: 40\n Slave_received_heartbeats: 11\n Slave_heartbeat_period: 1800.000\n Gtid_Slave_Pos: 0-101-2320\n\nYou can also access some of the variables directly from status variables:\n\nSET @@default_master_connection=\"test\" ;\nshow status like \"%slave%\"\n\nVariable_name Value\nCom_show_slave_hosts 0\nCom_show_slave_status 0\nCom_start_all_slaves 0\nCom_start_slave 0\nCom_stop_all_slaves 0\nCom_stop_slave 0\nRpl_semi_sync_slave_status OFF\nSlave_connections 0\nSlave_heartbeat_period 1800.000\nSlave_open_temp_tables 0\nSlave_received_heartbeats 0\nSlave_retried_transactions 0\nSlave_running OFF\nSlaves_connected 0\nSlaves_running 1\n\nURL: https://mariadb.com/kb/en/show-replica-status/','','https://mariadb.com/kb/en/show-replica-status/'), (357,'SET SQL_LOG_BIN',26,'Syntax\n------\n\nSET [SESSION] sql_log_bin = {0|1}\n\nDescription\n-----------\n\nSets the sql_log_bin system variable, which disables or enables binary logging\nfor the current connection, if the client has the SUPER privilege. The\nstatement is refused with an error if the client does not have that privilege.\n\nBefore MariaDB 5.5 and before MySQL 5.6 one could also set sql_log_bin as a\nglobal variable. This was disabled as this was too dangerous as it could\ndamage replication.\n\nURL: https://mariadb.com/kb/en/set-sql_log_bin/','','https://mariadb.com/kb/en/set-sql_log_bin/'), (393,'SHOW PROFILES',26,'Syntax\n------\n\nSHOW PROFILES\n\nDescription\n-----------\n\nThe SHOW PROFILES statement displays profiling information that indicates\nresource usage for statements executed during the course of the current\nsession. It is used together with SHOW PROFILE.\n\nURL: https://mariadb.com/kb/en/show-profiles/','','https://mariadb.com/kb/en/show-profiles/'), (394,'SHOW QUERY_RESPONSE_TIME',26,'It is possible to use SHOW QUERY_RESPONSE_TIME as an alternative for\nretrieving information from the QUERY_RESPONSE_TIME plugin.\n\nThis was introduced as part of the Information Schema plugin extension.\n\nURL: https://mariadb.com/kb/en/show-query_response_time/','','https://mariadb.com/kb/en/show-query_response_time/'), (405,'BINLOG',26,'Syntax\n------\n\nBINLOG \'str\'\n\nDescription\n-----------\n\nBINLOG is an internal-use statement. It is generated by the mariadb-binlog\nprogram as the printable representation of certain events in binary log files.\nThe \'str\' value is a base 64-encoded string that the server decodes to\ndetermine the data change indicated by the corresponding event. This statement\nrequires the SUPER privilege (<= MariaDB 10.5.1) or the BINLOG REPLAY\nprivilege (>= MariaDB 10.5.2).\n\nURL: https://mariadb.com/kb/en/binlog/','','https://mariadb.com/kb/en/binlog/'), (410,'LOAD INDEX',26,'Syntax\n------\n\nLOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [[INDEX|KEY] (index_name[, index_name] ...)]\n [IGNORE LEAVES]\n\nDescription\n-----------\n\nThe LOAD INDEX INTO CACHE statement preloads a table index into the key cache\nto which it has been assigned by an explicit CACHE INDEX statement, or into\nthe default key cache otherwise. LOAD INDEX INTO CACHE is used only for MyISAM\nor Aria tables.\n\nThe IGNORE LEAVES modifier causes only blocks for the nonleaf nodes of the\nindex to be preloaded.\n\nURL: https://mariadb.com/kb/en/load-index/','','https://mariadb.com/kb/en/load-index/'), (191,'VAR_SAMP',16,'Syntax\n------\n\nVAR_SAMP(expr)\n\nDescription\n-----------\n\nReturns the sample variance of expr. That is, the denominator is the number of\nrows minus one.\n\nIt is an aggregate function, and so can be used with the GROUP BY clause.\n\nVAR_SAMP() can be used as a window function.\n\nVAR_SAMP() returns NULL if there were no matching rows.\n\nExamples\n--------\n\nAs an aggregate function:\n\nCREATE OR REPLACE TABLE stats (category VARCHAR(2), x INT);\n\nINSERT INTO stats VALUES \n (\'a\',1),(\'a\',2),(\'a\',3),\n (\'b\',11),(\'b\',12),(\'b\',20),(\'b\',30),(\'b\',60);\n\nSELECT category, STDDEV_POP(x), STDDEV_SAMP(x), VAR_POP(x) \n FROM stats GROUP BY category;\n+----------+---------------+----------------+------------+\n| category | STDDEV_POP(x) | STDDEV_SAMP(x) | VAR_POP(x) |\n+----------+---------------+----------------+------------+\n| a | 0.8165 | 1.0000 | 0.6667 |\n| b | 18.0400 | 20.1693 | 325.4400 |\n+----------+---------------+----------------+------------+\n\nAs a window function:\n\nCREATE OR REPLACE TABLE student_test (name CHAR(10), test CHAR(10), score\nTINYINT);\n\nINSERT INTO student_test VALUES \n (\'Chun\', \'SQL\', 75), (\'Chun\', \'Tuning\', 73),\n (\'Esben\', \'SQL\', 43), (\'Esben\', \'Tuning\', 31),\n (\'Kaolin\', \'SQL\', 56), (\'Kaolin\', \'Tuning\', 88),\n (\'Tatiana\', \'SQL\', 87);\n\nSELECT name, test, score, VAR_SAMP(score) \n OVER (PARTITION BY test) AS variance_results FROM student_test;\n+---------+--------+-------+------------------+\n| name | test | score | variance_results |\n+---------+--------+-------+------------------+\n| Chun | SQL | 75 | 382.9167 |\n| Chun | Tuning | 73 | 873.0000 |\n| Esben | SQL | 43 | 382.9167 |\n| Esben | Tuning | 31 | 873.0000 |\n| Kaolin | SQL | 56 | 382.9167 |\n| Kaolin | Tuning | 88 | 873.0000 |\n| Tatiana | SQL | 87 | 382.9167 |\n+---------+--------+-------+------------------+\n\nURL: https://mariadb.com/kb/en/var_samp/','','https://mariadb.com/kb/en/var_samp/'), (194,'CHARSET',17,'Syntax\n------\n\nCHARSET(str)\n\nDescription\n-----------\n\nReturns the character set of the string argument. If str is not a string, it\nis considered as a binary string (so the function returns \'binary\'). This\napplies to NULL, too. The return value is a string in the utf8 character set.\n\nExamples\n--------\n\nSELECT CHARSET(\'abc\');\n+----------------+\n| CHARSET(\'abc\') |\n+----------------+\n| latin1 |\n+----------------+\n\nSELECT CHARSET(CONVERT(\'abc\' USING utf8));\n+------------------------------------+\n| CHARSET(CONVERT(\'abc\' USING utf8)) |\n+------------------------------------+\n| utf8 |\n+------------------------------------+\n\nSELECT CHARSET(USER());\n+-----------------+\n| CHARSET(USER()) |\n+-----------------+\n| utf8 |\n+-----------------+\n\nURL: https://mariadb.com/kb/en/charset/','','https://mariadb.com/kb/en/charset/'), (195,'COERCIBILITY',17,'Syntax\n------\n\nCOERCIBILITY(str)\n\nDescription\n-----------\n\nReturns the collation coercibility value of the string argument. Coercibility\ndefines what will be converted to what in case of collation conflict, with an\nexpression with higher coercibility being converted to the collation of an\nexpression with lower coercibility.\n\n+-----------------------------+---------------------------+------------------+\n| Coercibility | Description | Example |\n+-----------------------------+---------------------------+------------------+\n| 0 | Explicit | Value using a |\n| | | COLLATE clause |\n+-----------------------------+---------------------------+------------------+\n| 1 | No collation | Concatenated |\n| | | strings using |\n| | | different |\n| | | collations |\n+-----------------------------+---------------------------+------------------+\n| 2 | Implicit | Column value |\n+-----------------------------+---------------------------+------------------+\n| 3 | Constant | USER() return |\n| | | value |\n+-----------------------------+---------------------------+------------------+\n| 4 | Coercible | Literal string |\n+-----------------------------+---------------------------+------------------+\n| 5 | Ignorable | NULL or derived |\n| | | from NULL |\n+-----------------------------+---------------------------+------------------+\n\nExamples\n--------\n\nSELECT COERCIBILITY(\'abc\' COLLATE latin1_swedish_ci);\n+-----------------------------------------------+\n| COERCIBILITY(\'abc\' COLLATE latin1_swedish_ci) |\n+-----------------------------------------------+\n| 0 |\n+-----------------------------------------------+\n\nSELECT COERCIBILITY(USER());\n+----------------------+\n| COERCIBILITY(USER()) |\n+----------------------+\n| 3 |\n+----------------------+\n\nSELECT COERCIBILITY(\'abc\');\n+---------------------+\n| COERCIBILITY(\'abc\') |\n+---------------------+\n| 4 |\n+---------------------+\n\nURL: https://mariadb.com/kb/en/coercibility/','','https://mariadb.com/kb/en/coercibility/'), (414,'SHOW FUNCTION CODE',26,'Syntax\n------\n\nSHOW FUNCTION CODE func_name\n\nDescription\n-----------\n\nSHOW FUNCTION CODE shows a representation of the internal implementation of\nthe stored function.\n\nIt is similar to SHOW PROCEDURE CODE but for stored functions.\n\nURL: https://mariadb.com/kb/en/show-function-code/','','https://mariadb.com/kb/en/show-function-code/'), (444,'LOCK IN SHARE MODE',27,'InnoDB supports row-level locking. Selected rows can be locked using LOCK IN\nSHARE MODE or FOR UPDATE. In both cases, a lock is acquired on the rows read\nby the query, and it will be released when the current transaction is\ncommitted.\n\nWhen LOCK IN SHARE MODE is specified in a SELECT statement, MariaDB will wait\nuntil all transactions that have modified the rows are committed. Then, a\nwrite lock is acquired. All transactions can read the rows, but if they want\nto modify them, they have to wait until your transaction is committed.\n\nIf autocommit is set to 1 (the default), the LOCK IN SHARE MODE and FOR UPDATE\nclauses have no effect.\n\nURL: https://mariadb.com/kb/en/lock-in-share-mode/','','https://mariadb.com/kb/en/lock-in-share-mode/'), (446,'PROCEDURE',27,'The PROCEDURE clause of SELECT passes the whole result set to a Procedure\nwhich will process it. These Procedures are not Stored Procedures, and can\nonly be written in the C language, so it is necessary to recompile the server.\n\nCurrently, the only available procedure is ANALYSE, which examines the\nresultset and suggests the optimal datatypes for each column. It is defined in\nthe sql/sql_analyse.cc file, and can be used as an example to create more\nProcedures.\n\nThis clause cannot be used in a view\'s definition.\n\nURL: https://mariadb.com/kb/en/procedure/','','https://mariadb.com/kb/en/procedure/'), (198,'CURRENT_ROLE',17,'Syntax\n------\n\nCURRENT_ROLE, CURRENT_ROLE()\n\nDescription\n-----------\n\nReturns the current role name. This determines your access privileges. The\nreturn value is a string in the utf8 character set.\n\nIf there is no current role, NULL is returned.\n\nThe output of SELECT CURRENT_ROLE is equivalent to the contents of the\nENABLED_ROLES Information Schema table.\n\nUSER() returns the combination of user and host used to login. CURRENT_USER()\nreturns the account used to determine current connection\'s privileges.\n\nExamples\n--------\n\nSELECT CURRENT_ROLE;\n+--------------+\n| CURRENT_ROLE |\n+--------------+\n| NULL |\n+--------------+\n\nSET ROLE staff;\n\nSELECT CURRENT_ROLE;\n+--------------+\n| CURRENT_ROLE |\n+--------------+\n| staff |\n+--------------+\n\nURL: https://mariadb.com/kb/en/current_role/','','https://mariadb.com/kb/en/current_role/'), (199,'CURRENT_USER',17,'Syntax\n------\n\nCURRENT_USER, CURRENT_USER()\n\nDescription\n-----------\n\nReturns the user name and host name combination for the MariaDB account that\nthe server used to authenticate the current client. This account determines\nyour access privileges. The return value is a string in the utf8 character set.\n\nThe value of CURRENT_USER() can differ from the value of USER().\nCURRENT_ROLE() returns the current active role.\n\nExamples\n--------\n\nshell> mysql --user=\"anonymous\"\n\nselect user(),current_user();\n+---------------------+----------------+\n| user() | current_user() |\n+---------------------+----------------+\n| anonymous@localhost | @localhost |\n+---------------------+----------------+\n\nWhen calling CURRENT_USER() in a stored procedure, it returns the owner of the\nstored procedure, as defined with DEFINER.\n\nURL: https://mariadb.com/kb/en/current_user/','','https://mariadb.com/kb/en/current_user/'), (200,'DATABASE',17,'Syntax\n------\n\nDATABASE()\nSCHEMA()\n\nDescription\n-----------\n\nReturns the default (current) database name as a string in the utf8 character\nset. If there is no default database, DATABASE() returns NULL. Within a stored\nroutine, the default database is the database that the routine is associated\nwith, which is not necessarily the same as the database that is the default in\nthe calling context.\n\nSCHEMA() is a synonym for DATABASE().\n\nTo select a default database, the USE statement can be run. Another way to set\nthe default database is specifying its name at mariadb command line client\nstartup.\n\nExamples\n--------\n\nSELECT DATABASE();\n+------------+\n| DATABASE() |\n+------------+\n| NULL |\n+------------+\n\nUSE test;\nDatabase changed\n\nSELECT DATABASE();\n+------------+\n| DATABASE() |\n+------------+\n| test |\n+------------+\n\nURL: https://mariadb.com/kb/en/database/','','https://mariadb.com/kb/en/database/'), (203,'FOUND_ROWS',17,'Syntax\n------\n\nFOUND_ROWS()\n\nDescription\n-----------\n\nA SELECT statement may include a LIMIT clause to restrict the number of rows\nthe server returns to the client. In some cases, it is desirable to know how\nmany rows the statement would have returned without the LIMIT, but without\nrunning the statement again. To obtain this row count, include a\nSQL_CALC_FOUND_ROWS option in the SELECT statement, and then invoke\nFOUND_ROWS() afterwards.\n\nYou can also use FOUND_ROWS() to obtain the number of rows returned by a\nSELECT which does not contain a LIMIT clause. In this case you don\'t need to\nuse the SQL_CALC_FOUND_ROWS option. This can be useful for example in a stored\nprocedure.\n\nAlso, this function works with some other statements which return a resultset,\nincluding SHOW, DESC and HELP. For DELETE ... RETURNING you should use\nROW_COUNT(). It also works as a prepared statement, or after executing a\nprepared statement.\n\nStatements which don\'t return any results don\'t affect FOUND_ROWS() - the\nprevious value will still be returned.\n\nWarning: When used after a CALL statement, this function returns the number of\nrows selected by the last query in the procedure, not by the whole procedure.\n\nStatements using the FOUND_ROWS() function are not safe for replication.\n\nExamples\n--------\n\nSHOW ENGINES\\G\n*************************** 1. row ***************************\n Engine: CSV\n Support: YES\n Comment: Stores tables as CSV files\nTransactions: NO\n XA: NO\n Savepoints: NO\n*************************** 2. row ***************************\n Engine: MRG_MyISAM\n Support: YES\n Comment: Collection of identical MyISAM tables\nTransactions: NO\n XA: NO\n Savepoints: NO\n\n...\n\n*************************** 8. row ***************************\n Engine: PERFORMANCE_SCHEMA\n Support: YES\n Comment: Performance Schema\nTransactions: NO\n XA: NO\n Savepoints: NO\n8 rows in set (0.000 sec)\n\nSELECT FOUND_ROWS();\n+--------------+\n| FOUND_ROWS() |\n+--------------+\n| 8 |\n+--------------+\n\nSELECT SQL_CALC_FOUND_ROWS * FROM tbl_name WHERE id > 100 LIMIT 10;\n\nSELECT FOUND_ROWS();\n+--------------+\n| FOUND_ROWS() |\n+--------------+\n| 23 |\n+--------------+\n\nURL: https://mariadb.com/kb/en/found_rows/','','https://mariadb.com/kb/en/found_rows/'), (447,'DUAL',27,'Description\n-----------\n\nYou are allowed to specify DUAL as a dummy table name in situations where no\ntables are referenced, such as the following SELECT statement:\n\nSELECT 1 + 1 FROM DUAL;\n+-------+\n| 1 + 1 |\n+-------+\n| 2 |\n+-------+\n\nDUAL is purely for the convenience of people who require that all SELECT\nstatements should have FROM and possibly other clauses. MariaDB ignores the\nclauses. MariaDB does not require FROM DUAL if no tables are referenced.\n\nFROM DUAL could be used when you only SELECT computed values, but require a\nWHERE clause, perhaps to test that a script correctly handles empty resultsets:\n\nSELECT 1 FROM DUAL WHERE FALSE;\nEmpty set (0.00 sec)\n\nURL: https://mariadb.com/kb/en/dual/','','https://mariadb.com/kb/en/dual/'), (452,'LOAD DATA INFILE',27,'Syntax\n------\n\nLOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [CHARACTER SET charset_name]\n [{FIELDS | COLUMNS}\n [TERMINATED BY \'string\']\n [[OPTIONALLY] ENCLOSED BY \'char\']\n [ESCAPED BY \'char\']\n ]\n [LINES\n [STARTING BY \'string\']\n [TERMINATED BY \'string\']\n ]\n [IGNORE number {LINES|ROWS}]\n [(col_name_or_user_var,...)]\n [SET col_name = expr,...]\n\nDescription\n-----------\n\nLOAD DATA INFILE is unsafe for statement-based replication.\n\nReads rows from a text file into the designated table on the database at a\nvery high speed. The file name must be given as a literal string.\n\nFiles are written to disk using the SELECT INTO OUTFILE statement. You can\nthen read the files back into a table using the LOAD DATA INFILE statement.\nThe FIELDS and LINES clauses are the same in both statements. These clauses\nare optional, but if both are specified then the FIELDS clause must precede\nLINES.\n\nExecuting this statement activates INSERT triggers.\n\nOne must have the FILE privilege to be able to execute LOAD DATA INFILE. This\nis to ensure normal users cannot read system files. LOAD DATA LOCAL INFILE\ndoes not have this requirement.\n\nIf the secure_file_priv system variable is set (by default it is not), the\nloaded file must be present in the specified directory.\n\nNote that MariaDB\'s systemd unit file restricts access to /home, /root, and\n/run/user by default. See Configuring access to home directories.\n\nLOAD DATA LOCAL INFILE\n----------------------\n\nWhen you execute the LOAD DATA INFILE statement, MariaDB Server attempts to\nread the input file from its own file system. By contrast, when you execute\nthe LOAD DATA LOCAL INFILE statement, the client attempts to read the input\nfile from its file system, and it sends the contents of the input file to the\nMariaDB Server. This allows you to load files from the client\'s local file\nsystem into the database.\n\nIf you don\'t want to permit this operation (perhaps for security reasons), you\ncan disable the LOAD DATA LOCAL INFILE statement on either the server or the\nclient.\n\n* The LOAD DATA LOCAL INFILE statement can be disabled on the server by\nsetting the local_infile system variable to 0.\n* The LOAD DATA LOCAL INFILE statement can be disabled on the client. If you\nare using MariaDB Connector/C, this can be done by unsetting the\nCLIENT_LOCAL_FILES capability flag with the mysql_real_connect function or by\nunsetting the MYSQL_OPT_LOCAL_INFILE option with mysql_optionsv function. If\nyou are using a different client or client library, then see the documentation\nfor your specific client or client library to determine how it handles the\nLOAD DATA LOCAL INFILE statement.\n\nIf the LOAD DATA LOCAL INFILE statement is disabled by either the server or\nthe client and if the user attempts to execute it, then the server will cause\nthe statement to fail with the following error message:\n\nThe used command is not allowed with this MariaDB version\n\nNote that it is not entirely accurate to say that the MariaDB version does not\nsupport the command. It would be more accurate to say that the MariaDB\nconfiguration does not support the command. See MDEV-20500 for more\ninformation.\n\nFrom MariaDB 10.5.2, the error message is more accurate:\n\nThe used command is not allowed because the MariaDB server or client \n has disabled the local infile capability\n\nREPLACE and IGNORE\n------------------\n\nIf you load data from a file into a table that already contains data and has a\nprimary key, you may encounter issues where the statement attempts to insert a\nrow with a primary key that already exists. When this happens, the statement\nfails with Error 1064, protecting the data already on the table. If you want\nMariaDB to overwrite duplicates, use the REPLACE keyword.\n\nThe REPLACE keyword works like the REPLACE statement. Here, the statement\nattempts to load the data from the file. If the row does not exist, it adds it\nto the table. If the row contains an existing primary key, it replaces the\ntable data. That is, in the event of a conflict, it assumes the file contains\nthe desired row.\n\nThis operation can cause a degradation in load speed by a factor of 20 or more\nif the part that has already been loaded is larger than the capacity of the\nInnoDB Buffer Pool. This happens because it causes a lot of turnaround in the\nbuffer pool.\n\nUse the IGNORE keyword when you want to skip any rows that contain a\nconflicting primary key. Here, the statement attempts to load the data from\nthe file. If the row does not exist, it adds it to the table. If the row\ncontains an existing primary key, it ignores the addition request and moves on\nto the next. That is, in the event of a conflict, it assumes the table\ncontains the desired row.\n\nCharacter-sets\n--------------\n\nWhen the statement opens the file, it attempts to read the contents using the\ndefault character-set, as defined by the character_set_database system\nvariable.\n\nIn the cases where the file was written using a character-set other than the\ndefault, you can specify the character-set to use with the CHARACTER SET\nclause in the statement. It ignores character-sets specified by the SET NAMES\nstatement and by the character_set_client system variable. Setting the\nCHARACTER SET clause to a value of binary indicates \"no conversion.\"\n\nThe statement interprets all fields in the file as having the same\ncharacter-set, regardless of the column data type. To properly interpret file\ncontents, you must ensure that it was written with the correct character-set.\nIf you write a data file with mariadb-dump -T or with the SELECT INTO OUTFILE\nstatement with the mariadb client, be sure to use the --default-character-set\noption, so that the output is written with the desired character-set.\n\nWhen using mixed character sets, use the CHARACTER SET clause in both SELECT\nINTO OUTFILE and LOAD DATA INFILE to ensure that MariaDB correctly interprets\nthe escape sequences.\n\nThe character_set_filesystem system variable controls the interpretation of\nthe filename.\n\nIt is currently not possible to load data files that use the ucs2 character\nset.\n\nPreprocessing Inputs\n--------------------\n\ncol_name_or_user_var can be a column name, or a user variable. In the case of\na variable, the SET statement can be used to preprocess the value before\nloading into the table.\n\nPriority and Concurrency\n------------------------\n\nIn storage engines that perform table-level locking (MyISAM, MEMORY and\nMERGE), using the LOW_PRIORITY keyword, MariaDB delays insertions until no\nother clients are reading from the table. Alternatively, when using the MyISAM\nstorage engine, you can use the CONCURRENT keyword to perform concurrent\ninsertion.\n\nThe LOW_PRIORITY and CONCURRENT keywords are mutually exclusive. They cannot\nbe used in the same statement.\n\nProgress Reporting\n------------------\n\nThe LOAD DATA INFILE statement supports progress reporting. You may find this\nuseful when dealing with long-running operations. Using another client you can\nissue a SHOW PROCESSLIST query to check the progress of the data load.\n\nUsing mariadb-import\n--------------------\n\nMariaDB ships with a separate utility for loading data from files:\nmariadb-import (or mysqlimport before MariaDB 10.5). It operates by sending\nLOAD DATA INFILE statements to the server.\n\nUsing mariadb-import you can compress the file using the --compress option, to\nget better performance over slow networks, providing both the client and\nserver support the compressed protocol. Use the --local option to load from\nthe local file system.\n\nIndexing\n--------\n\nIn cases where the storage engine supports ALTER TABLE... DISABLE KEYS\nstatements (MyISAM and Aria), the LOAD DATA INFILE statement automatically\ndisables indexes during the execution.\n\nExamples\n--------\n\nYou have a file with this content (note the the separator is \',\', not tab,\nwhich is the default):\n\n2,2\n3,3\n4,4\n5,5\n6,8\n\nCREATE TABLE t1 (a int, b int, c int, d int, PRIMARY KEY (a));\nLOAD DATA LOCAL INFILE \n \'/tmp/loaddata7.dat\' INTO TABLE t1 FIELDS TERMINATED BY \',\' (a,b) SET c=a+b;\nSELECT * FROM t1;\n+------+------+------+\n| a | b | c |\n+------+------+------+\n| 2 | 2 | 4 |\n| 3 | 3 | 6 |\n| 4 | 4 | 8 |\n| 5 | 5 | 10 |\n| 6 | 8 | 14 |\n+------+------+------+\n\nAnother example, given the following data (the separator is a tab):\n\n1 a\n2 b\n\nThe value of the first column is doubled before loading:\n\nLOAD DATA INFILE \'ld.txt\' INTO TABLE ld (@i,v) SET i=@i*2;\n\nSELECT * FROM ld;\n+------+------+\n| i | v |\n+------+------+\n| 2 | a |\n| 4 | b |\n+------+------+\n\nURL: https://mariadb.com/kb/en/load-data-infile/','','https://mariadb.com/kb/en/load-data-infile/'), (462,'DO',27,'Syntax\n------\n\nDO expr [, expr] ...\n\nDescription\n-----------\n\nDO executes the expressions but does not return any results. In most respects,\nDO is shorthand for SELECT expr, ..., but has the advantage that it is\nslightly faster when you do not care about the result.\n\nDO is useful primarily with functions that have side effects, such as\nRELEASE_LOCK().\n\nURL: https://mariadb.com/kb/en/do/','','https://mariadb.com/kb/en/do/'), (466,'Useful MariaDB Queries',27,'This page is intended to be a quick reference of commonly-used and/or useful\nqueries in MariaDB.\n\nCreating a Table\n----------------\n\nCREATE TABLE t1 ( a INT );\nCREATE TABLE t2 ( b INT );\nCREATE TABLE student_tests (\n name CHAR(10), test CHAR(10), \n score TINYINT, test_date DATE\n);\n\nSee CREATE TABLE for more.\n\nInserting Records\n-----------------\n\nINSERT INTO t1 VALUES (1), (2), (3);\nINSERT INTO t2 VALUES (2), (4);\n\nINSERT INTO student_tests \n (name, test, score, test_date) VALUES\n (\'Chun\', \'SQL\', 75, \'2012-11-05\'), \n (\'Chun\', \'Tuning\', 73, \'2013-06-14\'),\n (\'Esben\', \'SQL\', 43, \'2014-02-11\'), \n (\'Esben\', \'Tuning\', 31, \'2014-02-09\'), \n (\'Kaolin\', \'SQL\', 56, \'2014-01-01\'),\n (\'Kaolin\', \'Tuning\', 88, \'2013-12-29\'), \n (\'Tatiana\', \'SQL\', 87, \'2012-04-28\'), \n (\'Tatiana\', \'Tuning\', 83, \'2013-09-30\');\n\nSee INSERT for more.\n\nUsing AUTO_INCREMENT\n--------------------\n\nThe AUTO_INCREMENT attribute is used to automatically generate a unique\nidentity for new rows.\n\nCREATE TABLE student_details (\n id INT NOT NULL AUTO_INCREMENT, name CHAR(10), \n date_of_birth DATE, PRIMARY KEY (id)\n);\n\nWhen inserting, the id field can be omitted, and is automatically created.\n\nINSERT INTO student_details (name,date_of_birth) VALUES \n (\'Chun\', \'1993-12-31\'), \n (\'Esben\',\'1946-01-01\'),\n (\'Kaolin\',\'1996-07-16\'),\n (\'Tatiana\', \'1988-04-13\');\n\nSELECT * FROM student_details;\n+----+---------+---------------+\n| id | name | date_of_birth |\n+----+---------+---------------+\n| 1 | Chun | 1993-12-31 |\n| 2 | Esben | 1946-01-01 |\n| 3 | Kaolin | 1996-07-16 |\n| 4 | Tatiana | 1988-04-13 |\n+----+---------+---------------+\n\nSee AUTO_INCREMENT for more.\n\nQuerying from two tables on a common value\n------------------------------------------\n\nSELECT * FROM t1 INNER JOIN t2 ON t1.a = t2.b;\n\nThis kind of query is called a join - see JOINS for more.\n\nFinding the Maximum Value\n-------------------------\n\nSELECT MAX(a) FROM t1;\n+--------+\n| MAX(a) |\n+--------+\n| 3 |\n+--------+\n\nSee the MAX() function for more, as well as Finding the maximum value and\ngrouping the results below for a more practical example.\n\nFinding the Minimum Value\n-------------------------\n\nSELECT MIN(a) FROM t1;\n+--------+\n| MIN(a) |\n+--------+\n| 1 |\n+--------+\n\nSee the MIN() function for more.\n\nFinding the Average Value\n-------------------------\n\nSELECT AVG(a) FROM t1;\n+--------+\n| AVG(a) |\n+--------+\n| 2.0000 |\n+--------+\n\nSee the AVG() function for more.\n\nFinding the Maximum Value and Grouping the Results\n--------------------------------------------------\n\nSELECT name, MAX(score) FROM student_tests GROUP BY name;\n+---------+------------+\n| name | MAX(score) |\n+---------+------------+\n| Chun | 75 |\n| Esben | 43 |\n| Kaolin | 88 |\n| Tatiana | 87 |\n+---------+------------+\n\nSee the MAX() function for more.\n\nOrdering Results\n----------------\n\nSELECT name, test, score FROM student_tests ORDER BY score DESC;\n+---------+--------+-------+\n| name | test | score |\n+---------+--------+-------+\n| Kaolin | Tuning | 88 |\n| Tatiana | SQL | 87 |\n| Tatiana | Tuning | 83 |\n| Chun | SQL | 75 |\n| Chun | Tuning | 73 |\n| Kaolin | SQL | 56 |\n| Esben | SQL | 43 |\n| Esben | Tuning | 31 |\n+---------+--------+-------+\n\nSee ORDER BY for more.\n\nFinding the Row with the Minimum of a Particular Column\n-------------------------------------------------------\n\nIn this example, we want to find the lowest test score for any student.\n\nSELECT name,test, score FROM student_tests WHERE score=(SELECT MIN(score) FROM\nstudent);\n+-------+--------+-------+\n| name | test | score |\n+-------+--------+-------+\n| Esben | Tuning | 31 |\n+-------+--------+-------+\n\nFinding Rows with the Maximum Value of a Column by Group\n--------------------------------------------------------\n\nThis example returns the best test results of each student:\n\nSELECT name, test, score FROM student_tests st1 WHERE score = (\n SELECT MAX(score) FROM student st2 WHERE st1.name = st2.name\n); \n+---------+--------+-------+\n| name | test | score |\n+---------+--------+-------+\n| Chun | SQL | 75 |\n| Esben | SQL | 43 |\n| Kaolin | Tuning | 88 |\n| Tatiana | SQL | 87 |\n+---------+--------+-------+\n\nCalculating Age\n---------------\n\nThe TIMESTAMPDIFF function can be used to calculate someone\'s age:\n\nSELECT CURDATE() AS today;\n+------------+\n| today |\n+------------+\n| 2014-02-17 |\n+------------+\n\nSELECT name, date_of_birth, TIMESTAMPDIFF(YEAR,date_of_birth,\'2014-08-02\') AS\nage \n FROM student_details;\n+---------+---------------+------+\n| name | date_of_birth | age |\n+---------+---------------+------+\n| Chun | 1993-12-31 | 20 |\n| Esben | 1946-01-01 | 68 |\n| Kaolin | 1996-07-16 | 18 |\n| Tatiana | 1988-04-13 | 26 |\n+---------+---------------+------+\n\nSee TIMESTAMPDIFF() for more.\n\nUsing User-defined Variables\n----------------------------\n\nThis example sets a user-defined variable with the average test score, and\nthen uses it in a later query to return all results above the average.\n\nSELECT @avg_score:= AVG(score) FROM student_tests;\n+-------------------------+\n| @avg_score:= AVG(score) |\n+-------------------------+\n| 67.000000000 |\n+-------------------------+\n\nSELECT * FROM student_tests WHERE score > @avg_score;\n+---------+--------+-------+------------+\n| name | test | score | test_date |\n+---------+--------+-------+------------+\n| Chun | SQL | 75 | 2012-11-05 |\n| Chun | Tuning | 73 | 2013-06-14 |\n| Kaolin | Tuning | 88 | 2013-12-29 |\n| Tatiana | SQL | 87 | 2012-04-28 |\n| Tatiana | Tuning | 83 | 2013-09-30 |\n+---------+--------+-------+------------+\n\nUser-defined variables can also be used to add an incremental counter to a\nresultset:\n\nSET @count = 0;\n\nSELECT @count := @count + 1 AS counter, name, date_of_birth FROM\nstudent_details;\n+---------+---------+---------------+\n| counter | name | date_of_birth |\n+---------+---------+---------------+\n| 1 | Chun | 1993-12-31 |\n| 2 | Esben | 1946-01-01 |\n| 3 | Kaolin | 1996-07-16 |\n| 4 | Tatiana | 1988-04-13 |\n+---------+---------+---------------+\n\nSee User-defined Variables for more.\n\nView Tables in Order of Size\n----------------------------\n\nReturns a list of all tables in the database, ordered by size:\n\nSELECT table_schema as `DB`, table_name AS `Table`, \n ROUND(((data_length + index_length) / 1024 / 1024), 2) `Size (MB)`\n FROM information_schema.TABLES\n ORDER BY (data_length + index_length) DESC;\n\n+--------------------+---------------------------------------+-----------+\n| DB | Table | Size (MB) |\n+--------------------+---------------------------------------+-----------+\n| wordpress | wp_simple_history_contexts | 7.05 |\n| wordpress | wp_posts | 6.59 |\n| wordpress | wp_simple_history | 3.05 |\n| wordpress | wp_comments | 2.73 |\n| wordpress | wp_commentmeta | 2.47 |\n| wordpress | wp_simple_login_log | 2.03 |\n...\n\nRemoving Duplicates\n-------------------\n\nMariaDB starting with 10.3\n--------------------------\nThe following syntax is only valid MariaDB 10.3 and beyond:\n\nThis example assumes there\'s a unique ID, but that all other fields are\nidentical. In the example below, there are 4 records, 3 of which are\nduplicates, so two of the three duplicates need to be removed. The\nintermediate SELECT is not necessary, but demonstrates what is being returned.\n\nCREATE TABLE t (id INT, f1 VARCHAR(2));\n\nINSERT INTO t VALUES (1,\'a\'), (2,\'a\'), (3,\'b\'), (4,\'a\');\n\nSELECT * FROM t t1, t t2 WHERE t1.f1=t2.f1 AND t1.id<>t2.id AND t1.id=(\n SELECT MAX(id) FROM t tab WHERE tab.f1=t1.f1\n);\n+------+------+------+------+\n| id | f1 | id | f1 |\n+------+------+------+------+\n| 4 | a | 1 | a |\n| 4 | a | 2 | a |\n+------+------+------+------+\n\nDELETE FROM t WHERE id IN (\n SELECT t2.id FROM t t1, t t2 WHERE t1.f1=t2.f1 AND t1.id<>t2.id AND t1.id=(\n SELECT MAX(id) FROM t tab WHERE tab.f1=t1.f1\n )\n);\nQuery OK, 2 rows affected (0.120 sec)\n\nSELECT * FROM t;\n+------+------+\n| id | f1 |\n+------+------+\n| 3 | b |\n| 4 | a |\n+------+------\n\nURL: https://mariadb.com/kb/en/useful-mariadb-queries/','','https://mariadb.com/kb/en/useful-mariadb-queries/'), (470,'EXPLAIN',28,'Syntax\n------\n\nEXPLAIN tbl_name [col_name | wild]\n\nOr\n\nEXPLAIN [EXTENDED | PARTITIONS | FORMAT=JSON] \n {SELECT select_options | UPDATE update_options | DELETE delete_options}\n\nDescription\n-----------\n\nThe EXPLAIN statement can be used either as a synonym for DESCRIBE or as a way\nto obtain information about how MariaDB executes a SELECT, UPDATE or DELETE\nstatement:\n\n* \'EXPLAIN tbl_name\' is synonymous with \n \'DESCRIBE tbl_name\' or\n \'SHOW COLUMNS FROM tbl_name\'.\n* When you precede a SELECT, UPDATE or a DELETE statement with the keyword \n EXPLAIN, MariaDB displays information from the optimizer\n about the query execution plan. That is, MariaDB explains how it would\n process the SELECT, UPDATE or DELETE, including information about how tables\n are joined and in which order. EXPLAIN EXTENDED can be\n used to provide additional information.\n* EXPLAIN PARTITIONS is useful only when examining queries involving\npartitioned tables. For details, see Partition pruning and selection.\n* ANALYZE statement performs the query as well as producing EXPLAIN output,\nand provides actual as well as estimated statistics.\n* EXPLAIN output can be printed in the slow query log. See EXPLAIN in the Slow\nQuery Log for details.\n\nSHOW EXPLAIN shows the output of a running statement. In some cases, its\noutput can be closer to reality than EXPLAIN.\n\nThe ANALYZE statement runs a statement and returns information about its\nexecution plan. It also shows additional columns, to check how much the\noptimizer\'s estimation about filtering and found rows are close to reality.\n\nThere is an online EXPLAIN Analyzer that you can use to share EXPLAIN and\nEXPLAIN EXTENDED output with others.\n\nEXPLAIN can acquire metadata locks in the same way that SELECT does, as it\nneeds to know table metadata and, sometimes, data as well.\n\nColumns in EXPLAIN ... SELECT\n-----------------------------\n\n+--------------------------------------+--------------------------------------+\n| Column name | Description |\n+--------------------------------------+--------------------------------------+\n| id | Sequence number that shows in which |\n| | order tables are joined. |\n+--------------------------------------+--------------------------------------+\n| select_type | What kind of SELECT the table comes |\n| | from. |\n+--------------------------------------+--------------------------------------+\n| table | Alias name of table. Materialized |\n| | temporary tables for sub queries |\n| | are named |\n+--------------------------------------+--------------------------------------+\n| type | How rows are found from the table |\n| | (join type). |\n+--------------------------------------+--------------------------------------+\n| possible_keys | keys in table that could be used to |\n| | find rows in the table |\n+--------------------------------------+--------------------------------------+\n| key | The name of the key that is used to |\n| | retrieve rows. NULL is no key was |\n| | used. |\n+--------------------------------------+--------------------------------------+\n| key_len | How many bytes of the key that was |\n| | used (shows if we are using only |\n| | parts of the multi-column key). |\n+--------------------------------------+--------------------------------------+\n| ref | The reference that is used as the |\n| | key value. |\n+--------------------------------------+--------------------------------------+\n| rows | An estimate of how many rows we |\n| | will find in the table for each key |\n| | lookup. |\n+--------------------------------------+--------------------------------------+\n| Extra | Extra information about this join. |\n+--------------------------------------+--------------------------------------+\n\nHere are descriptions of the values for some of the more complex columns in\nEXPLAIN ... SELECT:\n\n\"Select_type\" Column\n--------------------\n\nThe select_type column can have the following values:\n\n+-----------------+-----------------------------------+-----------------------+\n| Value | Description | Comment |\n+-----------------+-----------------------------------+-----------------------+\n| DEPENDENT | The SUBQUERY is DEPENDENT. | |\n| SUBQUERY | | |\n+-----------------+-----------------------------------+-----------------------+\n| DEPENDENT UNION | The UNION is DEPENDENT. | |\n+-----------------+-----------------------------------+-----------------------+\n| DERIVED | The SELECT is DERIVED from the | |\n| | PRIMARY. | |\n+-----------------+-----------------------------------+-----------------------+\n| MATERIALIZED | The SUBQUERY is MATERIALIZED. | Materialized tables |\n| | | will be populated at |\n| | | first access and |\n| | | will be accessed by |\n| | | the primary key (= |\n| | | one key lookup). |\n| | | Number of rows in |\n| | | EXPLAIN shows the |\n| | | cost of populating |\n| | | the table |\n+-----------------+-----------------------------------+-----------------------+\n| PRIMARY | The SELECT is in the outermost | |\n| | query, but there is also a | |\n| | SUBQUERY within it. | |\n+-----------------+-----------------------------------+-----------------------+\n| SIMPLE | It is a simple SELECT query | |\n| | without any SUBQUERY or UNION. | |\n+-----------------+-----------------------------------+-----------------------+\n| SUBQUERY | The SELECT is a SUBQUERY of the | |\n| | PRIMARY. | |\n+-----------------+-----------------------------------+-----------------------+\n| UNCACHEABLE | The SUBQUERY is UNCACHEABLE. | |\n| SUBQUERY | | |\n+-----------------+-----------------------------------+-----------------------+\n| UNCACHEABLE | The UNION is UNCACHEABLE. | |\n| UNION | | |\n+-----------------+-----------------------------------+-----------------------+\n| UNION | The SELECT is a UNION of the | |\n| | PRIMARY. | |\n+-----------------+-----------------------------------+-----------------------+\n| UNION RESULT | The result of the UNION. | |\n+-----------------+-----------------------------------+-----------------------+\n| LATERAL DERIVED | The SELECT uses a Lateral | |\n| | Derived optimization | |\n+-----------------+-----------------------------------+-----------------------+\n\n\"Type\" Column\n-------------\n\nThis column contains information on how the table is accessed.\n\n+------------------------+---------------------------------------------------+\n| Value | Description |\n+------------------------+---------------------------------------------------+\n| ALL | A full table scan is done for the table (all |\n| | rows are read). This is bad if the table is |\n| | large and the table is joined against a previous |\n| | table! This happens when the optimizer could |\n| | not find any usable index to access rows. |\n+------------------------+---------------------------------------------------+\n| const | There is only one possibly matching row in the |\n| | table. The row is read before the optimization |\n| | phase and all columns in the table are treated |\n| | as constants. |\n+------------------------+---------------------------------------------------+\n| eq_ref | A unique index is used to find the rows. This is |\n| | the best possible plan to find the row. |\n+------------------------+---------------------------------------------------+\n| fulltext | A fulltext index is used to access the rows. |\n+------------------------+---------------------------------------------------+\n| index_merge | A \'range\' access is done for for several index |\n| | and the found rows are merged. The key column |\n| | shows which keys are used. |\n+------------------------+---------------------------------------------------+\n| index_subquery | This is similar as ref, but used for sub queries |\n| | that are transformed to key lookups. |\n+------------------------+---------------------------------------------------+\n| index | A full scan over the used index. Better than |\n| | ALL but still bad if index is large and the |\n| | table is joined against a previous table. |\n+------------------------+---------------------------------------------------+\n| range | The table will be accessed with a key over one |\n| | or more value ranges. |\n+------------------------+---------------------------------------------------+\n| ref_or_null | Like \'ref\' but in addition another search for |\n| | the \'null\' value is done if the first value was |\n| | not found. This happens usually with sub queries. |\n+------------------------+---------------------------------------------------+\n| ref | A non unique index or prefix of an unique index |\n| | is used to find the rows. Good if the prefix |\n| | doesn\'t match many rows. |\n+------------------------+---------------------------------------------------+\n| system | The table has 0 or 1 rows. |\n+------------------------+---------------------------------------------------+\n| unique_subquery | This is similar as eq_ref, but used for sub |\n| | queries that are transformed to key lookups |\n+------------------------+---------------------------------------------------+\n\n\"Extra\" Column\n--------------\n\nThis column consists of one or more of the following values, separated by \';\'\n\nNote that some of these values are detected after the optimization phase.\n\nThe optimization phase can do the following changes to the WHERE clause:\n\n* Add the expressions from the ON and USING clauses to the WHERE\n clause.\n* Constant propagation: If there is column=constant, replace all column\n instances with this constant.\n* Replace all columns from \'const\' tables with their values.\n* Remove the used key columns from the WHERE (as this will be tested as\n part of the key lookup).\n* Remove impossible constant sub expressions.\n For example WHERE \'(a=1 and a=2) OR b=1\' becomes \'b=1\'.\n* Replace columns with other columns that has identical values:\n Example: WHERE a=b and a=c may be treated\n as \'WHERE a=b and a=c and b=c\'.\n* Add extra conditions to detect impossible row conditions earlier. This\n happens mainly with OUTER JOIN where we in some cases add detection\n of NULL values in the WHERE (Part of \'Not exists\' optimization).\n This can cause an unexpected \'Using where\' in the Extra column.\n* For each table level we remove expressions that have already been tested when\n we read the previous row. Example: When joining tables t1 with t2\n using the following WHERE \'t1.a=1 and t1.a=t2.b\', we don\'t have to\n test \'t1.a=1\' when checking rows in t2 as we already know that this\n expression is true.\n\n+------------------------+---------------------------------------------------+\n| Value | Description |\n+------------------------+---------------------------------------------------+\n| const row not found | The table was a system table (a table with |\n| | should exactly one row), but no row was found. |\n+------------------------+---------------------------------------------------+\n| Distinct | If distinct optimization (remove duplicates) was |\n| | used. This is marked only for the last table in |\n| | the SELECT. |\n+------------------------+---------------------------------------------------+\n| Full scan on NULL key | The table is a part of the sub query and if the |\n| | value that is used to match the sub query will |\n| | be NULL, we will do a full table scan. |\n+------------------------+---------------------------------------------------+\n| Impossible HAVING | The used HAVING clause is always false so the |\n| | SELECT will return no rows. |\n+------------------------+---------------------------------------------------+\n| Impossible WHERE | The used WHERE clause is always false so the |\n| noticed after reading | SELECT will return no rows. This case was |\n| const tables. | detected after we had read all \'const\' tables |\n| | and used the column values as constant in the |\n| | WHERE clause. For example: WHERE const_column=5 |\n| | and const_column had a value of 4. |\n+------------------------+---------------------------------------------------+\n| Impossible WHERE | The used WHERE clause is always false so the |\n| | SELECT will return no rows. For example: WHERE |\n| | 1=2 |\n+------------------------+---------------------------------------------------+\n| No matching min/max | During early optimization of MIN()/MAX() values |\n| row | it was detected that no row could match the |\n| | WHERE clause. The MIN()/MAX() function will |\n| | return NULL. |\n+------------------------+---------------------------------------------------+\n| no matching row in | The table was a const table (a table with only |\n| const table | one possible matching row), but no row was found. |\n+------------------------+---------------------------------------------------+\n| No tables used | The SELECT was a sub query that did not use any |\n| | tables. For example a there was no FROM clause |\n| | or a FROM DUAL clause. |\n+------------------------+---------------------------------------------------+\n| Not exists | Stop searching after more row if we find one |\n| | single matching row. This optimization is used |\n| | with LEFT JOIN where one is explicitly searching |\n| | for rows that doesn\'t exists in the LEFT JOIN |\n| | TABLE. Example: SELECT * FROM t1 LEFT JOIN t2 on |\n| | (...) WHERE t2.not_null_column IS NULL. As |\n| | t2.not_null_column can only be NULL if there was |\n| | no matching row for on condition, we can stop |\n| | searching if we find a single matching row. |\n+------------------------+---------------------------------------------------+\n| Open_frm_only | For information_schema tables. Only the frm |\n| | (table definition file was opened) was opened |\n| | for each matching row. |\n+------------------------+---------------------------------------------------+\n| Open_full_table | For information_schema tables. A full table open |\n| | for each matching row is done to retrieve the |\n| | requested information. (Slow) |\n+------------------------+---------------------------------------------------+\n| Open_trigger_only | For information_schema tables. Only the trigger |\n| | file definition was opened for each matching row. |\n+------------------------+---------------------------------------------------+\n| Range checked for | This only happens when there was no good default |\n| each record (index | index to use but there may some index that could |\n| map: ...) | be used when we can treat all columns from |\n| | previous table as constants. For each row |\n| | combination the optimizer will decide which |\n| | index to use (if any) to fetch a row from this |\n| | table. This is not fast, but faster than a full |\n| | table scan that is the only other choice. The |\n| | index map is a bitmask that shows which index |\n| | are considered for each row condition. |\n+------------------------+---------------------------------------------------+\n| Scanned 0/1/all | For information_schema tables. Shows how many |\n| databases | times we had to do a directory scan. |\n+------------------------+---------------------------------------------------+\n| Select tables | All tables in the join was optimized away. This |\n| optimized away | happens when we are only using COUNT(*), MIN() |\n| | and MAX() functions in the SELECT and we where |\n| | able to replace all of these with constants. |\n+------------------------+---------------------------------------------------+\n| Skip_open_table | For information_schema tables. The queried table |\n| | didn\'t need to be opened. |\n+------------------------+---------------------------------------------------+\n| unique row not found | The table was detected to be a const table (a |\n| | table with only one possible matching row) |\n| | during the early optimization phase, but no row |\n| | was found. |\n+------------------------+---------------------------------------------------+\n| Using filesort | Filesort is needed to resolve the query. This |\n| | means an extra phase where we first collect all |\n| | columns to sort, sort them with a disk based |\n| | merge sort and then use the sorted set to |\n| | retrieve the rows in sorted order. If the column |\n| | set is small, we store all the columns in the |\n| | sort file to not have to go to the database to |\n| | retrieve them again. |\n+------------------------+---------------------------------------------------+\n| Using index | Only the index is used to retrieve the needed |\n| | information from the table. There is no need to |\n| | perform an extra seek to retrieve the actual |\n| | record. |\n+------------------------+---------------------------------------------------+\n| Using index condition | Like \'Using where\' but the where condition is |\n| | pushed down to the table engine for internal |\n| | optimization at the index level. |\n+------------------------+---------------------------------------------------+\n| Using index | Like \'Using index condition\' but in addition we |\n| condition(BKA) | use batch key access to retrieve rows. |\n+------------------------+---------------------------------------------------+\n| Using index for | The index is being used to resolve a GROUP BY or |\n| group-by | DISTINCT query. The rows are not read. This is |\n| | very efficient if the table has a lot of |\n| | identical index entries as duplicates are |\n| | quickly jumped over. |\n+------------------------+---------------------------------------------------+\n| Using intersect(...) | For index_merge joins. Shows which index are |\n| | part of the intersect. |\n+------------------------+---------------------------------------------------+\n| Using join buffer | We store previous row combinations in a row |\n| | buffer to be able to match each row against all |\n| | of the rows combinations in the join buffer at |\n| | one go. |\n+------------------------+---------------------------------------------------+\n| Using sort_union(...) | For index_merge joins. Shows which index are |\n| | part of the union. |\n+------------------------+---------------------------------------------------+\n| Using temporary | A temporary table is created to hold the result. |\n| | This typically happens if you are using GROUP |\n| | BY, DISTINCT or ORDER BY. |\n+------------------------+---------------------------------------------------+\n| Using where | A WHERE expression (in additional to the |\n| | possible key lookup) is used to check if the row |\n| | should be accepted. If you don\'t have \'Using |\n| | where\' together with a join type of ALL, you are |\n| | probably doing something wrong! |\n+------------------------+---------------------------------------------------+\n| Using where with | Like \'Using where\' but the where condition is |\n| pushed condition | pushed down to the table engine for internal |\n| | optimization at the row level. |\n+------------------------+---------------------------------------------------+\n| Using buffer | The UPDATE statement will first buffer the rows, |\n| | and then run the updates, rather than do updates |\n| | on the fly. See Using Buffer UPDATE Algorithm |\n| | for a detailed explanation. |\n+------------------------+---------------------------------------------------+\n\nEXPLAIN EXTENDED\n----------------\n\nThe EXTENDED keyword adds another column, filtered, to the output. This is a\npercentage estimate of the table rows that will be filtered by the condition.\n\nAn EXPLAIN EXTENDED will always throw a warning, as it adds extra Message\ninformation to a subsequent SHOW WARNINGS statement. This includes what the\nSELECT query would look like after optimizing and rewriting rules are applied\nand how the optimizer qualifies columns and tables.\n\nExamples\n--------\n\nAs synonym for DESCRIBE or SHOW COLUMNS FROM:\n\nDESCRIBE city;\n+------------+----------+------+-----+---------+----------------+\n| Field | Type | Null | Key | Default | Extra |\n+------------+----------+------+-----+---------+----------------+\n| Id | int(11) | NO | PRI | NULL | auto_increment |\n| Name | char(35) | YES | | NULL | |\n| Country | char(3) | NO | UNI | | |\n| District | char(20) | YES | MUL | | |\n| Population | int(11) | YES | | NULL | |\n+------------+----------+------+-----+---------+----------------+\n\nA simple set of examples to see how EXPLAIN can identify poor index usage:\n\nCREATE TABLE IF NOT EXISTS `employees_example` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n `first_name` varchar(30) NOT NULL,\n `last_name` varchar(40) NOT NULL,\n `position` varchar(25) NOT NULL,\n `home_address` varchar(50) NOT NULL,\n `home_phone` varchar(12) NOT NULL,\n `employee_code` varchar(25) NOT NULL,\n PRIMARY KEY (`id`),\n UNIQUE KEY `employee_code` (`employee_code`),\n KEY `first_name` (`first_name`,`last_name`)\n) ENGINE=Aria;\n\nINSERT INTO `employees_example` (`first_name`, `last_name`, `position`,\n`home_address`, `home_phone`, `employee_code`)\n VALUES\n (\'Mustapha\', \'Mond\', \'Chief Executive Officer\', \'692 Promiscuous Plaza\',\n\'326-555-3492\', \'MM1\'),\n (\'Henry\', \'Foster\', \'Store Manager\', \'314 Savage Circle\', \'326-555-3847\',\n\'HF1\'),\n (\'Bernard\', \'Marx\', \'Cashier\', \'1240 Ambient Avenue\', \'326-555-8456\', \'BM1\'),\n (\'Lenina\', \'Crowne\', \'Cashier\', \'281 Bumblepuppy Boulevard\', \'328-555-2349\',\n\'LC1\'),\n (\'Fanny\', \'Crowne\', \'Restocker\', \'1023 Bokanovsky Lane\', \'326-555-6329\',\n\'FC1\'),\n (\'Helmholtz\', \'Watson\', \'Janitor\', \'944 Soma Court\', \'329-555-2478\', \'HW1\');\n\nSHOW INDEXES FROM employees_example;\n+-------------------+------------+---------------+--------------+--------------\n+-----------+-------------+----------+--------+------+------------+---------+--\n------------+\n| Table | Non_unique | Key_name | Seq_in_index | Column_name \n | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |\nIndex_comment |\n+-------------------+------------+---------------+--------------+--------------\n+-----------+-------------+----------+--------+------+------------+---------+--\n------------+\n| employees_example | 0 | PRIMARY | 1 | id \n | A | 7 | NULL | NULL | | BTREE | |\n |\n| employees_example | 0 | employee_code | 1 |\nemployee_code | A | 7 | NULL | NULL | | BTREE \n | | |\n| employees_example | 1 | first_name | 1 | first_name \n | A | NULL | NULL | NULL | | BTREE | |\n |\n| employees_example | 1 | first_name | 2 | last_name \n | A | NULL | NULL | NULL | | BTREE | |\n |\n+-------------------+------------+---------------+--------------+--------------\n+-----------+-------------+----------+--------+------+------------+---------+--\n------------+\n\nSELECT on a primary key:\n\nEXPLAIN SELECT * FROM employees_example WHERE id=1;\n+------+-------------+-------------------+-------+---------------+---------+---\n-----+-------+------+-------+\n| id | select_type | table | type | possible_keys | key |\nkey_len | ref | rows | Extra |\n+------+-------------+-------------------+-------+---------------+---------+---\n-----+-------+------+-------+\n| 1 | SIMPLE | employees_example | const | PRIMARY | PRIMARY | 4\n | const | 1 | |\n+------+-------------+-------------------+-------+---------------+---------+---\n-----+-------+------+-------+\n\nThe type is const, which means that only one possible result could be\nreturned. Now, returning the same record but searching by their phone number:\n\nEXPLAIN SELECT * FROM employees_example WHERE home_phone=\'326-555-3492\';\n+------+-------------+-------------------+------+---------------+------+-------\n-+------+------+-------------+\n| id | select_type | table | type | possible_keys | key |\nkey_len | ref | rows | Extra |\n+------+-------------+-------------------+------+---------------+------+-------\n-+------+------+-------------+\n| 1 | SIMPLE | employees_example | ALL | NULL | NULL | NULL \n | NULL | 6 | Using where |\n+------+-------------+-------------------+------+---------------+------+-------\n-+------+------+-------------+\n\nHere, the type is All, which means no index could be used. Looking at the rows\ncount, a full table scan (all six rows) had to be performed in order to\nretrieve the record. If it\'s a requirement to search by phone number, an index\nwill have to be created.\n\nSHOW EXPLAIN example:\n\nSHOW EXPLAIN FOR 1;\n+------+-------------+-------+-------+---------------+------+---------+------+-\n-------+-------------+\n| id | select_type | table | type | possible_keys | key | key_len | ref |\nrows | Extra |\n+------+-------------+-------+-------+---------------+------+---------+------+-\n-------+-------------+\n| 1 | SIMPLE | tbl | index | NULL | a | 5 | NULL |\n1000107 | Using index |\n+------+-------------+-------+-------+---------------+------+---------+------+-\n-------+-------------+\n1 row in set, 1 warning (0.00 sec)\n\nExample of ref_or_null Optimization\n-----------------------------------\n\nSELECT * FROM table_name\n WHERE key_column=expr OR key_column IS NULL;\n\nref_or_null is something that often happens when you use subqueries with NOT\nIN as then one has to do an extra check for NULL values if the first value\ndidn\'t have a matching row.\n\nURL: https://mariadb.com/kb/en/explain/','','https://mariadb.com/kb/en/explain/'), (471,'EXPLAIN ANALYZE',28,'The syntax for the EXPLAIN ANALYZE feature was changed to ANALYZE statement,\navailable since MariaDB 10.1.0. See ANALYZE statement.\n\nURL: https://mariadb.com/kb/en/explain-analyze/','','https://mariadb.com/kb/en/explain-analyze/'), (476,'Binary Literals',29,'Binary literals can be written in one of the following formats: b\'value\',\nB\'value\' or 0bvalue, where value is a string composed by 0 and 1 digits.\n\nBinary literals are interpreted as binary strings, and are convenient to\nrepresent VARBINARY, BINARY or BIT values.\n\nTo convert a binary literal into an integer, just add 0.\n\nExamples\n--------\n\nPrinting the value as a binary string:\n\nSELECT 0b1000001;\n+-----------+\n| 0b1000001 |\n+-----------+\n| A |\n+-----------+\n\nConverting the same value into a number:\n\nSELECT 0b1000001+0;\n+-------------+\n| 0b1000001+0 |\n+-------------+\n| 65 |\n+-------------+\n\nURL: https://mariadb.com/kb/en/binary-literals/','','https://mariadb.com/kb/en/binary-literals/'), (201,'DECODE_HISTOGRAM',17,'Syntax\n------\n\nDECODE_HISTOGRAM(hist_type,histogram)\n\nDescription\n-----------\n\nReturns a string of comma separated numeric values corresponding to a\nprobability distribution represented by the histogram of type hist_type\n(SINGLE_PREC_HB or DOUBLE_PREC_HB). The hist_type and histogram would be\ncommonly used from the mysql.column_stats table.\n\nSee Histogram Based Statistics for details.\n\nExamples\n--------\n\nCREATE TABLE origin (\n i INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,\n v INT UNSIGNED NOT NULL\n);\n\nINSERT INTO origin(v) VALUES \n (1),(2),(3),(4),(5),(10),(20),\n (30),(40),(50),(60),(70),(80),\n (90),(100),(200),(400),(800);\n\nSET histogram_size=10,histogram_type=SINGLE_PREC_HB;\n\nANALYZE TABLE origin PERSISTENT FOR ALL;\n+-------------+---------+----------+-----------------------------------------+\n| Table | Op | Msg_type | Msg_text |\n+-------------+---------+----------+-----------------------------------------+\n| test.origin | analyze | status | Engine-independent statistics collected |\n| test.origin | analyze | status | OK |\n+-------------+---------+----------+-----------------------------------------+\n\nSELECT db_name,table_name,column_name,hist_type,\n hex(histogram),decode_histogram(hist_type,histogram)\n FROM mysql.column_stats WHERE db_name=\'test\' and table_name=\'origin\';\n+---------+------------+-------------+----------------+----------------------+-\n-----------------------------------------------------------------+\n| db_name | table_name | column_name | hist_type | hex(histogram) |\ndecode_histogram(hist_type,histogram) |\n+---------+------------+-------------+----------------+----------------------+-\n-----------------------------------------------------------------+\n| test | origin | i | SINGLE_PREC_HB | 0F2D3C5A7887A5C3D2F0 |\n0.059,0.118,0.059,0.118,0.118,0.059,0.118,0.118,0.059,0.118,0.059 |\n| test | origin | v | SINGLE_PREC_HB | 000001060C0F161C1F7F |\n0.000,0.000,0.004,0.020,0.024,0.012,0.027,0.024,0.012,0.376,0.502 |\n+---------+------------+-------------+----------------+----------------------+-\n-----------------------------------------------------------------+\n\nSET histogram_size=20,histogram_type=DOUBLE_PREC_HB;\n\nANALYZE TABLE origin PERSISTENT FOR ALL;\n+-------------+---------+----------+-----------------------------------------+\n| Table | Op | Msg_type | Msg_text |\n+-------------+---------+----------+-----------------------------------------+\n| test.origin | analyze | status | Engine-independent statistics collected |\n| test.origin | analyze | status | OK |\n+-------------+---------+----------+-----------------------------------------+\n\nSELECT db_name,table_name,column_name,\n hist_type,hex(histogram),decode_histogram(hist_type,histogram)\n FROM mysql.column_stats WHERE db_name=\'test\' and table_name=\'origin\';\n+---------+------------+-------------+----------------+------------------------\n-----------------+-------------------------------------------------------------\n---------------------------+\n| db_name | table_name | column_name | hist_type | hex(histogram) \n | decode_histogram(hist_type,histogram)\n |\n+---------+------------+-------------+----------------+------------------------\n-----------------+-------------------------------------------------------------\n---------------------------+\n| test | origin | i | DOUBLE_PREC_HB |\n0F0F2D2D3C3C5A5A78788787A5A5C3C3D2D2F0F0 |\n0.05882,0.11765,0.05882,0.11765,0.11765,0.05882,0.11765,0.11765,0.05882,0.11765\n0.05882 |\n| test | origin | v | DOUBLE_PREC_HB |\n5200F600480116067E0CB30F1B16831CB81FD67F |\n0.00125,0.00250,0.00125,0.01877,0.02502,0.01253,0.02502,0.02502,0.01253,0.37546\n0.50063 |\n\nURL: https://mariadb.com/kb/en/decode_histogram/','','https://mariadb.com/kb/en/decode_histogram/'), (206,'PROCEDURE ANALYSE',17,'Syntax\n------\n\nanalyse([max_elements[,max_memory]])\n\nDescription\n-----------\n\nThis procedure is defined in the sql/sql_analyse.cc file. It examines the\nresult from a query and returns an analysis of the results that suggests\noptimal data types for each column. To obtain this analysis, append PROCEDURE\nANALYSE to the end of a SELECT statement:\n\nSELECT ... FROM ... WHERE ... PROCEDURE ANALYSE([max_elements,[max_memory]])\n\nFor example:\n\nSELECT col1, col2 FROM table1 PROCEDURE ANALYSE(10, 2000);\n\nThe results show some statistics for the values returned by the query, and\npropose an optimal data type for the columns. This can be helpful for checking\nyour existing tables, or after importing new data. You may need to try\ndifferent settings for the arguments so that PROCEDURE ANALYSE() does not\nsuggest the ENUM data type when it is not appropriate.\n\nThe arguments are optional and are used as follows:\n\n* max_elements (default 256) is the maximum number of distinct values that\nanalyse notices per column. This is used by analyse to check whether the\noptimal data type should be of type ENUM; if there are more than max_elements\ndistinct values, then ENUM is not a suggested type.\n* max_memory (default 8192) is the maximum amount of memory that analyse\nshould allocate per column while trying to find all distinct values.\n\nURL: https://mariadb.com/kb/en/procedure-analyse/','','https://mariadb.com/kb/en/procedure-analyse/'), (477,'Boolean Literals',29,'In MariaDB, FALSE is a synonym of 0 and TRUE is a synonym of 1. These\nconstants are case insensitive, so TRUE, True, and true are equivalent.\n\nThese terms are not synonyms of 0 and 1 when used with the IS operator. So,\nfor example, 10 IS TRUE returns 1, while 10 = TRUE returns 0 (because 1 != 10).\n\nThe IS operator accepts a third constant exists: UNKNOWN. It is always a\nsynonym of NULL.\n\nTRUE and FALSE are reserved words, while UNKNOWN is not.\n\nURL: https://mariadb.com/kb/en/sql-language-structure-boolean-literals/','','https://mariadb.com/kb/en/sql-language-structure-boolean-literals/'), (483,'Reserved Words',29,'The following is a list of all reserved words in MariaDB.\n\nReserved words cannot be used as Identifiers, unless they are quoted.\n\nThe definitive list of reserved words for each version can be found by\nexamining the sql/lex.h and sql/sql_yacc.yy files.\n\nReserved Words\n--------------\n\n+--------------------------------------------+--------------------------------+\n| Keyword | Notes |\n+--------------------------------------------+--------------------------------+\n| ACCESSIBLE | |\n+--------------------------------------------+--------------------------------+\n| ADD | |\n+--------------------------------------------+--------------------------------+\n| ALL | |\n+--------------------------------------------+--------------------------------+\n| ALTER | |\n+--------------------------------------------+--------------------------------+\n| ANALYZE | |\n+--------------------------------------------+--------------------------------+\n| AND | |\n+--------------------------------------------+--------------------------------+\n| AS | |\n+--------------------------------------------+--------------------------------+\n| ASC | |\n+--------------------------------------------+--------------------------------+\n| ASENSITIVE | |\n+--------------------------------------------+--------------------------------+\n| BEFORE | |\n+--------------------------------------------+--------------------------------+\n| BETWEEN | |\n+--------------------------------------------+--------------------------------+\n| BIGINT | |\n+--------------------------------------------+--------------------------------+\n| BINARY | |\n+--------------------------------------------+--------------------------------+\n| BLOB | |\n+--------------------------------------------+--------------------------------+\n| BOTH | |\n+--------------------------------------------+--------------------------------+\n| BY | |\n+--------------------------------------------+--------------------------------+\n| CALL | |\n+--------------------------------------------+--------------------------------+\n| CASCADE | |\n+--------------------------------------------+--------------------------------+\n| CASE | |\n+--------------------------------------------+--------------------------------+\n| CHANGE | |\n+--------------------------------------------+--------------------------------+\n| CHAR | |\n+--------------------------------------------+--------------------------------+\n| CHARACTER | |\n+--------------------------------------------+--------------------------------+\n| CHECK | |\n+--------------------------------------------+--------------------------------+\n| COLLATE | |\n+--------------------------------------------+--------------------------------+\n| COLUMN | |\n+--------------------------------------------+--------------------------------+\n| CONDITION | |\n+--------------------------------------------+--------------------------------+\n| CONSTRAINT | |\n+--------------------------------------------+--------------------------------+\n| CONTINUE | |\n+--------------------------------------------+--------------------------------+\n| CONVERT | |\n+--------------------------------------------+--------------------------------+\n| CREATE | |\n+--------------------------------------------+--------------------------------+\n| CROSS | |\n+--------------------------------------------+--------------------------------+\n| CURRENT_DATE | |\n+--------------------------------------------+--------------------------------+\n| CURRENT_ROLE | |\n+--------------------------------------------+--------------------------------+\n| CURRENT_TIME | |\n+--------------------------------------------+--------------------------------+\n| CURRENT_TIMESTAMP | |\n+--------------------------------------------+--------------------------------+\n| CURRENT_USER | |\n+--------------------------------------------+--------------------------------+\n| CURSOR | |\n+--------------------------------------------+--------------------------------+\n| DATABASE | |\n+--------------------------------------------+--------------------------------+\n| DATABASES | |\n+--------------------------------------------+--------------------------------+\n| DAY_HOUR | |\n+--------------------------------------------+--------------------------------+\n| DAY_MICROSECOND | |\n+--------------------------------------------+--------------------------------+\n| DAY_MINUTE | |\n+--------------------------------------------+--------------------------------+\n| DAY_SECOND | |\n+--------------------------------------------+--------------------------------+\n| DEC | |\n+--------------------------------------------+--------------------------------+\n| DECIMAL | |\n+--------------------------------------------+--------------------------------+\n| DECLARE | |\n+--------------------------------------------+--------------------------------+\n| DEFAULT | |\n+--------------------------------------------+--------------------------------+\n| DELAYED | |\n+--------------------------------------------+--------------------------------+\n| DELETE | |\n+--------------------------------------------+--------------------------------+\n| DELETE_DOMAIN_ID | |\n+--------------------------------------------+--------------------------------+\n| DESC | |\n+--------------------------------------------+--------------------------------+\n| DESCRIBE | |\n+--------------------------------------------+--------------------------------+\n| DETERMINISTIC | |\n+--------------------------------------------+--------------------------------+\n| DISTINCT | |\n+--------------------------------------------+--------------------------------+\n| DISTINCTROW | |\n+--------------------------------------------+--------------------------------+\n| DIV | |\n+--------------------------------------------+--------------------------------+\n| DO_DOMAIN_IDS | |\n+--------------------------------------------+--------------------------------+\n| DOUBLE | |\n+--------------------------------------------+--------------------------------+\n| DROP | |\n+--------------------------------------------+--------------------------------+\n| DUAL | |\n+--------------------------------------------+--------------------------------+\n| EACH | |\n+--------------------------------------------+--------------------------------+\n| ELSE | |\n+--------------------------------------------+--------------------------------+\n| ELSEIF | |\n+--------------------------------------------+--------------------------------+\n| ENCLOSED | |\n+--------------------------------------------+--------------------------------+\n| ESCAPED | |\n+--------------------------------------------+--------------------------------+\n| EXCEPT | Added in MariaDB 10.3.0 |\n+--------------------------------------------+--------------------------------+\n| EXISTS | |\n+--------------------------------------------+--------------------------------+\n| EXIT | |\n+--------------------------------------------+--------------------------------+\n| EXPLAIN | |\n+--------------------------------------------+--------------------------------+\n| FALSE | |\n+--------------------------------------------+--------------------------------+\n| FETCH | |\n+--------------------------------------------+--------------------------------+\n| FLOAT | |\n+--------------------------------------------+--------------------------------+\n| FLOAT4 | |\n+--------------------------------------------+--------------------------------+\n| FLOAT8 | |\n+--------------------------------------------+--------------------------------+\n| FOR | |\n+--------------------------------------------+--------------------------------+\n| FORCE | |\n+--------------------------------------------+--------------------------------+\n| FOREIGN | |\n+--------------------------------------------+--------------------------------+\n| FROM | |\n+--------------------------------------------+--------------------------------+\n| FULLTEXT | |\n+--------------------------------------------+--------------------------------+\n| GENERAL | |\n+--------------------------------------------+--------------------------------+\n| GRANT | |\n+--------------------------------------------+--------------------------------+\n| GROUP | |\n+--------------------------------------------+--------------------------------+\n| HAVING | |\n+--------------------------------------------+--------------------------------+\n| HIGH_PRIORITY | |\n+--------------------------------------------+--------------------------------+\n| HOUR_MICROSECOND | |\n+--------------------------------------------+--------------------------------+\n| HOUR_MINUTE | |\n+--------------------------------------------+--------------------------------+\n| HOUR_SECOND | |\n+--------------------------------------------+--------------------------------+\n| IF | |\n+--------------------------------------------+--------------------------------+\n| IGNORE | |\n+--------------------------------------------+--------------------------------+\n| IGNORE_DOMAIN_IDS | |\n+--------------------------------------------+--------------------------------+\n| IGNORE_SERVER_IDS | |\n+--------------------------------------------+--------------------------------+\n| IN | |\n+--------------------------------------------+--------------------------------+\n| INDEX | |\n+--------------------------------------------+--------------------------------+\n| INFILE | |\n+--------------------------------------------+--------------------------------+\n| INNER | |\n+--------------------------------------------+--------------------------------+\n| INOUT | |\n+--------------------------------------------+--------------------------------+\n| INSENSITIVE | |\n+--------------------------------------------+--------------------------------+\n| INSERT | |\n+--------------------------------------------+--------------------------------+\n| INT | |\n+--------------------------------------------+--------------------------------+\n| INT1 | |\n+--------------------------------------------+--------------------------------+\n| INT2 | |\n+--------------------------------------------+--------------------------------+\n| INT3 | |\n+--------------------------------------------+--------------------------------+\n| INT4 | |\n+--------------------------------------------+--------------------------------+\n| INT8 | |\n+--------------------------------------------+--------------------------------+\n| INTEGER | |\n+--------------------------------------------+--------------------------------+\n| INTERSECT | Added in MariaDB 10.3.0 |\n+--------------------------------------------+--------------------------------+\n| INTERVAL | |\n+--------------------------------------------+--------------------------------+\n| INTO | |\n+--------------------------------------------+--------------------------------+\n| IS | |\n+--------------------------------------------+--------------------------------+\n| ITERATE | |\n+--------------------------------------------+--------------------------------+\n| JOIN | |\n+--------------------------------------------+--------------------------------+\n| KEY | |\n+--------------------------------------------+--------------------------------+\n| KEYS | |\n+--------------------------------------------+--------------------------------+\n| KILL | |\n+--------------------------------------------+--------------------------------+\n| LEADING | |\n+--------------------------------------------+--------------------------------+\n| LEAVE | |\n+--------------------------------------------+--------------------------------+\n| LEFT | |\n+--------------------------------------------+--------------------------------+\n| LIKE | |\n+--------------------------------------------+--------------------------------+\n| LIMIT | |\n+--------------------------------------------+--------------------------------+\n| LINEAR | |\n+--------------------------------------------+--------------------------------+\n| LINES | |\n+--------------------------------------------+--------------------------------+\n| LOAD | |\n+--------------------------------------------+--------------------------------+\n| LOCALTIME | |\n+--------------------------------------------+--------------------------------+\n| LOCALTIMESTAMP | |\n+--------------------------------------------+--------------------------------+\n| LOCK | |\n+--------------------------------------------+--------------------------------+\n| LONG | |\n+--------------------------------------------+--------------------------------+\n| LONGBLOB | |\n+--------------------------------------------+--------------------------------+\n| LONGTEXT | |\n+--------------------------------------------+--------------------------------+\n| LOOP | |\n+--------------------------------------------+--------------------------------+\n| LOW_PRIORITY | |\n+--------------------------------------------+--------------------------------+\n| MASTER_HEARTBEAT_PERIOD | |\n+--------------------------------------------+--------------------------------+\n| MASTER_SSL_VERIFY_SERVER_CERT | |\n+--------------------------------------------+--------------------------------+\n| MATCH | |\n+--------------------------------------------+--------------------------------+\n| MAXVALUE | |\n+--------------------------------------------+--------------------------------+\n| MEDIUMBLOB | |\n+--------------------------------------------+--------------------------------+\n| MEDIUMINT | |\n+--------------------------------------------+--------------------------------+\n| MEDIUMTEXT | |\n+--------------------------------------------+--------------------------------+\n| MIDDLEINT | |\n+--------------------------------------------+--------------------------------+\n| MINUTE_MICROSECOND | |\n+--------------------------------------------+--------------------------------+\n| MINUTE_SECOND | |\n+--------------------------------------------+--------------------------------+\n| MOD | |\n+--------------------------------------------+--------------------------------+\n| MODIFIES | |\n+--------------------------------------------+--------------------------------+\n| NATURAL | |\n+--------------------------------------------+--------------------------------+\n| NOT | |\n+--------------------------------------------+--------------------------------+\n| NO_WRITE_TO_BINLOG | |\n+--------------------------------------------+--------------------------------+\n| NULL | |\n+--------------------------------------------+--------------------------------+\n| NUMERIC | |\n+--------------------------------------------+--------------------------------+\n| OFFSET | Added in MariaDB 10.6.0 |\n+--------------------------------------------+--------------------------------+\n| ON | |\n+--------------------------------------------+--------------------------------+\n| OPTIMIZE | |\n+--------------------------------------------+--------------------------------+\n| OPTION | |\n+--------------------------------------------+--------------------------------+\n| OPTIONALLY | |\n+--------------------------------------------+--------------------------------+\n| OR | |\n+--------------------------------------------+--------------------------------+\n| ORDER | |\n+--------------------------------------------+--------------------------------+\n| OUT | |\n+--------------------------------------------+--------------------------------+\n| OUTER | |\n+--------------------------------------------+--------------------------------+\n| OUTFILE | |\n+--------------------------------------------+--------------------------------+\n| OVER | |\n+--------------------------------------------+--------------------------------+\n| PAGE_CHECKSUM | |\n+--------------------------------------------+--------------------------------+\n| PARSE_VCOL_EXPR | |\n+--------------------------------------------+--------------------------------+\n| PARTITION | |\n+--------------------------------------------+--------------------------------+\n| POSITION | |\n+--------------------------------------------+--------------------------------+\n| PRECISION | |\n+--------------------------------------------+--------------------------------+\n| PRIMARY | |\n+--------------------------------------------+--------------------------------+\n| PROCEDURE | |\n+--------------------------------------------+--------------------------------+\n| PURGE | |\n+--------------------------------------------+--------------------------------+\n| RANGE | |\n+--------------------------------------------+--------------------------------+\n| READ | |\n+--------------------------------------------+--------------------------------+\n| READS | |\n+--------------------------------------------+--------------------------------+\n| READ_WRITE | |\n+--------------------------------------------+--------------------------------+\n| REAL | |\n+--------------------------------------------+--------------------------------+\n| RECURSIVE | |\n+--------------------------------------------+--------------------------------+\n| REF_SYSTEM_ID | |\n+--------------------------------------------+--------------------------------+\n| REFERENCES | |\n+--------------------------------------------+--------------------------------+\n| REGEXP | |\n+--------------------------------------------+--------------------------------+\n| RELEASE | |\n+--------------------------------------------+--------------------------------+\n| RENAME | |\n+--------------------------------------------+--------------------------------+\n| REPEAT | |\n+--------------------------------------------+--------------------------------+\n| REPLACE | |\n+--------------------------------------------+--------------------------------+\n| REQUIRE | |\n+--------------------------------------------+--------------------------------+\n| RESIGNAL | |\n+--------------------------------------------+--------------------------------+\n| RESTRICT | |\n+--------------------------------------------+--------------------------------+\n| RETURN | |\n+--------------------------------------------+--------------------------------+\n| RETURNING | |\n+--------------------------------------------+--------------------------------+\n| REVOKE | |\n+--------------------------------------------+--------------------------------+\n| RIGHT | |\n+--------------------------------------------+--------------------------------+\n| RLIKE | |\n+--------------------------------------------+--------------------------------+\n| ROW_NUMBER | From MariaDB 10.7 |\n+--------------------------------------------+--------------------------------+\n| ROWS | |\n+--------------------------------------------+--------------------------------+\n| SCHEMA | |\n+--------------------------------------------+--------------------------------+\n| SCHEMAS | |\n+--------------------------------------------+--------------------------------+\n| SECOND_MICROSECOND | |\n+--------------------------------------------+--------------------------------+\n| SELECT | |\n+--------------------------------------------+--------------------------------+\n| SENSITIVE | |\n+--------------------------------------------+--------------------------------+\n| SEPARATOR | |\n+--------------------------------------------+--------------------------------+\n| SET | |\n+--------------------------------------------+--------------------------------+\n| SHOW | |\n+--------------------------------------------+--------------------------------+\n| SIGNAL | |\n+--------------------------------------------+--------------------------------+\n| SLOW | |\n+--------------------------------------------+--------------------------------+\n| SMALLINT | |\n+--------------------------------------------+--------------------------------+\n| SPATIAL | |\n+--------------------------------------------+--------------------------------+\n| SPECIFIC | |\n+--------------------------------------------+--------------------------------+\n| SQL | |\n+--------------------------------------------+--------------------------------+\n| SQLEXCEPTION | |\n+--------------------------------------------+--------------------------------+\n| SQLSTATE | |\n+--------------------------------------------+--------------------------------+\n| SQLWARNING | |\n+--------------------------------------------+--------------------------------+\n| SQL_BIG_RESULT | |\n+--------------------------------------------+--------------------------------+\n| SQL_CALC_FOUND_ROWS | |\n+--------------------------------------------+--------------------------------+\n| SQL_SMALL_RESULT | |\n+--------------------------------------------+--------------------------------+\n| SSL | |\n+--------------------------------------------+--------------------------------+\n| STARTING | |\n+--------------------------------------------+--------------------------------+\n| STATS_AUTO_RECALC | |\n+--------------------------------------------+--------------------------------+\n| STATS_PERSISTENT | |\n+--------------------------------------------+--------------------------------+\n| STATS_SAMPLE_PAGES | |\n+--------------------------------------------+--------------------------------+\n| STRAIGHT_JOIN | |\n+--------------------------------------------+--------------------------------+\n| TABLE | |\n+--------------------------------------------+--------------------------------+\n| TERMINATED | |\n+--------------------------------------------+--------------------------------+\n| THEN | |\n+--------------------------------------------+--------------------------------+\n| TINYBLOB | |\n+--------------------------------------------+--------------------------------+\n| TINYINT | |\n+--------------------------------------------+--------------------------------+\n| TINYTEXT | |\n+--------------------------------------------+--------------------------------+\n| TO | |\n+--------------------------------------------+--------------------------------+\n| TRAILING | |\n+--------------------------------------------+--------------------------------+\n| TRIGGER | |\n+--------------------------------------------+--------------------------------+\n| TRUE | |\n+--------------------------------------------+--------------------------------+\n| UNDO | |\n+--------------------------------------------+--------------------------------+\n| UNION | |\n+--------------------------------------------+--------------------------------+\n| UNIQUE | |\n+--------------------------------------------+--------------------------------+\n| UNLOCK | |\n+--------------------------------------------+--------------------------------+\n| UNSIGNED | |\n+--------------------------------------------+--------------------------------+\n| UPDATE | |\n+--------------------------------------------+--------------------------------+\n| USAGE | |\n+--------------------------------------------+--------------------------------+\n| USE | |\n+--------------------------------------------+--------------------------------+\n| USING | |\n+--------------------------------------------+--------------------------------+\n| UTC_DATE | |\n+--------------------------------------------+--------------------------------+\n| UTC_TIME | |\n+--------------------------------------------+--------------------------------+\n| UTC_TIMESTAMP | |\n+--------------------------------------------+--------------------------------+\n| VALUES | |\n+--------------------------------------------+--------------------------------+\n| VARBINARY | |\n+--------------------------------------------+--------------------------------+\n| VARCHAR | |\n+--------------------------------------------+--------------------------------+\n| VARCHARACTER | |\n+--------------------------------------------+--------------------------------+\n| VARYING | |\n+--------------------------------------------+--------------------------------+\n| WHEN | |\n+--------------------------------------------+--------------------------------+\n| WHERE | |\n+--------------------------------------------+--------------------------------+\n| WHILE | |\n+--------------------------------------------+--------------------------------+\n| WINDOW | Only disallowed for table |\n| | aliases. |\n+--------------------------------------------+--------------------------------+\n| WITH | |\n+--------------------------------------------+--------------------------------+\n| WRITE | |\n+--------------------------------------------+--------------------------------+\n| XOR | |\n+--------------------------------------------+--------------------------------+\n| YEAR_MONTH | |\n+--------------------------------------------+--------------------------------+\n| ZEROFILL | |\n+--------------------------------------------+--------------------------------+\n\nExceptions\n----------\n\nSome keywords are exceptions for historical reasons, and are permitted as\nunquoted identifiers. These include:\n\n+-----------------------------------------------------------------------------+\n| Keyword |\n+-----------------------------------------------------------------------------+\n| ACTION |\n+-----------------------------------------------------------------------------+\n| BIT |\n+-----------------------------------------------------------------------------+\n| DATE |\n+-----------------------------------------------------------------------------+\n| ENUM |\n+-----------------------------------------------------------------------------+\n| NO |\n+-----------------------------------------------------------------------------+\n| TEXT |\n+-----------------------------------------------------------------------------+\n| TIME |\n+-----------------------------------------------------------------------------+\n| TIMESTAMP |\n+-----------------------------------------------------------------------------+\n\nOracle Mode\n-----------\n\nIn Oracle mode, from MariaDB 10.3, there are a number of extra reserved words:\n\n+--------------------------------------------+--------------------------------+\n| Keyword | Notes |\n+--------------------------------------------+--------------------------------+\n| BODY | |\n+--------------------------------------------+--------------------------------+\n| ELSIF | |\n+--------------------------------------------+--------------------------------+\n| GOTO | |\n+--------------------------------------------+--------------------------------+\n| HISTORY | <= MariaDB 10.3.6 only |\n+--------------------------------------------+--------------------------------+\n| MINUS | From MariaDB 10.6.1 |\n+--------------------------------------------+--------------------------------+\n| OTHERS | |\n+--------------------------------------------+--------------------------------+\n| PACKAGE | |\n+--------------------------------------------+--------------------------------+\n| PERIOD | <= MariaDB 10.3.6 only |\n+--------------------------------------------+--------------------------------+\n| RAISE | |\n+--------------------------------------------+--------------------------------+\n| ROWNUM | From MariaDB 10.6.1 |\n+--------------------------------------------+--------------------------------+\n| ROWTYPE | |\n+--------------------------------------------+--------------------------------+\n| SYSDATE | From MariaDB 10.6.1 |\n+--------------------------------------------+--------------------------------+\n| SYSTEM | <= MariaDB 10.3.6 only. Note |\n| | however that SYSTEM sometimes |\n| | needs to be quoted to avoid |\n| | confusion with |\n| | System-versioned tables. |\n+--------------------------------------------+--------------------------------+\n| SYSTEM_TIME | <= MariaDB 10.3.6 only |\n+--------------------------------------------+--------------------------------+\n| VERSIONING | <= MariaDB 10.3.6 only |\n+--------------------------------------------+--------------------------------+\n| WITHOUT | <= MariaDB 10.3.6 only |\n+--------------------------------------------+--------------------------------+\n\nFunction Names\n--------------\n\nIf the IGNORE_SPACE SQL_MODE flag is set, function names become reserved words.\n\nURL: https://mariadb.com/kb/en/reserved-words/','','https://mariadb.com/kb/en/reserved-words/'), (488,'SQL_MODE=ORACLE',29,'From MariaDB 10.3, setting the sql_mode system variable to Oracle allows the\nserver to understand a subset of Oracle\'s PL/SQL language. For example:\n\nSET SQL_MODE=\'ORACLE\';\n\nAll traditional MariaDB SQL/PSM syntax should work as before, as long as it\ndoes not conflict with Oracle\'s PL/SQL syntax. All MariaDB functions should be\nsupported in both normal and Oracle modes.\n\nPrior to MariaDB 10.3, MariaDB does not support Oracle\'s PL/SQL language, and\nSET SQL_MODE=ORACLE is only an alias for the following sql_mode in those\nversions:\n\nSET SQL_MODE=\'PIPES_AS_CONCAT, ANSI_QUOTES, IGNORE_SPACE, NO_KEY_OPTIONS,\nNO_TABLE_OPTIONS, NO_FIELD_OPTIONS, NO_AUTO_CREATE_USER\';\n\nFrom MariaDB 10.3, SET SQL_MODE=ORACLE is same as:\n\nSET SQL_MODE=\'PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ORACLE,NO_KEY_OPTIONS,\nNO_TABLE_OPTIONS,NO_FIELD_OPTIONS,NO_AUTO_CREATE_USER,SIMULTANEOUS_ASSIGNMENT\';\n\nSupported Syntax in Oracle Mode\n-------------------------------\n\nStored Procedures and Stored Functions\n--------------------------------------\n\nOracle mode makes the following changes to Stored Procedures and Stored\nFunctions:\n\n+-----------------------------------------+-----------------------------------+\n| Oracle syntax | Description |\n+-----------------------------------------+-----------------------------------+\n| CREATE PROCEDURE p1 (param OUT INT) | ANSI uses (OUT param INT) |\n+-----------------------------------------+-----------------------------------+\n| CREATE PROCEDURE p1 (a IN OUT INT) | ANSI uses (INOUT param INT) |\n+-----------------------------------------+-----------------------------------+\n| AS before function body | CREATE FUNCTION f1 RETURN NUMBER |\n| | AS BEGIN... |\n+-----------------------------------------+-----------------------------------+\n| IS before function body | CREATE FUNCTION f1 RETURN NUMBER |\n| | IS BEGIN... |\n+-----------------------------------------+-----------------------------------+\n| If function has no parameters then | Example: CREATE PROCEDURE p1 AS |\n| parentheses must be omitted | BEGIN NULL; END; |\n+-----------------------------------------+-----------------------------------+\n| CREATE PROCEDURE p1 AS BEGIN END p1; | Optional routine name after END |\n| | keyword. MDEV-12089 |\n+-----------------------------------------+-----------------------------------+\n| CREATE FUNCTION f1(a VARCHAR) | VARCHAR can be used without |\n| | length for routine parameters |\n| | and RETURN clause. The length is |\n| | inherited from the argument at |\n| | call time. MDEV-10596 |\n+-----------------------------------------+-----------------------------------+\n| CREATE AGGREGATE FUNCTION f1( ) | Creates an aggregate function, |\n| | which performs the function |\n| | against a set of rows and |\n| | returns one aggregate result. |\n+-----------------------------------------+-----------------------------------+\n| No CALL needed in Stored Procedures | In Oracle mode one can call |\n| | other stored procedures with |\n| | name only. MDEV-12107 |\n+-----------------------------------------+-----------------------------------+\n| RETURN. Can also be used in stored | ANSI uses RETURNS. MariaDB mode |\n| procedures | only supports RETURNS in stored |\n| | functions |\n+-----------------------------------------+-----------------------------------+\n\nCursors\n-------\n\nOracle mode makes the following changes to Cursors:\n\n+-----------------------------------------+-----------------------------------+\n| Oracle syntax | Description |\n+-----------------------------------------+-----------------------------------+\n| CREATE PROCEDURE p1 AS CURSOR cur IS | Explicit cursor with FOR loop. |\n| (SELECT a, b FROM t1); BEGIN FOR rec | MDEV-10581 |\n| IN cur ... | |\n+-----------------------------------------+-----------------------------------+\n| CREATE PROCEDURE p1 AS rec IN (SELECT | Implicit cursor with FOR loop. |\n| a, b FROM t1) | MDEV-12098 |\n+-----------------------------------------+-----------------------------------+\n| CURSOR c(prm_a VARCHAR2, prm_b | Cursor with parameters. |\n| VARCHAR2) ... OPEN c(1,2) | MDEV-10597 |\n+-----------------------------------------+-----------------------------------+\n| CURSOR c(prm_a VARCHAR2, prm_b | Cursor with parameters and FOR |\n| VARCHAR2) ... FOR rec in c(1,2) | loop. MDEV-12314 |\n+-----------------------------------------+-----------------------------------+\n| s %ISOPEN, %ROWCOUNT, %FOUND, %NOTFOUND | Explicit cursor attributes. |\n| | MDEV-10582 |\n+-----------------------------------------+-----------------------------------+\n\nLOOP\n----\n\nOracle mode makes the following changes to LOOP:\n\n+-----------------------------------------+-----------------------------------+\n| Oracle syntax | Description |\n+-----------------------------------------+-----------------------------------+\n| FOR i IN 1..10 LOOP ... END LOOP | Numeric FOR loop. MDEV-10580 |\n+-----------------------------------------+-----------------------------------+\n| GOTO | GOTO statement. MDEV-10697 |\n+-----------------------------------------+-----------------------------------+\n| <