This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Friday, 25 June 2021

Temp tablespace space check.

set pages 1000;

set lines 120;

set feedback off;

SELECT   A.tablespace_name tablespace, D.mb_total,

        SUM (A.used_blocks * D.block_size) / 1024 / 1024 mb_used,

        D.mb_total - SUM (A.used_blocks * D.block_size) / 1024 / 1024 mb_free

FROM     v$sort_segment A,

        (

        SELECT   B.name, C.block_size, SUM (C.bytes) / 1024 / 1024 mb_total

        FROM     v$tablespace B, v$tempfile C

        WHERE    B.ts#= C.ts#

        GROUP BY B.name, C.block_size

        ) D

WHERE    A.tablespace_name = D.name

GROUP by A.tablespace_name, D.mb_total

/