Linux-OS » Bases de Datos

Atacan el sitio web de MySQL a través de una inyección SQL

12 04 2011

El sitio web de MySQL ha sido objeto de un ataque a través de una vulnerabilidad de inyección ciega de código SQL. Se trata de un fallo en el código de la aplicación web y no de la base de datos.

Lea el resto »



Denegación de servicio en MySQL

19 07 2010

Se ha descubierto una vulnerabilidad en MySQL que podría ser utilizada por un atacante para provocar una denegación de servicio.

MySQL es un sistema de gestión de base de datos relacional, multihilo y multiusuario que se desarrolla como software libre y cuenta con millones de implantaciones en todo el mundo.

Lea el resto »



VMWare patrocina el desarrollo de Redis

19 05 2010

En un indicio más del surgimiento de las bases de datos no-relacionales potenciado por la creciente popularidad de la nube computacional para aplicaciones de negocios serias, VMWare, el reconocido proveedor de soluciones de virtualización, contrató al principal desarrollador de Redis.

Lea el resto »



MySQL and JSP Web Applications

2 05 2010

Sams (4-2002) | CHM | 576 pages | 0672323095 | 5.6Mb

Lea el resto »



High Performance MySQL Second Edition

24 01 2010

In High Performance MySQL you will learn about MySQL indexing and optimization in depth so you can make better use of these key features. You will learn practical replication, backup, and load-balancing strategies with information that goes beyond available tools to discuss their effects in real-life environments. And you’ll learn the supporting techniques you need to carry out these tasks, including advanced configuration, benchmarking, and investigating log

Lea el resto »



MariaDB 5.1.41 RC

20 01 2010

Finalmente Michael “Monty” Widenius anunció así el muy anticipado primer Release Candidate (RC) de su “fork” de MySQL: MariaDB 5.1.41 RC ya está disponible para descargarse y probarse, y además de sus fuentes también hay paquetes binarios para las arquitecturas i686 y x86-64, pero sólo para Linux.

Lea el resto »



Microsoft presenta su asistente de migración de MySQL a SQL Server

15 01 2010

Sin duda queriendo capitalizar la incertidumbre alrededor del futuro de MySQL, Microsoft acaba de presentar una herramienta para ayudar a que los usuarios de MySQL migren sus datos a SQL Server. El nuevo SQL Server Migration Assistant for MySQL (SSMA) “dramáticamente reduce el esfuerzo, costo y riesgo de migrar desde MySQL a SQL Server 2003, 2008 y SQL Azure”.

Lea el resto »



Mysql: actualizar valores binarios

24 12 2009

Si querés actualizar un valor de 0 a 1 o de 1 a 0? una cosa que dependa de otra? por una condición? es fácil:

update usuario set negativizer =
case when negativizer = 0
then 1
else 0
end
where id_usuario = 1

Lo que hace es simplemente cambiar el valor cuando ya tiene uno y al volver a ejecutar esta sentencia lo vuelve a cambiar, ideal para valores binarios como este caso.

:wq!



Beginning MySQL

23 12 2009

* Provides programmers with a complete foundation in MySQL, the multi-user, multi-threaded SQL database server that easily stores, updates, and accesses information

Lea el resto »



Vulnerabilidades en PostgreSQL

22 12 2009

Se han corregido dos nuevas vulnerabilidades en PostgreSQL (versiones 8.x y 7.4) que podrían ser empleadas por un atacante para evitar restricciones de seguridad o elevar sus privilegios.

Lea el resto »



Cual es el tipo autonumérico de access en mysql

24 11 2009

Para los usuarios que vienen del mundo Micro$oft Access y estan buscando el tipo de dato “autonumérico” en MySQL tienen que utilizar “AUTO_INCREMENT”

Mas info aquí y aquí.



PHP With MySQL

24 11 2009

Lea el resto »



Base de datos relacional - MySQL - como servicio de Amazon

7 11 2009

Amazon da un nuevo paso en su rol como gran innovador en la infraestructura como servicio, anuncia el lanzamiento de base de datos relacionales - MySQL como servicio. La idea - como en el resto de sus web services - es que Amazon hospeda la base de datos del cliente, a la que se accede a través de un API. Con este movimiento ya ofrecen tres modos de almacenamiento: S3 para ficheros, SimpleDB y ahora relacional / MySQL.

Lea el resto »



MySQL, Second Edition

30 10 2009

Even if you’ve never used MySQL before, this Visual QuickStart Guide will have you up and running with the world’s most popular open source database application in no time. In this completely updated edition of our best-selling guide to MySQL, leading technology author Larry Ullman uses his trademark crystal-clear instructions and friendly prose to introduce you to everything that’s new in MySQL. Filled with step-by-step, task-based instructions and loads of visual aids, this book explains how to interact with MySQL using SQL, the language common to all databases. The interface examples show how to use MySQL’s own tools and how to use three popular programming languages (PHP, Perl, and Java). The book covers MySQL versions 3 and 4, as well as everything new in the eagerly anticipated version 5. Along the way, you’ll find extensive coverage of MySQL installation, administration, database design, as well as its use with various programming languages, database programming techniques, utilities, advanced MySQL and SQL, and more!

Lea el resto »



Creating your MySQL Database

30 10 2009

A short guide for everyone on how to structure your data and set-up your MySQL database tables efficiently and easily.

* How best to collect, name, group, and structure your data
* Design your data with future growth in mind
* Practical examples from initial ideas to final designs

* The quickest way to learn how to design good data structures for MySQL
* From the author of Mastering phpMyAdmin

Lea el resto »