Displaying posts with tag: mariadb (reset)
MySQL-MariaDB Registry files

One feature from MySQL (also from MariaDB) very useful for DBA is registry files, that stores everything of what is happening on the server. You have several alternatives. By default, all registry files are located on the data dir, although you can force to save it to a different path (you must do this using …

Continue reading »

Esta entrada MySQL-MariaDB Registry files es contenido original de Manejando datos - Blog de bases de datos y programación. This entrance MySQL-MariaDB Registry files is created by Manejando datos …

[Lea más]
Vincular MySQL-MariaDB en MS Access

La entrada de hoy es breve, pero incluye algunas recomendaciones bastante importantes, que me han tenido entretenido buena parte de la mañana (y yo sin saberlo). El objetivo es vincular una tabla que tenemos en un servidor MySQL o MariaDB, utilizando ODBC, con Microsoft Access (o sea, hacer de MS Access el front-end de MySQL). …

Continuar leyendo »

Esta entrada Vincular MySQL-MariaDB en MS Access es contenido original de Manejando datos - Blog de bases de datos y programación. This entrance Vincular MySQL-MariaDB en MS Access is created by …

[Lea más]
Linking MySQL-MariaDB under MS Access

Today’s entrance pretend to give you two good recommendations, after a whole morning busy trying to solve a simple cuestion. The objective is linking a table that lives on a MySQL o MariaDB server on Microsoft Access, using ODBC (using MS Access as a MySQL front-end). This simple task, can be too dramatic if you …

Continue reading »

Esta entrada Linking MySQL-MariaDB under MS Access es contenido original de Manejando datos - Blog de bases de datos y programación. This entrance Linking MySQL-MariaDB under MS Access is created by …

[Lea más]
Adminer, a simple but effective database manager

Last week I was asked for help to the invertigation group I work with at University of Cordoba UCO for setting up a  WordPress page, instead of Joomla. In order to access the files by FTP, I use Filezilla with success, but I didn’t know how to access the database for creating a backup (backup). …

Continue reading »

Esta entrada Adminer, a simple but effective database manager es contenido original de Manejando datos - Blog de bases de datos y programación. This entrance Adminer, a simple but effective database manager is created by …

[Lea más]
Adminer, un administrador de bases de datos muy práctico

La semana pasada recibí un pequeño encargo del grupo de investigación de la UCO con la que colaboro, de montar un WordPress, en sustitución de Joomla. Para acceder a los ficheros a través de FTP pude usar Filezilla sin problema, pero a la base de datos no sabía cómo acceder para hacer su correspondiente copia …

Continuar leyendo »

Esta entrada Adminer, un administrador de bases de datos muy práctico es contenido original de Manejando datos - Blog de bases de datos y programación. This entrance …

[Lea más]
Listing primary keys of a database in MySQL-MariaDB

A few days ago, I needed to ask to all tables of a database about what is the name of the primary key of each table. The solution is easy, just using the data from the database information_schema, and by retrieving the data for the selected schema, this way: SELECT TABLE_NAME as table, COLUMN_NAME FROM …

Continue reading »

The post Listing primary keys of a database in MySQL-MariaDB appeared first on Manejando datos.

Listado de claves primarias de una base de datos en MariaDb-MySQL

Hace unos días, tuve necesidad de preguntarle a todas las tablas de una base de datos cuál es su clave primaria. Una solución sencilla es generar una consulta utilizando information_schema, recuperando sólo los datos del esquema que me interesa, de la siguiente forma: SELECT TABLE_NAME as tabla, COLUMN_NAME FROM `information_schema`.`COLUMNS` WHERE (`TABLE_SCHEMA` = 'basededatos') AND …

Continuar leyendo »

The post Listado de claves primarias de una base de datos en MariaDb-MySQL appeared first on Manejando datos.

Solution to MySQL Error 1146: tables needed on “mysql” database

A friend of mine asked my for some help to install MySQL, so, I sent him the MySQL 5.7.2 installer, the same file I tried to install with no success, as I already talk on this blog here and here (both in spanish, and in a few weeks it will be in english). Again, error …

Continue reading »

The post Solution to MySQL Error 1146: tables needed on “mysql” database appeared first on Manejando datos.

Solucionando Error 1146 MySQL por faltar tablas en la base de datos “mysql”

Me pide un amigo ayuda para instalar MySQL, así que … voy y le envio el fichero MySQL 5.7.2 que había intentado instalar sin éxito, tal y cómo he contado en este blog aquí en una primera parte y aquí en una segunda, ambas sin éxito. De nuevo, error 1053 A los pocos minutos, me …

Continuar leyendo »

The post Solucionando Error 1146 MySQL por faltar tablas en la base de datos “mysql” appeared first on Manejando datos.

common schema. Listing Functions and stored procedures with its dependencies

Let’s keep on learning more about common_schema. In today’s entrance, let’s introduce two more functionalities, very cool for developers, because they are related with funcions and stored procedures. Let’s begin with stored procedures (SP). If you need a list of all stored procedures of our server, just type this SQL sentence: SHOW PROCEDURE STATUS; However, …

Continue reading »

The post common schema. Listing Functions and stored procedures with its dependencies appeared first on Manejando datos.