Re: MySQL 5.0.4-beta has been released

2005-04-19 Thread Martijn Tonies
 A new version of MySQL Community Edition 5.0.4-beta Open Source database
 management system has been released.  This version now includes support
for
 Stored Procedures, Triggers, Views and many other features.  It is now
 available in source and binary form for a number of platforms from our
 download pages at http://dev.mysql.com/downloads/ and mirror sites.

Woohoo, it works on Windows :-)

One thing that it doesn't do yet though, is saving the view
definition in a human readable way instead of that auto-generated
gibberish :-)

With regards,

Martijn Tonies
Database Workbench - developer tool for InterBase, Firebird, MySQL  MS SQL
Server
Upscene Productions
http://www.upscene.com


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: MySQL 5.0.4-beta has been released

2005-04-19 Thread Fredrick Bartlett
Hmmm, it ran for about two hours (Win32) then crashed. I don't receive any
error messages to post. Server just stops???

- Original Message - 
From: Martijn Tonies [EMAIL PROTECTED]
To: Joerg Bruehe [EMAIL PROTECTED]; [EMAIL PROTECTED]
Cc: MySQL General List mysql@lists.mysql.com;
[EMAIL PROTECTED]
Sent: Tuesday, April 19, 2005 2:42 AM
Subject: Re: MySQL 5.0.4-beta has been released


  A new version of MySQL Community Edition 5.0.4-beta Open Source database
  management system has been released.  This version now includes support
 for
  Stored Procedures, Triggers, Views and many other features.  It is now
  available in source and binary form for a number of platforms from our
  download pages at http://dev.mysql.com/downloads/ and mirror sites.

 Woohoo, it works on Windows :-)

 One thing that it doesn't do yet though, is saving the view
 definition in a human readable way instead of that auto-generated
 gibberish :-)

 With regards,

 Martijn Tonies
 Database Workbench - developer tool for InterBase, Firebird, MySQL  MS
SQL
 Server
 Upscene Productions
 http://www.upscene.com


 -- 
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:
http://lists.mysql.com/[EMAIL PROTECTED]



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: MySQL 5.0.4-beta has been released

2005-04-19 Thread Reggie Burnett
What were you doing when it failed?  What type of connections was it 
handling?

Hmmm, it ran for about two hours (Win32) then crashed. I don't receive any
error messages to post. Server just stops???
- Original Message - 
From: Martijn Tonies [EMAIL PROTECTED]
To: Joerg Bruehe [EMAIL PROTECTED]; [EMAIL PROTECTED]
Cc: MySQL General List mysql@lists.mysql.com;
[EMAIL PROTECTED]
Sent: Tuesday, April 19, 2005 2:42 AM
Subject: Re: MySQL 5.0.4-beta has been released

 

A new version of MySQL Community Edition 5.0.4-beta Open Source database
management system has been released.  This version now includes support
 

for
   

Stored Procedures, Triggers, Views and many other features.  It is now
available in source and binary form for a number of platforms from our
download pages at http://dev.mysql.com/downloads/ and mirror sites.
 

Woohoo, it works on Windows :-)
One thing that it doesn't do yet though, is saving the view
definition in a human readable way instead of that auto-generated
gibberish :-)
With regards,
Martijn Tonies
Database Workbench - developer tool for InterBase, Firebird, MySQL  MS
   

SQL
 

Server
Upscene Productions
http://www.upscene.com
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:
   

http://lists.mysql.com/[EMAIL PROTECTED]
 


 


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


Re: MySQL 5.0.4-beta has been released

2005-04-19 Thread Fredrick Bartlett
Here are the sequence of queries that executed before the server crashed...

CREATE TEMPORARY TABLE COMETTRACKER.DELIVERY_TRACKING_ETA (
PACKAGEID BIGINT NOT NULL,
RECID_CTASKDATA BIGINT ,
RECTYPE INT(11) ,
USERID INT(11) ,
TIMETAG1 DATETIME ,
TIMETAG2 DATETIME ,
P_DATA1 VARCHAR(20) ,
P_DATA2 VARCHAR(20) ,
SEQVALUE INT(11) ,
SEQUENCE_NUM_TRIP INT(11) ,
COMPANY_CD VARCHAR(6),
PRODUCT_CD CHAR(2),
IO_NUM VARCHAR(4),
BARCODE VARCHAR(25),
SEQCODE VARCHAR(6),
SEQCODE1 VARCHAR(6),
PRIMARY KEY (PACKAGEID),
UNIQUE RECIDTASKDATA(RECID_CTASKDATA),
KEY COCODE (COMPANY_CD, PRODUCT_CD)
)

