Answers for "show variables like secure_file_priv"

SQL
1

mysql show variables like secure_file_priv

SHOW VARIABLES;								-- complete list
SHOW VARIABLES LIKE 'secure_file_priv';		-- search
SHOW VARIABLES LIKE 'secure_%';
Posted by: Guest on May-09-2021
0

ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

# Check the default location of secure_file_priv
SHOW VARIABLES LIKE "secure_file_priv";

# Save the file in that location
Select ... From ... INTO OUTFILE ...
Posted by: Guest on January-06-2021

Code answers related to "show variables like secure_file_priv"

Code answers related to "SQL"

Browse Popular Code Answers by Language