0
votes
1answer
32 views

Updating a database in a server using command-line

I have been searching for a while to find a good answer to my problem. I have a new server where I would like to run a script in .php which uses a database to store some data. What I have done so far ...
0
votes
1answer
22 views

Linux/mysql writing mysql table output to a file AND keeping mysql formatting.

I am using a command like the one below in mysql. And when it displays the table data it is formatted in a very clean table with even spacing and | as column separators. SELECT * FROM TABLE_NAME; ...
0
votes
2answers
57 views

Ansible idempotent MySQL installation Playbook

I want to setup a MySQL server on AWS, using Ansible for the configuration management. I am using the default AMI from Amazon (ami-3275ee5b), which uses yum for package management. When the Playbook ...
0
votes
1answer
40 views

PHP outputs from command line but not from the browser

I have a PHP file testphp.php with the following content: <?php echo system('mysql -u root -pMyPassword -e "SELECT VERSION();"'); ?> It outputs perfectly from the command line: D:\>php ...
0
votes
2answers
45 views

mysql access denied while creating new user

I want to create a new mysql user and database demo in my company. Here is the commands i input in the mysql.exe : create user 'admin'@'localhost' identified by 'admin'; create database dem; ...
0
votes
1answer
49 views

How to call a mysql stored procedure, with arguments, from command line?

How can I call a stored procedure from command line? I have a procedure: CREATE DEFINER=`root`@`localhost` PROCEDURE `insertEvent`(IN `dateTimeIN` DATETIME) NO SQL BEGIN SET @eventIDOut = ...
1
vote
1answer
29 views

How can I get the number of affected records, and just that, using mysql cmdline?

I'm running the mysql cmdline binary to execute queries. (Specifically, I'm executing LOAD DATA LOCAL INFILE). I would like to have it print, after every statement, the number of records effected - ...
0
votes
1answer
43 views

Execute the result of a sql select in MySql

I am trying to get MySql to execute the result of the below statement as further sql statements. I believe in oracle sqlplus this is achieved using the spool function. How is this achieved in Mysql? ...
1
vote
1answer
176 views

Disabling foreign key checks on the command line

I have a backup script for my MySQL database, using mysqldump with the --tab option so it produces a .sql file for the structure and a .txt file (pipe-separated) for the content. Some tables have ...
1
vote
0answers
55 views

Pass argument to mysql script from mysql client

Is there a way/workaround/hack to pass an argument to a mysql script? Let's say I have a file name myqueries.sql which looks like this SELECT * FROM FooBar where id = <arg>; Then in mysql ...
0
votes
2answers
192 views

Running MySQLdump on each line of file; command not found

Performing automated database backups for starters and testing commands. I've found for performing an action on each line of a text file via BASH CLI is something to the effect of: # while read line ...
2
votes
2answers
216 views

Change output format for MySQL command line results to CSV

I want to get headerless CSV data from the output of a query to MySQL on the command line. I'm running this query on a different machine from the MySQL server, so all those Google answers with "INTO ...
-2
votes
2answers
119 views

PHP Script runs fine in browser but not through Command Line[Solved] [closed]

I'm Using Xampp on Windows 7. i have the following simple script <?php require("classes/autoloader-class.php"); $query=new login(); $query->Query("INSERT INTO poupdate(`po`, `fval`, `nr`, ...
0
votes
1answer
104 views

How do I create a script to run MySQL command line?

I'm trying to import about 20 .csv files into MySQL and I'm fed up with doing it via phpmyadmin's import gui. Is there a way to do this by batch without typing on the command line? i.e. a script that ...
0
votes
1answer
69 views

MySQL command-line dont work

I have an Ubuntu-Server with LAMP. Now if I try to execute something in the command-line I just get no answer, and the command don't work. #mysql -u root -p Enter password: mysql> GRANT ALL ...
0
votes
3answers
67 views

Access MySQL databases with only root password [closed]

so I have a dilemma. I am taking over from another developer and there's a box to which I only have root access, and I need to download the MySQL database from it. So I root in, and type mysql in ...
0
votes
0answers
53 views

MySQL, output to file with custom header and footer line

