Search
 
SCRIPT & CODE EXAMPLE
 

SQL

alter tablespace add datafile

SELECT * FROM DBA_DATA_FILES WHERE TABLESPACE_NAME = 'my_tbs' ORDER BY FILE_NAME;

ALTER TABLESPACE my_tbs ADD DATAFILE '/path/to/my_file.dbf' 
	SIZE 100M AUTOEXTEND OFF;
-- Autoextend with max size:
ALTER TABLESPACE my_tbs ADD DATAFILE '/path/to/my_file.dbf' 
	SIZE 10G AUTOEXTEND ON NEXT 1G MAXSIZE 32000M;    
-- For TEMP tablespace:
ALTER TABLESPACE my_tbs ADD TEMPFILE '/path/to/my_file.dbf' 
	SIZE 100M AUTOEXTEND OFF;
Comment

alter tablespace undotbs1 add datafile

select * from dba_tablespace_usage_metrics;

alter tablespace UNDOTBS1 add datafile '+DG_DADOS_JFDF' size 10G autoextend on next 100M maxsize unlimited;
Comment

PREVIOUS NEXT
Code Example
Sql :: 9999 
Sql :: sql table intermédiaire 
Sql :: drop column from table if exist on live server mysql 
Sql :: SQLSTATE[HY000] [1298] Unknown or incorrect time zone 
Sql :: power bi find all ids not in other tables 
Sql :: many to many getting data mysql 
Sql :: how to set all the min and sec data to zero in sql server 
Sql :: oracle update multiple columns 
Sql :: faire une recherche par liste de mot clé sql 
Sql :: *Action: Options are to resolve the compilation/authorization errors, disable the trigger, or drop the trigger. 
Sql :: alasql delete column 
Sql :: truncate syntax in sql 
Sql :: how to ignore the data based on specific keywords? 
Sql :: lesser than or equal to symbol in postgres 
Sql :: sql server system messeges 
Sql :: fix sqlite3 ruby on rails 
Sql :: sql script to get a type task on jira datbase for 12 months 
Sql :: sql query tags 
Sql :: sql to c# linq converter online 
Sql :: does laravel validate sql 
Sql :: postgres docs /copy metacomand 
Sql :: oracle sql , set operators 
Sql :: hacer un programa en python ingresar números enteros determine el maximo 
Sql :: add two days to current date in sql when creating tables 
Sql :: how to make sure two tables have same exact data in sql 
Sql :: how change the field place in mysql 
Sql :: org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement 
Sql :: Aktor yang pernah terlibat di film bergenre Aksi di sql 
Sql :: format datetime mysql 
Sql :: ORACLE SUBSTRING SYNTAX 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =