After successfully installing ORACLE 11gR1 on Windows7 32bit platform, I can go inside the SQL PLUS and I can also create database, but I still don't have any clue how to use database.
in MySQL the command to use database should be:
USE MYDATBASENAME;
In SQL SERVER also quite the same:
USE [DATABASE];
But I have no idea how to use database in ORACLE 11gR1 via SQLPLUS, any body have any ideas?
I'm planning to create a table after I succeed in using the USE command.