Script to Check RMAN Backup status
This script will provide you to check the current running RMAN backup status and backup history whether its completed/running or failed with any issue. set line 190 col STATUS format… Read more »
This script will provide you to check the current running RMAN backup status and backup history whether its completed/running or failed with any issue. set line 190 col STATUS format… Read more »
How to check the free space and Usage of ASM Disk Group In this post we have provided 2 scripts , 1st to check the Usage of each ASM disk… Read more »
Find out who are the owners of the SQL Server agent jobs with the help of below script. SELECT J.name AS [Job Name] ,L.name AS [Job Owner] FROM msdb.dbo.sysjobs_view J… Read more »
How to select size of all sql server Databases Below script will select the size of all your SQL Server databases in MB and GB as well. SELECT d.NAME ,ROUND(SUM(CAST(mf.size… Read more »
Check Index Fragmentation on ALL Indexes in a Database I use to make note for my self so that I can recall it quickly! when I am using a development… Read more »
Displaying Report Generating the Date time and user name without Domain or System name: 1- Go to Design mode and Create footer in SSRS report 2- From The toolbox add… Read more »
COMPUT Clause is not allowed in Database Compatibility 110 Issue Details- Impact- The COMPUTE clause generates totals that appear as additional summary columns at the end of the result set…. Read more »
If you want to Speed up your Windows 10 OS, take a few minutes to try out these tips to speed up your PC and make it less prone to… Read more »
ERROR OGG-15163 There was a problem sending a message to EXTRACT (Timeout waiting for message) The EXTRACT looks hung, but its status is still showing is “RUNNING”. Restarting the process… Read more »
select b.tablespace_name, tbs_size SizeGb, a.free_space FreeGb from (select tablespace_name, round(sum(bytes)/1024/1024/1024 ,2) as free_space from dba_free_space group by tablespace_name) a, (select tablespace_name, sum(bytes)/1024/1024/1024 as tbs_size from dba_data_files group by tablespace_name UNION… Read more »