INSERT INTO COMETTRACKER.DELIVERY_TRACKING_ETA(
PACKAGEID,
RECID_CTASKDATA,
RECTYPE,
USERID,
TIMETAG1,
TIMETAG2,
P_DATA1,
P_DATA2,
SEQVALUE,
SEQUENCE_NUM_TRIP,
COMPANY_CD,
PRODUCT_CD,
IO_NUM,
BARCODE,
SEQCODE,
SEQCODE1)
SELECT
PACKAGEID,
RECID_CTASKDATA,
RECTYPE,
USERID,
TIMETAG1,
TIMETAG2,
P_DATA1,
P_DATA2,
SEQVALUE,
SEQUENCE_NUM_TRIP,
COMPANY_CD,
PRODUCT_CD,
IO_NUM,
BARCODE,
SEQCODE,
SEQCODE1
FROM COMETTRACKER.DELIVERY_TRACKING
WHERE TRIP_DATE = 20050519
AND P_DATA1 = 14 
AND USERID = 21234
ORDER BY RECID_CTASKDATA

CREATE TEMPORARY TABLE COMETTRACKER.DELIVERY_TRACKING_SORT
SELECT
MIN(SEQVALUE) SEQVALUE,
COMPANY_CD,
PRODUCT_CD,
IO_NUM
FROM COMETTRACKER.DELIVERY_TRACKING_ETA
WHERE P_DATA1 = 14
AND (P_DATA2 =  OR P_DATA2 IS NULL)
GROUP BY COMPANY_CD
ORDER BY COMPANY_CD

UPDATE COMETTRACKER.DELIVERY_TRACKING_ETA D, 
COMETTRACKER.DELIVERY_TRACKING_SORT S SET
D.SEQVALUE = S.SEQVALUE
WHERE (D.P_DATA2 =  OR D.P_DATA2 IS NULL)
AND (S.COMPANY_CD = D.COMPANY_CD
AND S.PRODUCT_CD = D.PRODUCT_CD
AND S.IO_NUM = D.IO_NUM)

This query below did not execute because Server Had Gone Away

UPDATE COMETTRACKER.DELIVERY_TRACKING D, COMETTRACKER.DELIVERY_TRACKING_ETA E 
SET
D.SEQVALUE = E.SEQVALUE
WHERE (E.PACKAGEID = D.PACKAGEID)







- Original Message - 
From: Reggie Burnett [EMAIL PROTECTED]
To: Fredrick Bartlett [EMAIL PROTECTED]
Cc: MySQL General List mysql@lists.mysql.com
Sent: Tuesday, April 19, 2005 8:00 AM
Subject: Re: MySQL 5.0.4-beta has been released


 What were you doing when it failed?  What type of connections was it 
 handling?
 
 Hmmm, it ran for about two hours (Win32) then crashed. I don't receive any
 error messages to post. Server just stops???
 
 - Original Message - 
 From: Martijn Tonies [EMAIL PROTECTED]
 To: Joerg Bruehe [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Cc: MySQL General List mysql@lists.mysql.com;
 [EMAIL PROTECTED]
 Sent: Tuesday, April 19, 2005 2:42 AM
 Subject: Re: MySQL 5.0.4-beta has been released
 
 
   
 
 A new version of MySQL Community Edition 5.0.4-beta Open Source database
 management system has been released.  This version now includes support
   
 
 for
 
 
 Stored Procedures, Triggers, Views and many other features.  It is now
 available in source and binary form for a number of platforms from our
 download pages at http://dev.mysql.com/downloads/ and mirror sites.
   
 
 Woohoo, it works on Windows :-)
 
 One thing that it doesn't do yet though, is saving the view
 definition in a human readable way instead of that auto-generated
 gibberish :-)
 
 With regards,
 
 Martijn Tonies
 Database Workbench - developer tool for InterBase, Firebird, MySQL  MS
 
 
 SQL
   
 
 Server
 Upscene Productions
 http://www.upscene.com
 
 
 -- 
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:
 
 
 http://lists.mysql.com/[EMAIL PROTECTED]
   
 
 
 
   
 
 

