Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Failure to upload data file to mysql admin
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- Failure to upload data file to mysql admin
Failure to upload data file to mysql admin
27-01-2008 3:05 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Hi!, I'm new to mysql via PlusNet (about a week) and everything is good
using mySQL AB tutorials except I have'nt managed to upload a file to mysql admin yet. Unfortunately I've ended up using many permutations and seem to have got in a mess and I can't see why I've failed to upload
the data file (I saved the file as ANSI should it be UTF-8?).
This is the basic data, please spell out the answer please as I've lost myself on this bit,
Fluffy Harold cat f 1993-02-04 Null
Claws Gwen cat m 1994-03-17 Null
Buffy Harold dog 1989-05-13 Null
Fang Benny dog m 1990-08-27 Null
Bowser Diane dog m 1979-08-31 1995-07-29
Chirpy Gwen bird f 1998-12-09 Null
Whistler Gwen bird 1997-12-09 Null
Slim Benny snake m 1996-04-29 Null
I simply want to upload as a data file using notepad via mysql admin.
Any future queries will be shorter!. Thanks, Best regards MikeM9856
using mySQL AB tutorials except I have'nt managed to upload a file to mysql admin yet. Unfortunately I've ended up using many permutations and seem to have got in a mess and I can't see why I've failed to upload
the data file (I saved the file as ANSI should it be UTF-8?).
This is the basic data, please spell out the answer please as I've lost myself on this bit,
Fluffy Harold cat f 1993-02-04 Null
Claws Gwen cat m 1994-03-17 Null
Buffy Harold dog 1989-05-13 Null
Fang Benny dog m 1990-08-27 Null
Bowser Diane dog m 1979-08-31 1995-07-29
Chirpy Gwen bird f 1998-12-09 Null
Whistler Gwen bird 1997-12-09 Null
Slim Benny snake m 1996-04-29 Null
I simply want to upload as a data file using notepad via mysql admin.
Any future queries will be shorter!. Thanks, Best regards MikeM9856
Message 1 of 3
(1,247 Views)
2 REPLIES 2
Re: Failure to upload data file to mysql admin
27-01-2008 4:08 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Use this format replacing <tablename> with the name of the rable, fieldname with actual field names and text with the data you want to insert into the relevant field:
insert into <tablename> ('fieldname1', 'fieldname2', 'fieldname3') VALUES
('text1','text2','text3'),
('text1', 'text2', 'text3')
;
Or if it is just a few lines, use the MySQL Admin to add the necessary info manually. Just select the table then use the insert tab.
insert into <tablename> ('fieldname1', 'fieldname2', 'fieldname3') VALUES
('text1','text2','text3'),
('text1', 'text2', 'text3')
;
Or if it is just a few lines, use the MySQL Admin to add the necessary info manually. Just select the table then use the insert tab.
Message 2 of 3
(261 Views)
Re: Failure to upload data file to mysql admin
30-01-2008 9:54 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Peter
Thanks for the pointers, particularly insert.
Thanks, Mike
Thanks for the pointers, particularly insert.
Thanks, Mike
Message 3 of 3
(261 Views)
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- Failure to upload data file to mysql admin