/* Création de la tablespace */ CREATE TABLESPACE TP2_tps DATAFILE 'C:\tp2_tps.dat' SIZE 50 m AUTOEXTEND ON ONLINE ; /* Création de la tablespace temporaire */ CREATE TEMPORARY TABLESPACE TP2_temp TEMPFILE 'C:\tp2_temp.dat' SIZE 50 m AUTOEXTEND ON ; /*Création du nouvel utilisateur*/ CREATE USER ADMIN IDENTIFIED BY 0000 DEFAULT TABLESPACE TP2_tps TEMPORARY TABLESPACE TP2_temp ;