다른 DBMS/MySQL&MariaDB51 쿼리를 활용하여 Mysql Uptime 확인하기 쿼리를 활용하여 Update을 확인하는 글입니다. 1.Uptime 확인 show status 쿼리를 활용하여 Uptime을 확인합니다. 초형식으로 되어있으므로 가공이 필요합니다. show status like '%uptime%' Variable_name |Value | -------------------------+------+ Uptime |526090| Uptime_since_flush_status|526090| 2. sec_to_time 쿼리를 활용하여 open 후 현재까지 얼마나 지났는지 확인 select TIME_FORMAT(SEC_TO_TIME(526090 ),'%Hh %im') as Uptime from dual Uptime | --------+ 146h 19m| 끝. 2024. 4. 1. 테이블 관리(file-per-table와 테이블스페이스) 출처 : https://dev.mysql.com/doc/refman/8.0/en/innodb-file-per-table-tablespaces.html https://dev.mysql.com/doc/refman/8.0/en/general-tablespaces.html Mysql은 기본적으로 database라고 불리는 영역이 존재하고 그 내부에 테이블들이 존재합니다.(engine = InnoDB 기준) DB : mysql 5.7.43 mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | | ysbae |.. 2024. 1. 5. [Warnings]Integer display width is deprecated and will be removed in a future release. 테이블 생성작업을 하는데 아래 에러가 발생했습니다.(Mysql 8.0.21) Integer display width is deprecated and will be removed in a future release. 해석하면 integer 표시법이 사라지고 미래의 버전에서는 제거된다는 이야기였습니다. 해결법으로는 INT(20) -> INT처럼 뒤의 자릿수(width)를 제거하고 생성하면 됩니다. 해당 알람은 int종류 ( INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT ) 에 다 해당됩니다. 2023. 11. 10. [Client 접속에러] Unblock with 'mysqladmin flush-hosts' 클라이언트로 접속 시도시 발생하는 에러입니다. 아래의 명령어로 flush하면 해결할 수 있습니다. flush hosts; 8.0.34 기준 해당 명령어는 deprecated 된다고 나오네요. 문장을 해석해보니 TRUNCATE TABLE performance_schema.host_cache과 동일한 기능을 가지는거 같습니다. 'FLUSH HOSTS' is deprecated and will be removed in a future release. Please use TRUNCATE TABLE performance_schema.host_cache instead 출처 : https://sd23w.tistory.com/414 mysql 외부 접속시 connection locked 현상 (Unblock with .. 2023. 10. 30. 이전 1 2 3 4 5 ··· 13 다음