>  기사  >  데이터 베이스  >  스토리지 엔진이란 무엇이며 MySQL 설치에서 지원되는 스토리지 엔진 목록을 보는 방법은 무엇입니까?

스토리지 엔진이란 무엇이며 MySQL 설치에서 지원되는 스토리지 엔진 목록을 보는 방법은 무엇입니까?

WBOY
WBOY앞으로
2023-09-11 20:33:091333검색

스토리지 엔진이란 무엇이며 MySQL 설치에서 지원되는 스토리지 엔진 목록을 보는 방법은 무엇입니까?

데이터베이스 관리 시스템(DBMS)에서 데이터베이스의 데이터 생성, 읽기, 업데이트 및 삭제와 같은 다양한 SQL 작업을 처리하는 데 사용되는 소프트웨어 구성 요소로 정의할 수 있습니다. 즉, DBMS에서 데이터베이스의 정보를 관리하는 데 사용됩니다. 가장 일반적으로 사용되는 스토리지 엔진은 MySQL 5.5 이상의 기본 스토리지 엔진이기도 한 InnoDB입니다. MySQL5.5 이전에는 기본 스토리지 엔진이 MyISAM이었습니다.

SHOW ENGINES 명령을 사용하면 MySQL 설치에서 지원하는 스토리지 엔진 목록을 확인할 수 있습니다 −

mysql> SHOW ENGINES\G
*************************** 1. row ***************************
      Engine: FEDERATED
     Support: NO
     Comment: Federated MySQL storage engine
Transactions: NULL
          XA: NULL
  Savepoints: NULL
*************************** 2. row ***************************
      Engine: MRG_MYISAM
     Support: YES
     Comment: Collection of identical MyISAM tables
Transactions: NO
          XA: NO
  Savepoints: NO
*************************** 3. row ***************************
      Engine: MyISAM
     Support: YES
     Comment: MyISAM storage engine
Transactions: NO
          XA: NO
  Savepoints: NO
*************************** 4. row ***************************
      Engine: BLACKHOLE
     Support: YES
     Comment: /dev/null storage engine (anything you write to it disappear
Transactions: NO
          XA: NO
  Savepoints: NO
*************************** 5. row ***************************
      Engine: CSV
     Support: YES
     Comment: CSV storage engine
Transactions: NO
          XA: NO
  Savepoints: NO
*************************** 6. row ***************************
      Engine: MEMORY
     Support: YES
     Comment: Hash based, stored in memory, useful for temporary tables
Transactions: NO
          XA: NO
  Savepoints: NO
*************************** 7. row ***************************
      Engine: ARCHIVE
     Support: YES
     Comment: Archive storage engine
Transactions: NO
          XA: NO
  Savepoints: NO
*************************** 8. row ***************************
      Engine: InnoDB
     Support: DEFAULT
     Comment: Supports transactions, row-level locking, and foreign keys
Transactions: YES
          XA: YES
  Savepoints: YES
*************************** 9. row ***************************
      Engine: PERFORMANCE_SCHEMA
     Support: YES
     Comment: Performance Schema
Transactions: NO
          XA: NO
  Savepoints: NO
9 rows in set (0.00 sec)

위 내용은 스토리지 엔진이란 무엇이며 MySQL 설치에서 지원되는 스토리지 엔진 목록을 보는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제