Is it possible to do a MySQL query with the results having a custom first line like "MySQL output" and custom last line, and would you be able to have the last line say something like "This file had ...
-1
votes
2answers
55 views

Mysql is not supporting single line comments here. What would be the reason.?

Here is what I am getting when I use single line comment (using --). ERROR 1064 (42000): You have an error in your SQL syntax; Actually I am using these comments in a procedure to show what exactly a ...
0
votes
0answers
137 views

mysql access denied from command-line [closed]

I'm posting something I just figured out that might help other users. I was trying to access a mysql database available through MAMP (v2.1.1) from the command-line as so: mysql -uroot -proot dbname ...
0
votes
3answers
119 views

Ruby on Rails - unable to open mySQL command line

I am able to open the mySQL command line doing the following steps: depot>mysql -u root mysql>CREATE DATABASE depot_production DEFAULT CHARACTER SET utf8; mysql>GRANT ALL PRIVILEGES ON ...
0
votes
2answers
36 views

use mysql command tool to create database proble

When I user MySQL client to create database, I used below command: create database nice-day; Then it told me that: ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that ...
1
vote
0answers
147 views

Passing variables to command line script

I have the following script that is meant to create a mysql database on a remote server using values passed into it: set arg1=\\192.168.0.254\e$\Program Files\MySQL\MySQL Server 5.5\bin set ...
1
vote
1answer
211 views

Command-line MySQL select with different field terminator

I have a bash script in which I am running a MySQL statement: #!/usr/bin/env bash mysql -N --user=foo --password=bar --host=baz -A -D db -e '\ SELECT ... \ FROM fieldA, fieldB \ LIMIT ...
-1
votes
1answer
384 views

mysqldump not working through php

I am trying to take mysqldump of database through php, i am able to take database dump through command line this way only. d: cd "d:\wamp\bin\mysql\mysql5.5.24\bin" mysqldump.exe mysqldump ...
2
votes
2answers
2k views

Downloading MySQL dump from command line

I am moving away from Linode because I don't have the Linux sysadmin skills necessary; before I complete the transition to a more noob-friendly service, I need to download the contents of a MySQL ...
1
vote
1answer
368 views

Accessing database on phpmyadmin from MySQL 5.5 Command line client?

Is there a way of accessing and managing my database which is on my phpMyAdmin from MySQL Command line?
0
votes
1answer
185 views

Permissions to create and run stored procedure

I want to create a user in Mysql and I want that user to have permissions to create and run stored procedure. I using mysql workbench. Can you please guide me how to create user from workbench or ...
1
vote
3answers
305 views

Command prompt does not show wide MySQL tables

I have came across strange issue with Windows Command Prompt and MySQL. Somehow command prompt does not show wide table correctly. I have simple table: ...
0
votes
2answers
373 views

Mysql XML table export command line

Maybe im not seeing something here but WHY would this command line work perfectly fine and provide a result set when run on a LINUX commmand line but when executed from a WINDOWS command line it fails ...
0
votes
1answer
283 views

mysql putty command delete duplicates

I like to delete duplicate links from mysql database From phpmyadmin this command is ok for smal database but get error about some time i have 5gb data in the table DELETE t2 FROM Link t1 JOIN ...
0
votes
0answers
393 views

Cannot access mysql by command line on Zend server on Windows 7

I recently installed the latest Zend Server CE 5.6.0 SP4 on Windows 7 complete with php and mysql. At first the Zend Server wouldn't work as I think there was some conflict with ports with my ...
0
votes
1answer
71 views

Suggestions for Searching Document Content- Is Windows Search Any Good? Simple MySQL?

