centre of excellence for DBA's.Official website www.dbacentre.com
Pages
Home
CONTACT US
ABOUT US
MSSQL DBA
ORACLE DBA
Thursday 7 September 2017
Retrives the data from INFORMATION_SCHEMA in MYSQL Database
Example of a statement that retrieves information from
INFORMATION_SCHEMA
:
MYSQL> SELECT TABLE_NAME, TABLE_TYPE, ENGINE
FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'DBACENTRE'
ORDER BY TABLE_NAME DESC;
Output:-
Older Posts
Home
Subscribe to:
Posts (Atom)
Popular Posts
ORA-65066: The specified changes must apply to all containers - ORACLE 12 C
SQL> CONN system/oracle@pdb1 Connected. SQL> alter user system identified by oracle12; alter user system identified by oracle12 *...
ORA-00382: 32768 not a valid block size, valid range [2048..16384]
SQL> create tablespace bigtbs datafile '/u01/app/oracle/oradata/bigtbs.dbf' size 20m blocksize 32k; create tablespace bigtbs da...
ORACLE Upgradation 11.2.0.1.0 to 11.2.0.4.0
ORACLE Upgradataion 11.2.0.1.0 to 11.2.0.4.0 download the software Oracle 11.2.0.1.0 from oracle support [root@oranode1 ~]# /u01/app/oracle...
oracle 12 c database deinstall steps
Go to the ORACLE_HOME path , there you can find deinstall folder [oracle@dbacentre1 ~]$ cd $ORACLE_HOME [oracle@dbacentre1 dbhome_2]$ c...
SQL Server Replication Setup
Jobs Agent History clean up: distribution Use Distribution EXEC dbo.sp_MShistory_cleanup @history_retention = 48 Internally for...
Introduction to DMV's and DMF's
Introduction to DMV's and DMF's in SQL Server 2005 The DMVs; newly introduced in SQL Server 2005 gives the database administrat...
Retrives the data from INFORMATION_SCHEMA in MYSQL Database
Example of a statement that retrieves information from INFORMATION_SCHEMA : MYSQL> SELECT TABLE_NAME, TABLE_TYPE, ENG...
startup open read only; dataguard ORA-01665: control file is not a standby control file
SYSTEM2 SQL> startup open read only; ORACLE instance started. Total System Global Area 313860096 bytes Fixed Size ...
monitoring CDB and PDB tablespaces and users - ORACLE 12 C Database
SQL> CONN system/oracle@pdb1 Connected. SQL> select name from v$datafile; NAME --------------------------------------------...
Oracle DBMS_SHARED_POOL Package
Power of DBMS_SHARED_POOL Package This article I have tried to explain the power and importance of DBMS_SHARED_POOL package as fo...