Showing entries 8316 to 8325 of 44029
« 10 Newer Entries | 10 Older Entries »
MySQL & Friends Community Dinner 2016

FOSDEM is once again descending on the ULB in Brussels, and so again will there be a MySQL and Friends Devroom. Tradition calls for a MySQL and Friends Community Dinner, and we certainly aim not to disappoint this year!

Like last year, we’ll be renting the same private space to allow for easy socializing (at ICAB , more detailed directions below).

As such, prepare for an evening of food, drink and jolly conversation rivaling the great feasts of old. Disclaimer: Apart from jolliness, overindulgence on any account can not be blamed on the organizers of this event.

The …

[Read more]
How can make an array from the values of another arrays key

If you are working on PHP or other PHP framework and you want to create array of another array value now you can see on following example how can you make array form another multidimensional array keys For example you have array like pre classlanguagephp multi array 1 ar

Cédric Bruderer: Replication in a star

Most of you know, that it is possible to synchronize MySQL and MariaDB servers using replication. But with the latest releases, it is also possible to use more than just two servers as a multi-master setup.

Most of you know that both MySQL and MariaDB support replication in a hierarchical master-slave-setup, to propagate changes across all connected servers.

But with the latest releases, a slave can have more than one master.

The keyword: Multi-Source replication

It is supported from MySQL 5.7 and MariaDB 10.0 on, and this article describes how to set it up.

What does Multi-Source mean?

Multi-Source means, that you can take two or more masters and replicate them to one slave, where their changes will be merged. This works just like the regular MySQL/MariaDB …

[Read more]
Simplified SSL/TLS Setup for MySQL Community

Transport Layer Security (TLS, also often referred to as SSL) is an important component of a secure MySQL deployment, but the complexities of properly generating the necessary key material and configuring the server dissuaded many users from completing this task.  MySQL Server 5.7 simplifies this task for both Enterprise and Community users. …

MySQL Group Replication now on Windows

In the previous releases of the Group Replication plugin for MySQL we introduced support for several operating systems like Mac OS X, Solaris, and FreeBSD. But why stop there? So here it is, the 0.7.0 version of Group Replication is now also available on Windows!…

Tired of MySQL Making You Wait? Webinar: Questions and Answers

We’d like to thank everybody for joining us on January 7th for our “Tired of MySQL Making You Wait?” webinar with Percona’s Alexander Rubin, Principal Consultant and SolarWinds’ Janis Griffin, Database Evangelist.

Too often developers and DBAs struggle to pinpoint the root cause of performance issues and then spend too much time in trying to fix them. In the webinar, we discussed how you can significantly increase the performance of your applications while also reducing database response time.

You can find an archived version of the webinar here.

Below are the questions that were asked during the webinar, with responses from Alex and Janis. If you need further clarification, please respond in the comments.

Thanks again, and we look forward to you joining us at our next webinar (with Percona CEO Peter …

[Read more]
How to merge two array with same keys without loop in PHP

you want to merge two array but without overwrite value then you can see how to merge two array in following exampleyou have two array and you want to merge with overwrite with key then you fetch many problem like this two array strongMy Arraystrongpre classlanguagephp array1

[Solved] How to solve MySQL error code: 1062 duplicate entry?

Error Message:

Error Code: 1062. Duplicate entry ‘%s’ for key %d

Example:
Error Code: 1062. Duplicate entry ‘1’ for key ‘PRIMARY’


Possible Reason:
Case 1: Duplicate value.
The data you are trying to insert is already present in the column primary key. The primary key column is unique and it will not accept the duplicate entry.


Case 2: Unique data field.
You are trying to add a column to an existing table which contains data and set it as unique.


Case 3: Data type –upper limit.
The auto_increment field reached its maximum range.


[Read more]
Frictionless MySQL installation

I saw an interesting post about the ability of installing MySQL 5.7 without changing existing tools and procedures. The post is a plea to make MySQL installation frictionless.

That post was followed by a conversation on Twitter, where the recent security enhancements are blamed for getting in the way of existing practices and need a rewrite of installation tools.

I know the problem very well, as I have faced the installation change in MySQL Sandbox. SO I can sympathize with the ones who have to change deployment tools that rely on mysql_install_db, which was a Perl script up to version 5.6, then it was replaced with a C++ program in 5.7 and deprecated in the same version.

It occurred to me that, in order to keep the …

[Read more]
Using Powershell to implement Linux top command on Windows

Welcome to the final blog in Windows PerfCounters and Powershell series and sorry for the delay. The purpose of this blog is to explain the inner workings of top-script.ps1 script and practical usage of Performance counters on Windows through Powershell. It is intended for people who want Linux top - like tool on Windows.

The script is a part of and available in our existing benchmarking package (dbt2-0.37.50.10) developed by Mikael Ronstrom.

On Top:If you ever did benchmarking on Linux or simply wondered "where did all my resources go", top is your best friend. Since this post is not about Linux, you can google "Linux top explained" for more details.


On Performance counters:To learn about Windows PerfCounters, please refer to my previous …

[Read more]
Showing entries 8316 to 8325 of 44029
« 10 Newer Entries | 10 Older Entries »