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

PREVIOUS NEXT
Code Example
Sql :: wsl install mysql 
Sql :: install mysql 8 linux 
Sql :: postgres concat_ws 
Sql :: insert multiple rows in sql workbench 
Sql :: sql current year 
Sql :: mysql tables max count 
Sql :: oracle sql group by date year 
Sql :: can you use a where clause for a child query 
Sql :: mysql insert from local csv 
Sql :: real world example of nosql 
Sql :: sql random integer 
Sql :: sql select data from last week 
Sql :: connecting to mysql database using python 
Sql :: delete role postgres 
Sql :: mysql - find in comma separated string of values 
Sql :: Select last row from SQL Table 
Sql :: how select a json value in mysql 
Sql :: oracle add auto_increment column to existing table 
Sql :: sql select sum group by id laravel join 
Sql :: check mysql username and password ubuntu 
Sql :: sql check double value 
Sql :: sql concat string with column value 
Sql :: oracle show index columns 
Sql :: postgresql to_char time 
Sql :: sql count group by 
Sql :: how to rename a database in tsql 
Sql :: SQL Count UNIQUE Rows 
Sql :: mysql alter table add column first 
Sql :: drop index in sql 
Sql :: apex set debug level 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =