2026-03-12 21:01:38

This commit is contained in:
2026-03-12 22:01:38 +01:00
parent 3bd1db26cc
commit 26296b6d6a
336 changed files with 27507 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
Inline code: file `myfile.txt`is the good example :)
Code example:
```sql
SET SERVEROUTPUT ON
SET FEEDBACK OFF
declare
CURSOR c_user_tablespaces is
select tablespace_name
from dba_tablespaces
where contents not in ('UNDO','TEMPORARY') and tablespace_name not in ('SYSTEM','SYSAUX');
BEGIN
for r_user_tablespaces in c_user_tablespaces
loop
s1 := s1 || r_user_tablespaces.tablespace_name || ',';
s2 := s2 || r_user_tablespaces.tablespace_name || ''','|| chr(13)||'''';
end loop;
END;
/
```