%PDF- %PDF-
Direktori : /proc/309157/root/backups/db_backups/mysql/db/information_schema/ |
Current File : //proc/309157/root/backups/db_backups/mysql/db/information_schema/ENGINES.sql |
/*M!999999\- enable the sandbox mode */ -- MariaDB dump 10.19 Distrib 10.6.22-MariaDB, for debian-linux-gnu (x86_64) -- -- Host: localhost Database: information_schema -- ------------------------------------------------------ -- Server version 10.6.22-MariaDB-0ubuntu0.22.04.1 /*!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 */; -- -- Table structure for table `ENGINES` -- DROP TABLE IF EXISTS `ENGINES`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TEMPORARY TABLE `ENGINES` ( `ENGINE` varchar(64) NOT NULL, `SUPPORT` varchar(8) NOT NULL, `COMMENT` varchar(160) NOT NULL, `TRANSACTIONS` varchar(3), `XA` varchar(3), `SAVEPOINTS` varchar(3) ) ENGINE=MEMORY DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ENGINES` -- LOCK TABLES `ENGINES` WRITE; /*!40000 ALTER TABLE `ENGINES` DISABLE KEYS */; INSERT INTO `ENGINES` VALUES ('CSV','YES','Stores tables as CSV files','NO','NO','NO'),('MRG_MyISAM','YES','Collection of identical MyISAM tables','NO','NO','NO'),('MEMORY','YES','Hash based, stored in memory, useful for temporary tables','NO','NO','NO'),('BLACKHOLE','YES','/dev/null storage engine (anything you write to it disappears)','NO','NO','NO'),('MyISAM','YES','Non-transactional engine with good performance and small data footprint','NO','NO','NO'),('SEQUENCE','YES','Generated tables filled with sequential values','YES','NO','YES'),('ARCHIVE','YES','gzip-compresses tables for a low storage footprint','NO','NO','NO'),('FEDERATED','YES','Allows accessing tables on other MariaDB servers','NO','NO','NO'),('PERFORMANCE_SCHEMA','YES','Performance Schema','NO','NO','NO'),('Aria','YES','Crash-safe tables with MyISAM heritage. Used for internal temporary tables and privilege tables','NO','NO','NO'),('InnoDB','DEFAULT','Supports transactions, row-level locking, foreign keys and encryption for tables','YES','YES','YES'); /*!40000 ALTER TABLE `ENGINES` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-08-30 4:10:12