I am writing a web script for a small online documents management company that wants to allow users to quickly search the content of their files online. While many accounts are very small (under 100 ...
0
votes
2answers
109 views

Skip X-rows in bulk SQL import command line without erase previous data

I tried import very large file using cmd line, via command: mysql -uroot -ppassword --default-character-set=utf8 mydb < /Users/user1/Downloads/dump.sql But after some time i obtained a message: ...
0
votes
1answer
659 views

Error while importing .sql through command line [duplicate]

Possible Duplicate: MySQL Error 1153 - Got a packet bigger than ‘max_allowed_packet’ bytes I have the .sql file which size is 26.3 MB and containing large data. I am trying to import it ...
0
votes
4answers
587 views

mysql script no database selected

I'm trying to run some mysql scripts from the command line. One is autogenerated and it does not select the database before hand. Right now I have two scripts: mysql -u <user> ...
1
vote
1answer
246 views

simple command line command has syntax error trying to import .sql file

openextreme < 'www/downloads/official_games_db.sql' That's the line. I've tried it with and without quotes, double quotes, the full file path, just the file name, etc. I want ...
0
votes
2answers
485 views

Specify .my.cnf to mysql command line

How to give a specific .my.cnf config file to the mysql command line? $ mysql --my-config=.my.cnf
4
votes
3answers
1k views

Connect to SphinxQL through Linux command-line

I am trying to connect to SphinxQL server through Linux command-line this way: > mysql -P 9306 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) My Sphinx ...
-2
votes
2answers
529 views

mysql -u root -p ,what's my wrong? [closed]

I want to use account in mysql in command line,but when i use this code > mysql -u root -p tell me i have an error in mysql syntax. please tell me what's my wrong?
2
votes
1answer
184 views

error while importing magento database via SSH

I get the following error while trying to dump a magento database via SSH ERROR 1452 (23000) at line 82966: Cannot add or update a child row: a foreign key constraint fails ...
0
votes
4answers
5k views

Access denied for root user in MySQL command-line

I've just installed xampp, and am using command line to write mySQL. I am using 'root' with no password and can connect to mysql but cannot CREATE DATABASE as I get the error 1044 access denied for ...
0
votes
1answer
41 views

quering mysql via command line shows column values as?

My table Collation is Latin but the columns are utf8 unicode... and i can store text in any language without any problems however, when i go into console to check out some stuff i see the non-latin ...
1
vote
0answers
95 views

How Neatbeans's teminal (cygwin) can use mysql(xampp) CLI as like command prompt (window)

i am using netbeans on window platform & also using its terminal feature for some other stuff(mkdir,touch,tar etc..) now i also want to use mysql command line interface currently i am using ...
0
votes
1answer
863 views

Syntax error 1064 in CREATE TABLE statement with TINYTEXT columns?

This is the MySQL code I have so far: CREATE DATABASE bankbase; USE bankbase; CREATE TABLE clienttable( ClientID SMALLINT(15) NOT NULL DEFAULT 0, ClientFirstName VARCHAR(30) NOT NULL DEFAULT "first ...
2
votes
1answer
814 views

How can I pipe output of bzip to mysql to restore data directly from bzipped file into a database

For making dump of database directly in bz2 format, I tried zipping the dump file directly using the pipes as follows: mysqldump -u userName -p myDataBase > | bzip2 -c > myDump.sql.bz2 I want ...
1
vote
2answers
171 views

Pass results from a MySQL procedure to the Linux command line

I have a procedure which runs the following select: select distinct concat( 'php /home/rudyerd-systems/frontend/ClientStatementGenerator.php ', left(user(), locate('@',user())-1), space(1), ...
2
votes
1answer
890 views

how to get DB backup script from Remote Server in MySQL using command-line utility?

Can anybody tell me that how to get DB backup script from Remote Server in MySQL using command-line utility? I'm using a command as follows, but not working: C:\>mysqldump -h <server ip> -u ...
0
votes
1answer
229 views

Command-line access to MySQL with MAMP is not working

I get the following error when I open MAMP: http://i.imgur.com/8hqbi.png I changed the password via the Terminal, and all seemed well. I then changed it in the three other relevant files. I then ...
0
votes
1answer
106 views

I installed MySQL, but I can't access it via terminal

I installed MySQL, it seems to be running and working properly: http://i.imgur.com/7omrB.png But I go to Terminal and no MySQL commands are recognized.
0
votes
2answers
51 views

c:\ to mysql> mode in command promt

I am trying to check mysql status for my system. I understand that from command prompt my mode should be mysql> so I could enter mysql>status; how do I navigate from my c:\Documents and ...

1 2 3