About 50 results
Open links in new tab
  1. How to show the last queries executed on MySQL?

    Mar 16, 2009 · 1) If general mysql logging is enabled then we can check the queries in the log file or table based what we have mentioned in the config. Check what is enabled with the following command

  2. How can I access the MySQL command line with XAMPP for Windows?

    cd c:\xampp\mysql\bin mysql.exe -u root --password If you want to use mysqldump.exe, you should also find it there. Log into your mysql server, and start typing your commands.

  3. How to connect from windows command prompt to mysql command …

    Your one is C:\MYSQL\bin\ so choose this directory in command line and type: NET START MySQL (After that you can open Windows Task Manager and verify in Processes tab is mysqld.exe process …

  4. How to execute a MySQL command from a shell script?

    An important consideration for accessing mysql from a shell script used in cron, is that mysql looks at the logged in user to determine a .my.cnf to load. That does not work with cron.

  5. mysql - SQL command to display history of queries - Stack Overflow

    Oct 19, 2011 · I would like to display my executed sql command history in my MYSQL Query Browser. What is the sql statement for displaying history?

  6. How to run SQL script in MySQL? - Stack Overflow

    Jan 20, 2012 · From Workbench: File > Run SQL Script -- then follow prompts From Windows Command Line: Option 1: mysql -u usr -p mysql> source file_path.sql Option 2: mysql -u usr -p '-e …

  7. How to connect to MySQL from the command line - Stack Overflow

    Feb 27, 2011 · How can you connect to MySQL from the command line in a Mac? (i.e. show me the code) I'm doing a PHP/SQL tutorial, but it starts by assuming you're already in MySQL.

  8. linux - Run mysql commands in bash script without logging in or …

    Oct 10, 2016 · This way you can execute mysql commands without showing or typing password in the script and point your sql command to a specific database. In here <cred_file> is the file that contains …

  9. logging - MySQL commands history - Stack Overflow

    When using mysql through command line (with default shipped configuration), I was able to get my commands history using up-arrow. Bu after modifying the server configuration for a remote access and

  10. How to export a mysql database using Command Prompt?

    Jun 13, 2010 · I have a database that is quite large so I want to export it using Command Prompt but I don't know how to. I am using WAMP.