EasyStorr, more elegant and convenient access to data objects, accessing the local area like MAP.

2023-03-14  

select tablespace_name,file_name,bytes/1024/1024 file_size,autoextensible from dba_temp_files
select * from database_properties where property_name=‘DEFAULT_TEMP_TABLESPACE’;
– Query table space file path
select * from dba_data_files;

/alter user train
temporary tablespace temp;
/

– Create table space
CREATE TABLESPACE TRAIN_DATA
LOGGING
DATAFILE ‘F:\ORACLE\ORADATA\ORCL\TRAIN_DATA.ORA’ SIZE 500M
REUSE AUTOEXTEND
ON NEXT 1024K MAXSIZE 32767M EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO ;

– User
CREATE USER TRAIN PROFILE “DEFAULT”
IDENTIFIED BY ffffff DEFAULT TABLESPACE TRAIN_DATA
TEMPORARY TABLESPACE temp
ACCOUNT UNLOCK;
– Givening the role
GRANT “CONNECT” TO TRAIN WITH ADMIN OPTION;
GRANT “DBA” TO TRAIN WITH ADMIN OPTION;
ALTER USER TRAIN DEFAULT ROLE ALL;

source

Related Posts

Chapter 9 Adapter Mode-Explain in an easy-going way (Summary) JS

Struts 1.2.4 Learning experience! (Seven)

H5 Implementation picture upload case

A parameter and an Excel table, play to the readexcel () table of pandas read

EasyStorr, more elegant and convenient access to data objects, accessing the local area like MAP.

Random Posts

python+pycharm and Visualstudio C ++ community version uses PK and confusing grammar problems

AIX+Oracle11g+ASM Add Disk expansion LHDZ

MSP430F249Timera timer

2021 CS Baoye Experience (2): Shanda CS Summer Camp, West Power CS Summer Camp Cyril

[Compulsory] Principles of artificial intelligence Learning Notes (1) Chapter1 Introduction