BCA-II (DBMS) Practical/Lab:- WT:(9:45-11:00)
Login in Oracle 10g software: Open oracle 10g software: press window button type "go to " and click on oracle software. User ID: system Password: oracle10g To create User: Syntax: create user <username> identified by <password>; Example: create user Ram identified by ram12345 ; To display all the tables in oracle: select * from tab; To display the content of the table: select * from student; To see the schema (columnName, datatype, size of a table) desc student; To create a table in oracle: Syntax: create table <tableName> ( attribute1 datatype(size), attribute2 datatype(size) ); Example: create table student ( rollno var...