Search
 
SCRIPT & CODE EXAMPLE
 

SQL

alter tablespace add datafile autoextend

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

PREVIOUS NEXT
Code Example
Sql :: is there any command to change postgres password 
Sql :: mysql safe mode 
Sql :: ORACLE SHOW AVAILABLE DB LINK 
Sql :: select columns table mysql 
Sql :: t sql check column exists 
Sql :: mysql select last 10 rows 
Sql :: how to change column type psql 
Sql :: where clause for child record apex 
Sql :: mysql load data infile csv 
Sql :: sql server current date minus 5 years 
Sql :: sql update all rows 
Sql :: get last week data in mysql 
Sql :: array out of range mql4 
Sql :: create function in postgresql 
Sql :: alphabetical order mysql 
Sql :: view t-sql mail configuration 
Sql :: show data in table postgres 
Sql :: racle create auto increment column 
Sql :: mysql select and count left join 
Sql :: order by sql 
Sql :: mysql check if not null 
Sql :: add computed column to table sql server 
Sql :: Configure postgresql engine for your django application 
Sql :: oracle auto increment primary key 
Sql :: drop table with constraints 
Sql :: start mysql 
Sql :: SQL COUNT() with DISTINCT 
Sql :: mysql add column after another 
Sql :: sqlalchemy join on column 
Sql :: create a view in sqlite 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =