mysql 3.23.58

mysql 3.23.58

am 10.08.2006 01:29:57 von Pritesh Chandra

------=_NextPart_000_018B_01C6BC70.4F426C30
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I have mysql 4.1.16 loaded in one server and the other server has mysql =
3.23.58

when i do a mysqldump from 4.1.16 and try to load it on 3.23.58,
i get this error You have an error in your SQL syntax near =
'ENGINE=3DMyISAM DEFAULT CHARSET=3Dlatin1'

i cant figure out what i am doing wrong.

thanks

=20
This email and any attachments may contain privileged and confidential =
information and are intended for the addressee only. If you have =
received this email in error, please notify the sender and delete this =
e-mail immediately. Any confidentiality, privilege or copyright is not =
waived or lost because this email has been sent to you in error. It is =
your responsibility to check this email and any attachments for viruses. =
No warranty is made that this material is free from any computer virus =
or any error. Any loss/damage incurred by using this material is not the =
sender's responsibility.

------=_NextPart_000_018B_01C6BC70.4F426C30--

RE: mysql 3.23.58

am 10.08.2006 01:35:13 von sandesh nair

Check whether the charset & engine of both the version are same

Thanks & Regards,
Sandesh Nair
=20
-----Original Message-----
From: Pritesh Chandra [mailto:pritesh@fijilive.com]=20
Sent: Thursday, August 10, 2006 5:00 AM
To: bugs@lists.mysql.com
Subject: mysql 3.23.58

I have mysql 4.1.16 loaded in one server and the other server has mysql
3.23.58

when i do a mysqldump from 4.1.16 and try to load it on 3.23.58,
i get this error You have an error in your SQL syntax near
'ENGINE=3DMyISAM DEFAULT CHARSET=3Dlatin1'

i cant figure out what i am doing wrong.

thanks

=20
This email and any attachments may contain privileged and confidential
information and are intended for the addressee only. If you have
received this email in error, please notify the sender and delete this
e-mail immediately. Any confidentiality, privilege or copyright is not
waived or lost because this email has been sent to you in error. It is
your responsibility to check this email and any attachments for viruses.
No warranty is made that this material is free from any computer virus
or any error. Any loss/damage incurred by using this material is not the
sender's responsibility.

--
MySQL Bugs Mailing List
For list archives: http://lists.mysql.com/bugs
To unsubscribe: http://lists.mysql.com/bugs?unsub=3Dgcdmb-bugs@m.gmane.org

Re: mysql 3.23.58

am 10.08.2006 01:48:03 von Paul Coldrey

Hi Pritesh,

This doesn't look like a bug and so it really should have been sent to
one of the support lists rather than the bugs list. If you feel it is a
bug then you should provide a sample script that exposes the bug and
report it at http://bugs.mysql.com/.

Looks to me like a minor syntax change between 3.23 and 4.1. Perhaps the
ENGINE syntax appeared after 3.23 and if you replace this with
TYPE=MyISAM it might all work,.... I couldn't find any reference in the
manual to which version the ENGINE syntax started but as I recall TYPE
was the original syntax.

Cheers,

Paul.


Pritesh Chandra wrote:
> I have mysql 4.1.16 loaded in one server and the other server has mysql 3.23.58
>
> when i do a mysqldump from 4.1.16 and try to load it on 3.23.58,
> i get this error You have an error in your SQL syntax near 'ENGINE=MyISAM DEFAULT CHARSET=latin1'
>
> i cant figure out what i am doing wrong.
>
> thanks
>
>
> This email and any attachments may contain privileged and confidential information and are intended for the addressee only. If you have received this email in error, please notify the sender and delete this e-mail immediately. Any confidentiality, privilege or copyright is not waived or lost because this email has been sent to you in error. It is your responsibility to check this email and any attachments for viruses. No warranty is made that this material is free from any computer virus or any error. Any loss/damage incurred by using this material is not the sender's responsibility.
>
>


--
Paul Coldrey
http://www.ensigma.com.au/



--
MySQL Bugs Mailing List
For list archives: http://lists.mysql.com/bugs
To unsubscribe: http://lists.mysql.com/bugs?unsub=gcdmb-bugs@m.gmane.org

