Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Technology Blogs  >  Research Blogs  >  Mysql Tech Tips research Blog  > 

2018-12-10 09:55
wget http://curl.haxx.se/download/curl-7.21.1.tar.gz tar zxvf curl-7.21.1.tar.gzcd curl-7.21.1/./configure --prefix=/usrmake && make installcd ../echo "/usr/local/webserver/mysql/lib… Read More
2018-01-25 06:44
Padmavat 2018 Full Movie Download HD 720pPadmavat Movie Download HDClick Here to Download Padmaavat Moviehttp://moviestrunk1.xyz/padmaavat-movie-download-hd-720p-full/Padmavati formerly… Read More
2017-10-20 07:46
List of all mysqladmin flush commands.flush-hosts: Flush all information in the host cache.flush-privileges: Reload the grant tables (same as reload).flush-status: Clear status variables.flu… Read More
2017-04-10 06:57
How to understand the MySQL Slow Query Logroot@server#tail -f /var/log/mysql_slow_query.log# Time: 2017-04-09T20:10:09.472872Z# User@Host: db_user[db_name] @  [x.x.x.125] # Query_time:… Read More
2016-12-21 06:52
You can backup your MySQL data by using the mysqldump command. This command connects to the MySQL server and creates an SQL dump file$ mysqldump --opt -u [uname] -p[pass] [dbname] > [back… Read More
2016-12-13 09:38
 Administrative privileges enable users to manage operation of the MySQL server.Privileges for database objects such as tables, indexes, views, and stored routines can be granted for sp… Read More
2016-05-23 08:53
Add this in my.cnf and then restart MySQL server:general_log = 1log=/var/log/mysql_slowquery.logYou can check whether the general_log is 'ON' or 'OFF' first using query:mysql>show variabl… Read More
2016-05-10 10:26
Depending on the size of the databases you have in mysql innodb the time it takes mysql to restart can be very slow.Some tricks that can speed this upmysql> set global innodb_max_dirty_pa… Read More
2016-05-03 07:13
You can also issue SELECT without a table. For example, you can SELECT an expression or evaluate a built-in function.mysql> select 1+1;+-----+| 1+1 |+-----+|   2… Read More
2016-05-03 06:56
Simple and smart reset mysql root password# /etc/init.d/mysql stop# mysqld_safe --skip-grant-tables &# mysql -u rootmysql> use mysql;mysql> update user set password=PASSWORD("newro… Read More
2016-05-03 06:51
Using SELECT INTO, we can save the output of a select command into a file.Instead of displaying the output on the screenmysql> SELECT * INTO OUTFILE '/tmp/employee.txt' FROM employee;We c… Read More
2016-04-21 07:28
mysql can do that for you. Use mysql -H or mysql-X.mysql generates an HTML table from each query result set if you use the -H (or --html) option mysql creates an XML document from the result… Read More
2016-04-19 06:44
Find mysql upgrade checklist1.Dump all databases/schemas from the existing mysql server by using mysqldump command2.intall/Initialize a new MySQL 5.7 server instance3.Load the dump file into… Read More
2016-04-05 10:09
Rather than typing the query repair table ''tablename''; for all the tables one by one.# mysqlcheck -u root --password=thepass --auto-repair --check --all-databases Read More
2016-03-29 13:36
 To check all the tables in a particular database, don’t specify the table name. Just specify the database name. The following example checks all the tables in the db_name da… Read More
2016-03-10 11:36
MySQL has a nice feature: MySQL slow query log, which allows you to log all queries that exceed a predefined about of time to execute.Go or define mysql slow query file path and runmysqldump… Read More
2016-01-27 09:46
Query caching is one of the important features in MySQL and a vital part of query optimizationmysql>show VARIABLES where variable_name regexp 'query_cache';+… Read More
2016-01-25 07:28
You can have MySQL return query results to you in well-formed XMLshell>mysql --xmlmysql> SELECT * FROM test.stories;          1        This… Read More

Share the post

Mysql Tech Tips

×

Subscribe to Mysql Tech Tips

Get updates delivered right to your inbox!

Thank you for your subscription

×