We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 872f79c commit 2642970Copy full SHA for 2642970
oracle_rds_ddl_tablespace.sql
@@ -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