Blog

Tudo sobre Banco de Dados com a dbsnoop

Categoria: Artigo

List Tables in Any Database

ORACLE To list all tables: SELECT tablespace_name, table_name, owner FROM dba_tables; To list all tables for the current user: SELECT tablespace_name, table_name, owner FROM user_tables;

Leia mais »

MySQL 5.6 – ISL Files

To store the remote path, we additionally added the InnoDB system tables SYS TABLESPACES and SYS DATAFILES. Since the system tablespace and system tables are

Leia mais »

What is Replication?

While some database servers, like MySQL, support replication natively, others require third-party software. Data from one MySQL database server (the source) can be replicated to

Leia mais »

DBA: what is it?

Additionally, it safeguards data by limiting access to just those who have been given permission, guaranteeing the protection of sensitive data. Additionally, DBA is in

Leia mais »
pt_BR