Re: beginner needs help servin up a lan

2005-07-12 Thread nephish
Well thanks, these look as if to be exactly what i have been looking for. will test this stuff out when i get to work, thanks again. <>< On Tue, 2005-07-12 at 10:10 +0300, Gleb Paharenko wrote: > Hello. > > > These links could be helpful: > http://dev.mysql.com/doc/mysql/en/export-of-data.h

Re: beginner needs help servin up a lan

2005-07-12 Thread Gleb Paharenko
Hello. These links could be helpful: http://dev.mysql.com/doc/mysql/en/export-of-data.html http://dev.mysql.com/doc/mysql/en/mysql-tools-with-access.html For more information search in archives at: http://lists.mysql.com/mysql nephish <[EMAIL PROTECTED]> wrote: > He

Re: beginner needs help servin up a lan

2005-07-11 Thread Jason Pyeron
odbc driver for your MySQL database on your windows machine. export tables in access to odbc source that you created On Mon, 11 Jul 2005, nephish wrote: Hello there i need to import an entire database or find a way to get all the info in a microsoft access .mdb database into a MySQL database

Re: Beginner needs help

2002-02-25 Thread Michael Stassen
; > > the only other way to do it would be to > import the data from another database like this: > INSERT INTO table [ (coloumn...) ] SELECT ... > > OR > > use a LOAD DATA and import a text file. > > hope that helps > > > - Original Message - >

Re: Beginner needs help

2002-02-25 Thread daniel
hope that helps - Original Message - From: "Bob Rea" <[EMAIL PROTECTED]> To: "daniel" <[EMAIL PROTECTED]> Sent: Monday, February 25, 2002 4:40 PM Subject: Re: Beginner needs help > On Monday 25 February 2002 03:51 pm, you wrote: > > my $0.02: > &

RE: Beginner needs help

2002-02-25 Thread Eric Mayers
Bob, This is just a guess, but looking at http://www.mysql.com/doc/I/n/Insert_speed.html it appears that the way to do multiple inserts looks like: INSERT INTO a VALUES (1,23),(2,34),(4,33); a(col1, col2).. Perhaps multiple inserts requires that you specify all columns in the order that the t

RE: Beginner needs help

2002-02-25 Thread Daniel Rosher
Change it to INSERT into book( isbn, title, authlname, authfname, publisher, pubdate, dewey, lcnum ) values ( '1-56592-434-7', 'MySQL & mSQL', 'Yarger', 'Randy Jay', "O'Reilly", null, null, null ),

Re: Beginner needs help

2002-02-25 Thread Nathan
Get rid of the second "values". mysql> INSERT into book( -> isbn, -> title, -> authlname, -> authfname, -> publisher, -> pubdate, -> dewey, -> lcnum -> ) -> values ( -> '1-56592-434-7', -> 'MySQL & mSQL', -> 'Yarger', -> 'Randy Jay', ->

Re: Beginner needs help

2002-02-25 Thread Georg Richter
On Tuesday, 26. February 2002 00:33, Bob Rea wrote: > I'm getting a syntax error when I try to insert more two > sets of values into a table. > > I have looked at the manual on the insert statement, and > don't see what is wrong. > > ERROR 1064: You have an error in your SQL syntax near > 'values

Re: Beginner needs help

2002-02-25 Thread Paul DuBois
At 15:33 -0800 2/25/02, Bob Rea wrote: >I'm getting a syntax error when I try to insert more two >sets of values into a table. > >I have looked at the manual on the insert statement, and >don't see what is wrong. The error message indicates that the problem is at the word "values". The problem wi

Re: Beginner needs help

2001-03-05 Thread Rolf Hopkins
I can answer numb 1. for you but not 2. Look up the manual for mysqldump and load infile (or something like that, I have to check the manual myself but I have no time to do that for you). The other (and probably easier way) is to upgrade your Cobalt machine and then upgrade your tables from ISM