Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle create 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 :: postgresql change value in column 
Sql :: wsl centos 8 mysql 
Sql :: mysql output csv 
Sql :: postgres list all roles 
Sql :: sql server select where date 
Sql :: best sql course 
Sql :: mysql convert column to uppercase 
Sql :: sQL query to get all table records count from a database 
Sql :: SQl Server Versionen Releases und Build-Nummern 
Sql :: restore postgres database from sql file 
Sql :: oracle limit rows 
Sql :: mysql error incompatible with sql_mode=only_full_group_by 
Sql :: date less than current date sql 
Sql :: wordpress print query sql 
Sql :: oracle undotbs usage 
Sql :: delete a record from a table sqlite3 
Sql :: show procedures mysql 
Sql :: oracle auto_increment 
Sql :: mysql concatenate select results 
Sql :: drop multiple databases mysql 
Sql :: sql server pagination limit 
Sql :: mysql change collation one column 
Sql :: mysql select where starts with 
Sql :: change column name in sql 
Sql :: show constraints mysql 
Sql :: postgresql create user 
Sql :: mysql select multiple rows into one column 
Sql :: snowflake datetrunc month 
Sql :: show all tables postgres 
Sql :: Get the Db column names from a SqlDataReader 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =