Answers for "change tablespace of a table in oracle"

SQL
0

oracle change tablespace size

ALTER TABLESPACE tablespace_name
    ADD DATAFILE 'path_to_datafile'
    SIZE size
    AUTOEXTEND ON;
Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on April-21-2021
0

oracle table change tablespace lob column

alter table t move lob(y) store as ( tablespace users )
Posted by: Guest on April-21-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language