Tuesday, April 19, 2022
Find the dependence on Table in MYSQL / MariaDB
Start and Stop and restart the MariaDB or MySQL on Linux
Start and Stop and restart the MariaDB or MySQL on Linux
Check status for the MariaDB or MySQL
ps -ef|grep mysql
Check status for the MariaDB or MySQL
service mysqld status
Service mysql status
/etc/init.d/mysql status
/etc/init.d/mysqld status
Start the MariaDB or MySQL in Linux Environment:
service mysqld start
service mysql start
/etc/init.d/mysql start
/etc/init.d/mysqld start
Stop the MariaDB or MySQL in Linux Environment
service mysqld stop
service mysql stop
/etc/init.d/mysql stop
/etc/init.d/mysqld stop
Restart the MariaDB or MySQL Services in Linux Environment
service mysqld restart
service mysql restar
/etc/init.d/mysql restart
/etc/init.d/mysqld restart
Trace the SQL Queries in MYSQL
Trace the SQL Queries in MYSQL
For trace, the Queries executing from the application side in MariaDB provides a general_log parameter for enabling and disabling the traces.
Check status of General Log
mysql> select @@general_log;
For Enable the trace of SQL Queries:
mysql> set global general_log=1;
mysql> select @@general_log;
For Disable the trace of SQL Queries:
set global general_log=0;
Check and change the general log output as FILE or TABLE
-- Check the log file output format:
mysql> select @@log_output;
Check the file location:
mysql> select @@general_log_file;
--Change the log file format to TABLE:
SET GLOBAL log_output='TABLE';
Check the table for Log generation or SQL traces:
select * from mysql.general_log;
--Empty the table if no need
truncate table mysql.general_log;
How to check the block corruptions in database ?
How to check the block corruptions in database ?
How to set RSYNC commands and set it in a crontab
Standby RFS & MRP Process
Standby RFS & MRP Process
select process, status,sequence#,block#,blocks, delay_mins from v$managed_standby;PROCESS STATUS SEQUENCE# BLOCK# BLOCKS DELAY_MINS
--------- ------------ ---------- ---------- ---------- ----------
ARCH CONNECTED 0 0 0 0
ARCH CLOSING 23760 813056 1925 0
ARCH CLOSING 23713 567296 1119 0
ARCH CLOSING 23759 958464 656 0
ARCH CLOSING 23715 1 116 0
RFS IDLE 0 0 0 0
RFS IDLE 0 0 0 0
RFS IDLE 23761 200510 1 0
MRP0 APPLYING_LOG 23761 200510 1024000 0
RFS IDLE 0 0 0 0
10 rows selected.
Here RFS process is idle its mean there is no archive log generation on primary.
SQL> select thread#, process,status,sequence#, block#,blocks from v$managed_standby where process='RFS';
THREAD# PROCESS STATUS SEQUENCE# BLOCK# BLOCKS
---------- --------- ------------ ---------- ---------- ----------
0 RFS IDLE 0 0 0
0 RFS IDLE 0 0 0
1 RFS IDLE 23761 204221 1
0 RFS IDLE 0 0 0
SQL> select process,pid,status from v$managed_standby;
PROCESS PID STATUS
--------- ------------------------ ------------
ARCH 9352 CONNECTED
ARCH 9354 CLOSING
ARCH 9356 CLOSING
ARCH 9358 CLOSING
ARCH 9360 CLOSING
RFS 1468 IDLE
RFS 1462 IDLE
RFS 1464 IDLE
MRP0 9376 APPLYING_LOG
RFS 1466 IDLE
10 rows selected.
SQL> !ps -ef|grep 9376
oraprod 7178 7176 0 12:09:19 pts/1 0:00 grep 9376
oraprod 9376 1 0 Mar 06 ? 1:30 ora_mrp0_QASKDR
oraprod 7176 7149 0 12:09:19 pts/1 0:00 /usr/bin/bash -c ps -ef|grep 9376
SQL> !ps -ef|grep 1466
oraprod 7181 7179 0 12:09:49 pts/1 0:00 grep 1466
oraprod 1466 1 0 Apr 15 ? 0:00 oracleQASKDR (LOCAL=NO)
oraprod 7179 7149 0 12:09:49 pts/1 0:00 /usr/bin/bash -c ps -ef|grep 1466
SQL>