Showing entries 42106 to 42115 of 44047
« 10 Newer Entries | 10 Older Entries »
Oracle: We are the Borg?

Local venture cap/tech blogger Paul Kedrosky recent posted that: Larry Ellison has allegedly cooked up a plan to do a wide-ranging roll-up of companies in the open-source space. Not just JBoss, but a host of others, from Spikesource to Zend, and more inbetween. About the only sizable o/s company left standing would be Red Hat.

This may be an effective short term strategy to preserve Oracle's revenue - if Oracle's customers are uncertain enough, they won't risk switching away from Oracle's products.

Consider Oracle's general strategy in this area in the last five years. When it comes to Free Software/Open Source products, it seems to me that they:

  1. praise and support the FS/OS software products that give …
[Read more]
MySQL Connector/PHP for MySQL 4.1.18 released

Source: http://lists.mysql.com/announce/345

Dear MySQL users,

MySQL AB announces an updated release of the “MySQL Connector/PHP for MySQL and PHP”, the Windows downloads for connecting MySQL to PHP, as MySQL AB has released MySQL 4.1.18.

The MySQL Connector/PHP consists of the mysql/mysqli PHP extensions built against the latest version of the MySQL client libraries for Microsoft Windows.

The advantages on top of the mysql/mysqli PHP extensions currently available from php.net are that they contain the latest bug fixes to the MySQL Client Library, and make all the features in the MySQL server versions 4.1.18 and 5.0.18 available.

They are now available in binary format from the MySQL Connector/PHP download page at …

[Read more]
MySQL Connector/PHP for MySQL 4.1.18 released

Source: http://lists.mysql.com/announce/345

Dear MySQL users,

MySQL AB announces an updated release of the “MySQL Connector/PHP for MySQL and PHP”, the Windows downloads for connecting MySQL to PHP, as MySQL AB has released MySQL 4.1.18.

The MySQL Connector/PHP consists of the mysql/mysqli PHP extensions built against the latest version of the MySQL client libraries for Microsoft Windows.

The advantages on top of the mysql/mysqli PHP extensions currently available from php.net are that they contain the latest bug fixes to the MySQL Client Library, and make all the features in the MySQL server versions 4.1.18 and 5.0.18 available.

They are now available in binary format from the MySQL Connector/PHP download page at …

[Read more]
Mansour Safai - R.I.P.

Mansour Safai, one of the great unsung heroes of the software development tools industry, passed away in the early morning of February 9th.  The picture above is Mansour with his son Nicolai. 

Although Mansour was a private person his impact in the industry was profound.  He created the most successful standalone debugger of the 1980s, Multiscope, the Symantec C++ family of development tools, Visual Cafe, the first Java IDE and finally, M7 a visual development environment …

[Read more]
Education vs. Experience

I hated university and graduate school. I had a liberal arts education, so I was learning theory. Now, computer science theory is boring to someone who wants to make something useful. I understand why many folks dropped out of college to go work for the internet boom.

However, in the brief 5 years of work experience I’ve had since getting my Master’s, I’ve learned that a self-taught practicum only goes so far. Whether it’s system administration or database administration, the more basic levels of problem solving do not require much insight into how the system (OS or DB) works, the deeper problems do.

Some of that you can learn by doing, but most of the concepts aren’t learnable unless you’re digging into the source code.

That being said, I found a good web page today that goes through Entity-Relationship modeling. It’s very good, comprehensive.

[Read more]
Trigger privileges in MySQL 5.1.6

There are more great news about MySQL 5.1.6.

MySQL 5.1.6 will introduce the new TRIGGER privilege. From then on, you won't have to grant SUPER privilege (which allows much more than creating and dropping triggers, so it might not be a good choice to grant the SUPER privilege to non-administrators) anymore for users who should be able to deal with triggers. The exact details are described in the Change log for MySQL 5.1.6.

Cluster disk data presentation at VLDB 2005

At VLDB2005 in Trondheim, Norway I did a presentation that explained
the architecture of the implementation of disk data in MySQL Cluster.
It also explains the thinking process for the new node recovery
algorithm introduced as part of this work.

Presentation:

http://www.vldb2005.org/program/slides/wed/s1108-ronstrom.pdf


Paper:

http://www.vldb2005.org/program/paper/wed/p1108-ronstrom.pdf

Logging into database tables available in MySQL 5.1.6

I just received an email notification stating that the "Logging into database table" feature as of my Feature Request 12304 has been pushed into MySQL 5.1.6.

If I got that right, there will be two new tables in the mysql schema - "slow_log" and "general_log". You will have the choice whether to store log information in the file system, like you were used to - or to store them inside these new tables.

Together with the new Event Scheduling Feature (which can perfectly play together with the new logging feature - as I already wrote about in an earlier article), MySQL 5.1.6 will provide very interesting new features - I'm very much looking forward to testing …

[Read more]
Wanna know what's going on in the development trees?

There are perfect places to look at - watch here:

MySQL 5.1 (http://mysql.bkbits.net:8080/mysql-5.1-new)

10 Changesets in the last day
35 Changesets in the last two days
73 Changesets in the last three days
102 Changesets in the last four days
128 Changesets in the last week
309 Changesets in the last two weeks
447 Changesets in the last three weeks
612 Changesets in the last four weeks
992 Changesets in the last eight weeks
1505 Changesets in the last twelve weeks
3410 Changesets in the last six months
5331 Changesets in the last nine months
7492 Changesets in the last year
13858 Changesets in the last two years
17219 Changesets in the last three years

MySQL 5.0 ( …

[Read more]
Partition Pruning uncovered

The partitioning development for 5.1 is close to its completion (apart from the
stabilisation phase). An important part of this development is the ability to
prune away partitions not used in the query. Here follows some guidelines how
the optimiser handles this at the moment.

For most functions the optimizer can only handle equality conditions thus:
where partition_field = 2
or
where partiiton_field IN (2,3,4)

In this case the optimiser can use this independent of what the partition
function is. It will do so by actually applying the partition function on the
equal value thus:
partition_function(2) = partition 3
partition_function(3) = partition 5
partition_function(4) = partition 3

It will set a bit in partition_used bitmap to indicate which partitions are used
to indicate to the executer which partitions to scan. …

[Read more]
Showing entries 42106 to 42115 of 44047
« 10 Newer Entries | 10 Older Entries »