Files
oracle/tpt/setup/wordfile_18c.sql

28 lines
1.1 KiB
MySQL
Raw Permalink Normal View History

2026-03-12 21:23:47 +01:00
-- Copyright 2018 Tanel Poder. All rights reserved. More info at http://tanelpoder.com
-- Licensed under the Apache License, Version 2.0. See LICENSE.txt for terms & conditions.
set lines 300 trimspool on pages 0 head off feedback off termout off
SELECT DISTINCT name FROM (
select lower(keyword) name from v$reserved_words union all
select upper(table_name) from dict union all
select upper(column_name) from dict_columns union all
-- select object_name from dba_objects union all
select upper(object_name||'.'||procedure_name) from dba_procedures union all
-- select '"'||table_name||'".'||column_name from dba_tab_columns union all
select ksppinm from x$ksppi union all
select name from v$sql_hint
)
WHERE length(name) > 2
ORDER BY 1
.
spool wordfile_18c.txt
/
spool off
-- you can also add TPT scripts by running this in TPT script dir:
-- find . -type f -name "*.sql" | sed 's/^\.\///' | awk '{ print "@" $1 }' >> ~/work/oracle/wordfile_18c.txt
-- or you could just run rlwrap sqlplus while being in the directory where the scripts are located!!