Re: mysql 3.23.58

am 10.08.2006 01:51:11 von Paul DuBois

At 9:18 +0930 8/10/06, Paul Coldrey wrote:
>Hi Pritesh,
>
>This doesn't look like a bug and so it really should have been sent to
>one of the support lists rather than the bugs list. If you feel it is a
>bug then you should provide a sample script that exposes the bug and
>report it at http://bugs.mysql.com/.
>
>Looks to me like a minor syntax change between 3.23 and 4.1. Perhaps the
>ENGINE syntax appeared after 3.23 and if you replace this with
>TYPE=MyISAM it might all work,.... I couldn't find any reference in the
>manual to which version the ENGINE syntax started but as I recall TYPE
>was the original syntax.
>
>Cheers,
>
> Paul.

Use the --compatible=mysql323 option for mysqldump to disable the
CREATE TABLE clauses that won't work in MySQL 3.23.


>
>
>Pritesh Chandra wrote:
>>I have mysql 4.1.16 loaded in one server and the other server has
>>mysql 3.23.58
>>
>>when i do a mysqldump from 4.1.16 and try to load it on 3.23.58,
>>i get this error You have an error in your SQL syntax near
>>'ENGINE=MyISAM DEFAULT CHARSET=latin1'
>>
>>i cant figure out what i am doing wrong.
>>
>>thanks
>>
>> This email and any attachments may contain privileged and
>>confidential information and are intended for the addressee only.
>>If you have received this email in error, please notify the sender
>>and delete this e-mail immediately. Any confidentiality, privilege
>>or copyright is not waived or lost because this email has been sent
>>to you in error. It is your responsibility to check this email and
>>any attachments for viruses. No warranty is made that this material
>>is free from any computer virus or any error. Any loss/damage
>>incurred by using this material is not the sender's responsibility.
>>
>>
>
>
>--
>Paul Coldrey
>http://www.ensigma.com.au/
>
>
>
>--
>MySQL Bugs Mailing List
>For list archives: http://lists.mysql.com/bugs
>To unsubscribe: http://lists.mysql.com/bugs?unsub=paul@mysql.com


--
Paul DuBois, MySQL Documentation Team
Madison, Wisconsin, USA
MySQL AB, www.mysql.com

--
MySQL Bugs Mailing List
For list archives: http://lists.mysql.com/bugs
To unsubscribe: http://lists.mysql.com/bugs?unsub=gcdmb-bugs@m.gmane.org

Re: mysql 3.23.58

am 10.08.2006 03:23:29 von Pritesh Chandra

Thanks for the help. Sorry about posting this here as i was not sure
whether it was a bug or not. I even emailed on bugs-owner@lists.mysql.com
to ask him/her whether it was ok to post this question here but i didnt get
a reply so i went ahead and posted it today.

Thanks for the help.
cheers

This email and any attachments may contain privileged and confidential
information and are intended for the addressee only. If you have received
this email in error, please notify the sender and delete this e-mail
immediately. Any confidentiality, privilege or copyright is not waived or
lost because this email has been sent to you in error. It is your
responsibility to check this email and any attachments for viruses. No
warranty is made that this material is free from any computer virus or any
error. Any loss/damage incurred by using this material is not the sender's
responsibility.

----- Original Message -----
From: "Hartmut Holzgraefe"
To: "Pritesh Chandra"
Cc:
Sent: Thursday, August 10, 2006 11:40 AM
Subject: Re: mysql 3.23.58


Pritesh Chandra wrote:
> I have mysql 4.1.16 loaded in one server and the other server has mysql
> 3.23.58
>
> when i do a mysqldump from 4.1.16 and try to load it on 3.23.58,
> i get this error You have an error in your SQL syntax near 'ENGINE=MyISAM
> DEFAULT CHARSET=latin1'
>
> i cant figure out what i am doing wrong.

See http://dev.mysql.com/doc/refman/4.1/en/mysqldump.html

--compatible=name

Produce output that is more compatible with other database systems
or with older MySQL servers. The value of name can be ansi, mysql323,
mysql40, postgresql, oracle, mssql, db2, maxdb, no_key_options,
no_table_options, or no_field_options. To use several values, separate
them by commas. These values have the same meaning as the corresponding
options for setting the server SQL mode. See Section 5.2.5,
“The Server SQL Mode”.