MySQL 5.0.4-beta has been released

2005-04-18 Thread Joerg Bruehe
Hi,

A new version of MySQL Community Edition 5.0.4-beta Open Source database
management system has been released.  This version now includes support for
Stored Procedures, Triggers, Views and many other features.  It is now
available in source and binary form for a number of platforms from our
download pages at http://dev.mysql.com/downloads/ and mirror sites.

Note that not all mirror sites may be up-to-date at this point. If you
cannot find this version on a particular mirror, please try again later or
choose another download site.

This is the second Beta release in the 5.0 series. All attention will now be
focused on fixing bugs and stabilizing 5.0 for later production release.

NOTE: This Beta release, as any other pre-production release, should not be
installed on ``production'' level systems or systems with critical data. It
is good practice to back up your data before installing any new version of
software.  Although MySQL has done its best to ensure a high level of
quality, protect your data by making a backup as you would for any software
beta release.

Please refer to our bug database at http://bugs.mysql.com/ for more details
about the individual open and resolved bugs in this version.

Changes in release 5.0.4-beta:

   Functionality added or changed:
 * SHOW CREATE TABLE for an INFORMATION_SCHEMA table no longer prints a
   MAX_ROWS value because the value has no meaning. (Bug #8941)
 * Invalid DEFAULT values for CREATE TABLE now generate errors.
   (Bug #5902)
 * Added  --show-table-type  option to mysqlshow, to display a column
   indicating the table type, as in SHOW FULL TABLES. (Bug #5036)
 * The way the time zone information is stored into the binary log was
   changed, so that it's now possible to have a replication master and
   slave running with different global time zones. A drawback is that
   replication from 5.0.4 masters to pre-5.0.4 slaves is impossible.
 * Added --with-big-tables compilation option to configure. (Previously
   it was necessary to pass -DBIG_TABLES to the compiler manually in
   order to enable large table support.) See section 2.8.2 Typical
   configure Options for details.
 * New configuration directives !include and !includedir implemented for
   including option files and searching directories for option files.
   See section 4.3.2 Using Option Files for usage.

   Bugs fixed:
 * Fixed a Commands out of sync error when two prepared statements for
   single-row result sets were open simultaneously. (Bug #8880)
 * Fixed a server crash after a call to mysql_stmt_close() for
   single-row result set. (Bug #9159)
 * Fixed server crashes for CREATE TABLE ... SELECT or INSERT INTO ...
   SELECT when selecting from multiple-table view.
   (Bug #8703, Bug #9398)
 * TRADITIONAL SQL mode should prevent inserts where a column with no
   default value is omitted or set to a value of DEFAULT. Fixed cases
   where this restriction was not enforced. (Bug #5986)
 * Fixed a server crash when creating a PRIMARY KEY for a table, if the
   table contained a BIT column. (Bug #9571)
 * Warning message from GROUP_CONCAT() did not always indicate correct
   number of lines. (Bug #8681)
 * The  commit  count cache for NDB was not properly invalidated when
   deleting a record using a cursor. (Bug #8585)
 * Fixed option-parsing code for the embedded server to understand K, M,
   and G suffixes for the net_buffer_length and max_allowed_packet
   options. (Bug #9472)
 * Selecting a BIT column failed if the binary client/server protocol
   was used. (Bug #9608)
 * Fixed a permissions problem whereby information in INFORMATION_SCHEMA
   could be exposed to a user with insufficient privileges. (Bug #7214)
 * Now one gets an error if one tries to insert an invalid value via a
   stored procedure in STRICT mode. (Bug #5907)
 * Link with libsupc++ on Fedora Core 3 to get language support
   functions. (Bug #6554)
 * The value of the CHARACTER_MAXIMUM_LENGTH and CHARACTER_OCTET_LENGTH
   columns of the INFORMATION_SCHEMA.COLUMNS table must be NULL for
   numeric columns, but were not. (Bug #9344)
 * DROP TABLE did not drop triggers that were defined for the table.
   DROP DATABASE did not drop triggers in the database.
   (Bug #5859, Bug #6559)
 * CREATE OR REPLACE VIEW and ALTER VIEW now require the CREATE VIEW and
   DROP privileges, not CREATE VIEW and DELETE. (DELETE is a row-level
   privilege, not a table-level privilege.) (Bug #9260)
 * Some  user  variables  were  not  being  handled with ``implicit''
   coercibility. (Bug #9425)
 * Setting the max_error_count system variable to 0 resulted in a
   setting of 1. (Bug #9072)
 * Fixed a collation coercibility problem that caused a union between
   binary and non-binary columns to fail. (Bug #6519)
 

Re: MySQL 5.0.4-beta has been released

2005-04-18 Thread Josh Trutwin
On Mon, 18 Apr 2005 13:28:24 +0200
Joerg Bruehe [EMAIL PROTECTED] wrote:

 Hi,
 
 A new version of MySQL Community Edition 5.0.4-beta Open Source
 database management system has been released.  This version now
 includes support for Stored Procedures, Triggers, Views and many
 other features.  It is now available in source and binary form for a
 number of platforms from our download pages at
 http://dev.mysql.com/downloads/ and mirror sites.
 
 Note that not all mirror sites may be up-to-date at this point. If
 you cannot find this version on a particular mirror, please try
 again later or choose another download site.

snip

The mirrors seem to have links to the source tarball, but I've
downloaded 5 different files and each time I get:

# tar zxvf mysql-5.0.4-beta.tar.gz 

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error exit delayed from previous errors

Something amiss or am I losing it?

Thanks,

Josh


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: MySQL 5.0.4-beta has been released

2005-04-18 Thread Joerg Bruehe
Hi!

Am Mo, den 18.04.2005 schrieb Josh Trutwin um 17:46:
 On Mon, 18 Apr 2005 13:28:24 +0200
 Joerg Bruehe [EMAIL PROTECTED] wrote:
 
  [[...]]
  
  Note that not all mirror sites may be up-to-date at this point. If
  you cannot find this version on a particular mirror, please try
  again later or choose another download site.
 
 snip
 
 The mirrors seem to have links to the source tarball, but I've
 downloaded 5 different files and each time I get:
 
 # tar zxvf mysql-5.0.4-beta.tar.gz 
 
 gzip: stdin: not in gzip format
 tar: Child returned status 1
 tar: Error exit delayed from previous errors
 
 Something amiss or am I losing it?

Hard to tell - for me, it works on our machine:

~/stage/Downloads/MySQL-5.0 tar ztvf mysql-5.0.4-beta.tar.gz | head
drwxrwxrwx 503/100   0 2005-04-16 21:10:24 mysql-5.0.4-beta/
drwxrwxrwx 503/100   0 2005-04-16 21:10:06 mysql-5.0.4-beta/bdb/
-rw-r--r-- 503/1001998 2005-04-16 21:01:45 
mysql-5.0.4-beta/bdb/Makefile.in
...

and it works on my private PC with a package downloaded from Sunsite Europe:
http://dev.mysql.com/get/Downloads/MySQL-5.0/mysql-5.0.4-beta.tar.gz/from/http://sunsite.informatik.rwth-aachen.de/mysql/

[EMAIL PROTECTED]:~ tar tzvf /opt/Downloads/mysql-5.0.4-beta.tar.gz | head
drwxrwxrwx 503/100   0 2005-04-16 21:10:24 mysql-5.0.4-beta/
drwxrwxrwx 503/100   0 2005-04-16 21:10:06 mysql-5.0.4-beta/bdb/
-rw-r--r-- 503/1001998 2005-04-16 21:01:45 
mysql-5.0.4-beta/bdb/Makefile.in
...


Are you sure it did not get damaged during transfer, or by your browser?
All I can recommend is to try another mirror.

HTH,
Joerg Bruehe

-- 
Joerg Bruehe, Senior Production Engineer
MySQL AB, www.mysql.com


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: MySQL 5.0.4-beta has been released

2005-04-18 Thread Josh Trutwin
On Mon, 18 Apr 2005 18:04:46 +0200
Joerg Bruehe [EMAIL PROTECTED] wrote:

snip

 Are you sure it did not get damaged during transfer, or by your
 browser? All I can recommend is to try another mirror.

I'm using elinks text browser, which has worked great for this in the
past.  I tried about 4 different mirrors.  I'll keep at it and see if
I get a better download.

Thx,

Josh

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]