Update get_tablespaces_ddl.sql

mise à jour code sortie SQL - présentaion
This commit is contained in:
Yacine31
2021-11-24 05:00:25 +01:00
parent f69d1120ed
commit e034f2819b

View File

@@ -51,7 +51,7 @@ GROUP BY ts.tablespace_name,
ORDER BY ts.tablespace_name;
SELECT 'CREATE TEMPORARY TABLESPACE "' || ts.tablespace_name || '" TEMPFILE ' || CHR (13) || CHR (10)
|| LISTAGG ('' || df.file_name || '''' || ' SIZE '
|| LISTAGG (' ''' || df.file_name || '''' || ' SIZE '
|| nvl(e.used_bytes,10*1024*1024) -- si taille nulle, on retourne 10M
|| DECODE (
df.autoextensible,