Showing entries 39026 to 39035 of 44045
« 10 Newer Entries | 10 Older Entries »
MySQL Beats Oracle for Wireless Developers, is Beaten By Microsoft SQL Server

From: http://www.crn.com/sections/breakingnews/breakingnews.jhtml?articleId=196700062

The short version is that among 380 wireless application developers surveyed,
30% use Microsoft SQL Server as a backend,
20% use MySQL,
16% use Oracle.

Microsoft can offer bundles, so they can just offer SQL Server cheaply so long as companies have the MSDN service (I don’t know if they do, but they can). MySQL and Oracle are standalone offerings — no bundles. And as an embedded database, a MySQL license must be bought.

So this research shows that when customers have to pay for a database, they choose MySQL over Oracle. Granted, they choose Microsoft SQL Server over both.

Now, many folks say I’m a MySQL nut. I am, but that’s not the point — I do not advocate that MySQL is the only …

[Read more]
Which Virtualization software are you using for your MySQL servers?
solidDB for MySQL Sets Performance Record in Public Benchmark

Solid Information Technology, a provider of fast, always-on and affordable databases used in more than 3,000,000 mission-critical deployments worldwide, today announced that solidDB? for MySQL outperformed other MySQL transactional database engines in a public benchmark test. The benchmark results confirmed that solidDB for MySQL is the open source database that meets the performance and scalability requirements of high throughput, mission-critical applications. The publication of the results also coincided with the general availability of solidDB for MySQL, an open source relational database management system (RDBMS) that has been developed in partnership with MySQL AB and consists of the MySQL® server and solidDB Storage Engine.

Managing MySQL on Solaris 10: Part 3: Inter-process communication

Ever wondered how threads exchange data between themselves?

This sharing and exchange of data is made possible by inter-process communication, or IPC for short. There are several different types of inter-process communication for instance (IPC,System V IPC and POSIX IPC). In addition Solaris provides an additional advanced Solaris IPC.

According to Wikipedia:

Inter-Process Communication (IPC) is a set of techniques for the exchange of data between two or more threads in one or more processes. Processes may be running on one or more computers connected by a network. IPC techniques are divided into methods for message passing, synchronization, shared memory, and remote procedure calls (RPC). The method of IPC used may vary based on the bandwidth and latency of communication between the threads, and the type of data being …

[Read more]
Primary Key Order Does Matter!

There have been a few posts on PlanetMySQL regarding primary keys and the importance of choosing the right one. This is even more important when the table uses InnoDB. You've read different posts of why it is so important. Now, I'm all about benchmarks and showing the details. So I'll take a table from my previous posts about MySQL 5.1 partitioning and show what I found.

This table was created under MySQL 5.1.12-beta:


CREATE TABLE `big_table_test1` (
`entity_id` int(11) NOT NULL DEFAULT '0',
`col1` int(11) NOT NULL DEFAULT '0',
`col2` int(11) NOT NULL DEFAULT '0',
`col3` int(11) NOT NULL DEFAULT '0',
`col4` int(11) NOT NULL DEFAULT '0',
`col5` int(11) NOT NULL DEFAULT '0',
`col6` int(11) NOT NULL DEFAULT '0',
`ymdh` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`imps` bigint(20) NOT NULL DEFAULT '0',
`clicks` int(11) …
[Read more]
desc is sp_columns in Sql Server

In Oracle and MySql, to get the column name and data type of a table, you can use:

desc MyTable

or

describe MyTable

The equivalent of desc in Sql Server is sp_columns. Therefore, run the command below will get similar results:

sp_columns MyTable

Tools for Visual Studio 1.0.2 GA released.

Today we have released MySQL Tools for Microsoft Visual Studio 1.0.2 GA --a downloadable plug-in for Visual Studio 2005 that allows Windows developers to quickly build MySQL data-driven applications with Visual Studio. With this plug-in, developers will be able to create, modify and manage MySQL database objects with an easy-to-use interface from within the Visual Studio IDE. This product is delivered as a package compatible with Visual Studio 2005 and delivers the following features:

  • DDEX (Data Designer Extensibility) compatibility
  • Ability to work with MySQL objects (tables, views, stored procedures, etc) from within Server Explorer
  • Support for MySQL versions 4.1 and higher

IMPORTANT
This product will only work correctly with Connector/Net 5.0.2 and higher.

This release does not include the ability to work with the DataSet designer but we will be making a beta …

[Read more]
451 CAOS Links - 2006.12.15

Solera Networks Announces Open Source License for DataEcho Web Forensics Software, Solera Networks (Press Release)

Software Freedom Law Center Files Brief with Supreme Court Arguing Against Software Patents, Software Freedom Law Center (Press Release)

Is XenSource Virtualization Ready to Go Wide?, LinuxInsider, Jay Lyman (Article)

The cloudy future of mobile Linux, Computerworld, David Haskin (Article)

Financial …

[Read more]
Managing MySQL on Solaris 10: Part 2: Solaris Kernel Threads Model

The central component of most operating systems is the kernel. The kernel manages the resources of a system. In addition, the kernel facilitates and manages the communication between a system's hardware and software components.

Two levels of execution are provided by hardware: kernel mode execution and user mode execution. When in kernel mode, the software program can access all the instructions and every accessible piece of hardware. A program is in kernel space if running in kernel mode and in user space if running in user mode.

The Solaris kernel is a monolithic kernel, much like most Unix systems, as compared to a microkernel.

The software said to be running in …

[Read more]
Kill Dash Nine by Monzy

Was really surprised today when heard really funny rap song about “kill -9″ Unix command:

Showing entries 39026 to 39035 of 44045
« 10 Newer Entries | 10 Older Entries »