Search
 
SCRIPT & CODE EXAMPLE
 

SQL

alter database datafile maxsize 32g

SELECT * FROM DBA_DATA_FILES;

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 32G;    
-- For TEMP tablespaces:
ALTER TABLESPACE my_tbs ADD TEMPFILE '/path/to/my_file.dbf' 
	SIZE 100M AUTOEXTEND OFF;
Comment

PREVIOUS NEXT
Code Example
Sql :: create user with encrypted password postgresql 
Sql :: oracle datafile max size 32gb 
Sql :: macos oracle docker oracle11g 
Sql :: sql check constraint 
Sql :: mysql remove tabs from string 
Sql :: how to avoid duplicate records in sqlite 
Sql :: SQL/delete 
Sql :: reindex mssql table 
Sql :: use of undefined constant mysql_assoc - assumed 
Sql :: mysql group rows with same value 
Sql :: how to declare variable date in mysql 
Sql :: mysql max connections exceeded max_connections_per_hour 
Sql :: sql group_concat 
Sql :: redirection 301 htaccess nom de domaine 
Sql :: mysql in clausule string array 
Sql :: convert minutes to hours in sql 
Sql :: insert data to postgresql from excel 
Sql :: sql is null and is not null 
Sql :: update statement postgres 
Sql :: Concatenate columns in table 
Sql :: get into database psql 
Sql :: fatal error uncaught mysqli_sql_exception 
Sql :: postgresql add not null and not empty constraint 
Sql :: mysql insert into multiple tables 
Sql :: what is like operator in sql 
Sql :: select first and last row mysql 
Sql :: where keyword sql 
Sql :: aliasing in sql 
Sql :: set identity_insert off 
Sql :: 10000000000000000000 am to meters 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =