DBCC CHECKFILEGROUP checks the consistency of all tables and indexed views on the filegroup. To examine in more detail what Filegroup is, you can read …
Read More »dbtut
How To Change the Size of the ACFS File System Online
We can change the size of the ACFS file system online without requiring any umount or disable volume. We use the acfsutil tool for …
Read More »DBCC CHECKDB Command On SQL Server
The DBCC CHECKDB command is used to detect and repair logical and physical errors that occur in the database. When you run the DBCC CHECKDB …
Read More »How To Solve “gcs log flush sync” Wait Event
In busy databases you may encounter this wait event. The general reason is the low redo log I/O performance or the slow interconnect connection. …
Read More »DBCC UPDATEUSAGE Command On SQL Server
DBCC UPDATEUSAGE Detects and corrects errors in Page and row numbers. Prior to SQL Server 2005, the number of rows of some of the …
Read More »Case Insensitive Queries in Oracle
The default is case sensitive, so the following query returns no lowercase. In this case, the returned result will contain missing data. [crayon-674119a5f3267951600834/] If …
Read More »DBCC CHECKCATALOG Command On SQL Server
DBCC CHECKCATALOG performs various consistency tests between system metadata tables. If you run DBCC CHECKDB, you do not need to run DBCC CHECKCATALOG. For details …
Read More »How To Install ACFS (ASM Cluster File System) driver on RAC Database Servers
Oracle ASM Cluster File System (ACFS) is used to create a cluster file system via ASM. The created file system will use the space …
Read More »How To Create Default Constraint On SQL Server
When we create our tables, we set some columns to be null, so that some columns are never null. If the columns that we …
Read More »How To Find Locked Database Objects
There are many tables and views in Oracle database that we can get information about with locked objects. You can access a lot of …
Read More »