This option does not guarantee compatibility with other servers.
It only enables those SQL mode values that are currently available for
making dump output more compatible. For example, --compatible=oracle
does not map data types to Oracle types or use Oracle comment syntax.

This option requires a server version of 4.1.0 or higher.
With older servers, it does nothing.


PS: the bugs list is not the right list for questions like this,
better use

http://lists.mysql.com/mysql

or one of the forums at

http://forums.mysql.com/

next time


--
Hartmut Holzgraefe, Senior Support Engineer .
MySQL AB, www.mysql.com




--
MySQL Bugs Mailing List
For list archives: http://lists.mysql.com/bugs
To unsubscribe: http://lists.mysql.com/bugs?unsub=gcdmb-bugs@m.gmane.org

Re: mysql 3.23.58

am 10.08.2006 03:27:43 von Pritesh Chandra

Thanks
Pritesh Chandra,

This email and any attachments may contain privileged and confidential
information and are intended for the addressee only. If you have received
this email in error, please notify the sender and delete this e-mail
immediately. Any confidentiality, privilege or copyright is not waived or
lost because this email has been sent to you in error. It is your
responsibility to check this email and any attachments for viruses. No
warranty is made that this material is free from any computer virus or any
error. Any loss/damage incurred by using this material is not the sender's
responsibility.

----- Original Message -----
From: "Paul DuBois"
To: "Paul Coldrey" ; "Pritesh Chandra"

Cc:
Sent: Thursday, August 10, 2006 11:51 AM
Subject: Re: mysql 3.23.58


> At 9:18 +0930 8/10/06, Paul Coldrey wrote:
>>Hi Pritesh,
>>
>>This doesn't look like a bug and so it really should have been sent to
>>one of the support lists rather than the bugs list. If you feel it is a
>>bug then you should provide a sample script that exposes the bug and
>>report it at http://bugs.mysql.com/.
>>
>>Looks to me like a minor syntax change between 3.23 and 4.1. Perhaps the
>>ENGINE syntax appeared after 3.23 and if you replace this with
>>TYPE=MyISAM it might all work,.... I couldn't find any reference in the
>>manual to which version the ENGINE syntax started but as I recall TYPE
>>was the original syntax.
>>
>>Cheers,
>>
>> Paul.
>
> Use the --compatible=mysql323 option for mysqldump to disable the
> CREATE TABLE clauses that won't work in MySQL 3.23.
>
>
>>
>>
>>Pritesh Chandra wrote:
>>>I have mysql 4.1.16 loaded in one server and the other server has mysql
>>>3.23.58
>>>
>>>when i do a mysqldump from 4.1.16 and try to load it on 3.23.58,
>>>i get this error You have an error in your SQL syntax near 'ENGINE=MyISAM
>>>DEFAULT CHARSET=latin1'
>>>
>>>i cant figure out what i am doing wrong.
>>>
>>>thanks
>>>
>>> This email and any attachments may contain privileged and confidential
>>> information and are intended for the addressee only. If you have
>>> received this email in error, please notify the sender and delete this
>>> e-mail immediately. Any confidentiality, privilege or copyright is not
>>> waived or lost because this email has been sent to you in error. It is
>>> your responsibility to check this email and any attachments for viruses.
>>> No warranty is made that this material is free from any computer virus
>>> or any error. Any loss/damage incurred by using this material is not the
>>> sender's responsibility.
>>>
>>>
>>
>>
>>--
>>Paul Coldrey
>>http://www.ensigma.com.au/
>>
>>
>>
>>--
>>MySQL Bugs Mailing List
>>For list archives: http://lists.mysql.com/bugs
>>To unsubscribe: http://lists.mysql.com/bugs?unsub=paul@mysql.com
>
>
> --
> Paul DuBois, MySQL Documentation Team
> Madison, Wisconsin, USA
> MySQL AB, www.mysql.com
>


--
MySQL Bugs Mailing List
For list archives: http://lists.mysql.com/bugs
To unsubscribe: http://lists.mysql.com/bugs?unsub=gcdmb-bugs@m.gmane.org