Skip to content

Commit 2642970

Browse files
committed
added oracle_rds_ddl_tablespace.sql
1 parent 872f79c commit 2642970

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

oracle_rds_ddl_tablespace.sql

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
--
2+
-- Author: Hari Sekhon
3+
-- Date: 2024-10-18 01:25:03 +0400 (Fri, 18 Oct 2024)
4+
--
5+
-- vim:ts=4:sts=4:sw=4:et:filetype=sql
6+
--
7+
-- https///github.com/HariSekhon/SQL-scripts
8+
--
9+
-- License: see accompanying Hari Sekhon LICENSE file
10+
--
11+
-- If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
12+
--
13+
-- https://www.linkedin.com/in/HariSekhon
14+
--
15+
16+
-- Oracle - get the Tablespace DDL
17+
18+
SELECT
19+
-- USERS tablespace was case sensitive
20+
dbms_metadata.get_ddl('TABLESPACE','USERS')
21+
FROM dual;

0 commit comments

Comments
 (0)