Home Database Mysql Tutorial mysql 5.0.67最新版替代MySQL 5.0.51b版本官方下载

mysql 5.0.67最新版替代MySQL 5.0.51b版本官方下载

Jun 07, 2016 pm 06:00 PM
mysql

发布说明MySQL服务器5.0.67 ( 2008年8月4日) 这是一个bugfix释放现有生产释放的家庭。它取代MySQL的5.0.51b 。

功能新增或变更的:
安全增强:使严格控制的位置,从哪个用户定义的函数可以被载入, plugin_dir系统变量已的
backported从MySQL 5.1 。如果该值非空,用户定义函数对象的文件可以被加载,只有从目录中命名这个
变量。如果该值是空的,行为是用来前5.0.67适用于: UDF的对象文件必须设在一个目录是搜查你的系统
的动态链接。 (错误# 37428 )
重要的变化:不兼容的变化: FEDERATED存储引擎是现在默认情况下禁用在。 cnf文件发运与MySQL分布
(我- huge.cnf ,我- medium.cnf ,等等) 。这会影响服务器的行为,只有如果您安装了其中的一个
文件。 (错误# 37069 )
群集的空气污染指数:重要的变化:由于ndb_le_memoryusage.page_size_kb显示记忆体页的大小字节,
而不是千字节,它已更名为page_size_bytes 。名称page_size_kb现在已废弃,因此须移走在将来的版本
,虽然它目前仍然是支持为理由,向后兼容。看到ndb_logevent_type类型,如需有关
ndb_le_memoryusage 。 (错误# 30271 )
重要的变化:一些变化,作出检查表...为升级和修复表方面的检测和处理表与不相容的。 frm档案(副
档创造了一个不同的MySQL服务器的版本) 。这些变化也影响到mysqlcheck ,因为程序使用检查表和修
复表,从而也mysql_upgrade ,因为该程序调用mysqlcheck 。
如果您的表已建立由不同的MySQL服务器的版本比1 ,你正在运行,检查表...为提升表明,该表中有一。
frm文件不兼容的版本。在这种情况下,结果集传回的检查表包含一个符合一msg_type价值的错误和
msg_text价值表需要升级。请勿“修复表tbl_name ` ` ” ,以修复它!
修复表没有use_frm升级。 frm文件到当前版本。
如果您使用维修表... use_frm和你的表是创造了不同版本的MySQL服务器比一,你正在运行,维修表,将
不会试图修复表。在这种情况下,结果集经由修复表包含一个符合一msg_type价值的错误和msg_text的价
值未能修复不相容的。 frm文件。
以前,使用维修表... use_frm一个表所造成的不同版本的MySQL服务器的危险,损失所有列在表中。




下载导航
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MySQL: Simple Concepts for Easy Learning MySQL: Simple Concepts for Easy Learning Apr 10, 2025 am 09:29 AM

MySQL is an open source relational database management system. 1) Create database and tables: Use the CREATEDATABASE and CREATETABLE commands. 2) Basic operations: INSERT, UPDATE, DELETE and SELECT. 3) Advanced operations: JOIN, subquery and transaction processing. 4) Debugging skills: Check syntax, data type and permissions. 5) Optimization suggestions: Use indexes, avoid SELECT* and use transactions.

How to open phpmyadmin How to open phpmyadmin Apr 10, 2025 pm 10:51 PM

You can open phpMyAdmin through the following steps: 1. Log in to the website control panel; 2. Find and click the phpMyAdmin icon; 3. Enter MySQL credentials; 4. Click "Login".

MySQL: An Introduction to the World's Most Popular Database MySQL: An Introduction to the World's Most Popular Database Apr 12, 2025 am 12:18 AM

MySQL is an open source relational database management system, mainly used to store and retrieve data quickly and reliably. Its working principle includes client requests, query resolution, execution of queries and return results. Examples of usage include creating tables, inserting and querying data, and advanced features such as JOIN operations. Common errors involve SQL syntax, data types, and permissions, and optimization suggestions include the use of indexes, optimized queries, and partitioning of tables.

How to use single threaded redis How to use single threaded redis Apr 10, 2025 pm 07:12 PM

Redis uses a single threaded architecture to provide high performance, simplicity, and consistency. It utilizes I/O multiplexing, event loops, non-blocking I/O, and shared memory to improve concurrency, but with limitations of concurrency limitations, single point of failure, and unsuitable for write-intensive workloads.

Why Use MySQL? Benefits and Advantages Why Use MySQL? Benefits and Advantages Apr 12, 2025 am 12:17 AM

MySQL is chosen for its performance, reliability, ease of use, and community support. 1.MySQL provides efficient data storage and retrieval functions, supporting multiple data types and advanced query operations. 2. Adopt client-server architecture and multiple storage engines to support transaction and query optimization. 3. Easy to use, supports a variety of operating systems and programming languages. 4. Have strong community support and provide rich resources and solutions.

MySQL's Place: Databases and Programming MySQL's Place: Databases and Programming Apr 13, 2025 am 12:18 AM

MySQL's position in databases and programming is very important. It is an open source relational database management system that is widely used in various application scenarios. 1) MySQL provides efficient data storage, organization and retrieval functions, supporting Web, mobile and enterprise-level systems. 2) It uses a client-server architecture, supports multiple storage engines and index optimization. 3) Basic usages include creating tables and inserting data, and advanced usages involve multi-table JOINs and complex queries. 4) Frequently asked questions such as SQL syntax errors and performance issues can be debugged through the EXPLAIN command and slow query log. 5) Performance optimization methods include rational use of indexes, optimized query and use of caches. Best practices include using transactions and PreparedStatemen

MySQL and SQL: Essential Skills for Developers MySQL and SQL: Essential Skills for Developers Apr 10, 2025 am 09:30 AM

MySQL and SQL are essential skills for developers. 1.MySQL is an open source relational database management system, and SQL is the standard language used to manage and operate databases. 2.MySQL supports multiple storage engines through efficient data storage and retrieval functions, and SQL completes complex data operations through simple statements. 3. Examples of usage include basic queries and advanced queries, such as filtering and sorting by condition. 4. Common errors include syntax errors and performance issues, which can be optimized by checking SQL statements and using EXPLAIN commands. 5. Performance optimization techniques include using indexes, avoiding full table scanning, optimizing JOIN operations and improving code readability.

Monitor Redis Droplet with Redis Exporter Service Monitor Redis Droplet with Redis Exporter Service Apr 10, 2025 pm 01:36 PM

Effective monitoring of Redis databases is critical to maintaining optimal performance, identifying potential bottlenecks, and ensuring overall system reliability. Redis Exporter Service is a powerful utility designed to monitor Redis databases using Prometheus. This tutorial will guide you through the complete setup and configuration of Redis Exporter Service, ensuring you seamlessly build monitoring solutions. By studying this tutorial, you will achieve fully operational monitoring settings

See all articles