To create table space raw/ empty storage or mount point will be given in terabytes In one table space we can create 1024 data files One data file size is 32GB In table space it contains tables, segments, extents, blocks, rows, data In this the tables and data are physical remaining all are logical Table space is also logical The default block size is 8KB We can change the block size manually to 12kb and 16kb To create table space use this command We should give CRD files location only to create table space Create tablespace tablespace name datafile ‘/mount point /directory /data file/.table space name.dbf’ size2g; For eg: employee table Emp id Emp name Emp Sal Emp bon Emp OT 150 Mega star 40,000 2000 8000 786 Power star 56,000 3000 4000 111 Super star 48,000 2600 6000 Command to create table: Create table emp (emp id num (20), emp sal integer (20), e name varchar 2(20) ); Here integer means numbers, varchar means spelling Semantic ...