Showing entries 7851 to 7860 of 44083
« 10 Newer Entries | 10 Older Entries »
NOT NULL all the things!

Different types of languages deal with this “value” in diverse ways. You can have a more comprehensive list of what NULL can mean on this website. What I like to think about NULL is along the lines of invalid, as if some sort of garbage is stored there. It doesn’t mean it’s empty, it’s just mean that something is there, and it has no value to you.

Databases deal when storing this type in a similar way, PostgreSQL treats it as “unknown” while MySQL treats it as “no data“.

Both databases recommend using \N to represent NULL values where import or exporting of data is necessary.

When …

[Read more]
MySQL 5.7.12 – Part 6: MySQL Document Store – A New Chapter in the MySQL Story

So hopefully you’ve read the first 5 blogs in this 6 part series you should have a good introduction to
•    Part 1 – What we heard from the MySQL Community (keep it solid, and innovate faster) and our change to new release model those requirements.…

How to install Lighttpd with PHP-FPM and MariaDB on CentOS 7

Lighttpd is a secure, fast, standards-compliant web server designed for speed-critical environments. This tutorial shows how you can install Lighttpd on a Centos 7 server with PHP support (through PHP-FPM) and MySQL support. PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size, especially busier sites. I use PHP-FPM in this tutorial instead of Lighttpd's spawn-fcgi.

Fadein Fadeout example in Jquery

fadein and fadeout is very interesting concept in jquery fadein and fadeout method through you do hide show without add stylesheet like display none or something In this example i didnt explain more but i add example for both fadein and fadeout in js This example is very simple to undestand how

Press Release: Severalnines expands the reach of European scientific discovery

Stockholm, Sweden and anywhere else in the world - 20 April 2016 - Severalnines, the provider of database infrastructure management software, today announced its latest customer, the National Center for Scientific Research (CNRS), which is a subsidiary of the French Ministry of Higher Education and Research.

The CNRS has over 1,100 research units and is home to some of the largest scientific research facilities in the world. It partners with other global institutions and employs over 33,000 people. Working in partnership with universities, laboratories and dedicated scientists, CNRS has delivered advanced research in areas such as obesity, malaria and organic matter in space.

Having an international outreach means they have a dedicated department to handle the information infrastructure of the organisation called the Directorate of Information Systems (CNRS-DSI). Thousands of …

[Read more]
MariaDB Roadshow 2016 is starting

Wed, 2016-04-20 09:00juergengiesel

Team MariaDB is touring across several European regions again. The theme for 2016 is "Data Management for Mission Critical Applications". Beside valuable presentations around database security, Big Data analysis and better scalability and high availability our technical experts will help you understand how to take advantage of the wide range of new features and enhancements available now in MariaDB 10.1, MariaDB MaxScale 1.4 and other MariaDB solutions. They will share tips & tricks to help you get the most out of your database. You will also discover what’s coming up next in MariaDB and the MariaDB ecosystem.

We will start at Friday in Helsinki where Michael "Monty" Widenius (MySQL and MariaDB creator) is among the listed speakers. The week afterwards we will continue with Nürnberg, Germany. More dates and locations are listed below.

Join MariaDB at this free event to learn how to: …

[Read more]
MariaDB Roadshow 2016 is starting

Wed, 2016-04-20 05:51juergengiesel

Team MariaDB is touring across several European regions again. The theme for 2016 is "Data Management for Mission Critical Applications". Beside valuable presentations around database security, Big Data analysis and better scalability and high availability our technical experts will help you understand how to take advantage of the wide range of new features and enhancements available now in MariaDB 10.1, MariaDB MaxScale 1.4 and other MariaDB solutions. They will share tips & tricks to help you get the most out of your database. You will also discover what’s coming up next in MariaDB and the MariaDB ecosystem.

We will start at Friday in Helsinki where Michael "Monty" Widenius (MySQL and MariaDB creator) is among the listed speakers. The week afterwards we will continue with Nürnberg, Germany. More dates and locations are listed below.

Join MariaDB at this free event to learn how to: …

[Read more]
Percona Live 2016: A quick chat with Bill Nye, the Science Guy!

Percona Live is humming along, and we had quite a whirlwind keynote session this morning. Bill Nye the Science Guy gave an amazing talk, Bill Nye’s Objective – Change the World, on how the process of science and critical thinking can help us not only be positive about the challenges we face in our world today, but also help us to come up with the big ideas we need to solve them. He discussed many topics, from how his parents met, their involvement in science (his mother worked on the Enigma Code in World War 2!), working at Boeing as an engineer, his involvement with Carl Sagan, and how he has worked to help harness renewable energy through solar panels, a solar water heater, and skylights at his own …

[Read more]
NOT NULL all the things!

Different types of languages deal with this "value" in diverse ways. You can have a more comprehensive list of what NULL can mean on this website. What I like to think about NULL is along the lines of invalid, as if some sort of garbage is stored there. It doesn't mean it's empty, it's just mean that something is there, and it has no value to you.

Databases deal when storing this type in a similar way, PostgreSQL treats it as "unknown" while MySQL treats it as "no data".

Both databases recommend using \N to represent NULL values where import or exporting of data is necessary.

When to use it

[Read more]
(MySQL) Performance Monitoring with Prometheus [UPDATE]

In my last I was looking for a way to do performance monitoring and I stumbled upon Prometheus. Prometheus is much more than monitoring a single node service. Anyway let’s get the idea of gathering metrics using MySQL as example.

This how a simple configuration of Prometheus could look like:

global: 
  scrape_interval: 1m
  scrape_timeout: 10s
  evaluation_interval: 1m

scrape_configs:
  - job_name: mysql
    scheme: http
    target_groups:
    - targets: 
        - '10.17.148.31:9104'
      labels:
        zone: mysql

Every minute Prometheus accesses 172.17.148.31:9104/metrics (/metrics is a Prometheus convention) and labels the result with zone=mysql. Querying the data you can use the labels.

This is a simple configuration. The fun of Prometheus is to have a lot of targets/jobs.

Let’s have a look at our specific endpoint: …

[Read more]
Showing entries 7851 to 7860 of 44083
« 10 Newer Entries | 10 Older Entries »