correction group by

This commit is contained in:
Yacine31
2021-11-26 04:25:48 +01:00
parent 1724d9f419
commit 42242dca84
2 changed files with 3 additions and 3 deletions

View File

@@ -45,8 +45,8 @@ SELECT 'CREATE '
GROUP BY ts.tablespace_name,
ts.bigfile,
ts.logging,
ts.status,
ts.block_size
-- ts.status,
-- ts.block_size
ORDER BY ts.tablespace_name;
select '------- Tempfiles : ' from dual;

View File

@@ -16,7 +16,7 @@ WHERE ts.tablespace_name NOT IN ( 'SYSTEM', 'SYSAUX' )
AND ts.tablespace_name NOT LIKE '%UNDO%'
AND e.file_id (+) = df.file_id
AND ts.tablespace_name = df.tablespace_name
GROUP BY ts.tablespace_name, ts.bigfile, ts.logging, ts.status, ts.block_size
GROUP BY ts.tablespace_name, ts.bigfile, ts.block_size
ORDER BY ts.tablespace_name;
EXIT