2026-03-12 20:23:15
This commit is contained in:
27
tpt/exttab.sql
Normal file
27
tpt/exttab.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
-- 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.
|
||||
|
||||
COL owner FOR A30
|
||||
COL table_name FOR A30
|
||||
col driver for a20
|
||||
col dirname for a30
|
||||
|
||||
SELECT owner, table_name, type_name driver, default_directory_name dirname, property, reject_limit
|
||||
FROM dba_external_tables
|
||||
WHERE
|
||||
UPPER(table_name) LIKE
|
||||
UPPER(CASE
|
||||
WHEN INSTR('&1','.') > 0 THEN
|
||||
SUBSTR('&1',INSTR('&1','.')+1)
|
||||
ELSE
|
||||
'&1'
|
||||
END
|
||||
) ESCAPE '\'
|
||||
AND owner LIKE
|
||||
CASE WHEN INSTR('&1','.') > 0 THEN
|
||||
UPPER(SUBSTR('&1',1,INSTR('&1','.')-1))
|
||||
ELSE
|
||||
user
|
||||
END ESCAPE '\'
|
||||
/
|
||||
|
||||
Reference in New Issue
Block a user