JDBC Tutorials - Herong's Tutorial Notes
Dr. Herong Yang, Version 2.11

Creating Oracle Database Users

This section describes how to create a database user on the Oracle server through the Web interface.

During the installation process, only one administration login user was created on the Oracle server. When connecting Java programs to the server, it's better to use a regular login user. Here is what I did to create a user called "Herong" through the Web interface.

  • Run IE with http://localhost:8080/apex.
  • Login with "SYSTEM/Yang".
  • Click on the Administration menu icon, and select "Database User" > "Create User". I got the Create Database User page.
  • Enter "Herong" as Username and "TopSecret" as Password. Check the "CREATE TABLE" and other privileges.
  • Click the Create button. User "Herong" is created. See the user list page below:

Oracle User List

Note that "HR" is another login uesr that provided by the installation process for tutorial demonstration purpose.

Table of Contents

 About This Book

 JDBC (Java Database Connectivity) Introduction

 Downloading and Installing JDK - Java SE

 Installing and Running Java DB - Derby

 Derby (Java DB) JDBC Driver

 Derby (Java DB) JDBC DataSource Objects

 Java DB (Derby) - DML Statements

 Java DB (Derby) - ResultSet Objects of Queries

 Java DB (Derby) - PreparedStatement

 MySQL Installation on Windows

 MySQL JDBC Driver (MySQL Connector/J)

 MySQL - PreparedStatement

 MySQL - Reference Implementation of JdbcRowSet

 MySQL - JBDC CallableStatement

 MySQL CLOB (Character Large Object) - TEXT

 MySQL BLOB (Binary Large Object) - BLOB

Oracle Express Edition Installation on Windows

 Oracle Database 10g Express Edition (XE) Installation

 Accessing Oracle Server through Web Interface

Creating Oracle Database Users

 SQL*Plus - Oracle Command Line Interface

 Oracle JDBC Drivers

 Oracle - Reference Implementation of JdbcRowSet

 Oracle - PreparedStatement

 Oracle - JBDC CallableStatement

 Oracle CLOB (Character Large Object) - TEXT

 Oracle BLOB (Binary Large Object) - BLOB

 Microsoft SQL Server 2005 Express Edition

 Microsoft JDBC Driver for SQL Server - sqljdbc.jar

 Microsoft JDBC Driver - Query Statements and Result Sets

 Microsoft JDBC Driver - DatabaseMetaData Object

 Microsoft JDBC Driver - DDL Statements

 Microsoft JDBC Driver - DML Statements

 SQL Server - PreparedStatement

 SQL Server CLOB (Character Large Object) - TEXT

 SQL Server BLOB (Binary Large Object) - BLOB

 JDBC-ODBC Bridge Driver - sun.jdbc.odbc.JdbcOdbcDriver

 JDBC-ODBC Bridge Driver - Flat Text Files

 JDBC-ODBC Bridge Driver - MS Access

 JDBC-ODBC Bridge Driver - MS SQL Server

 Summary of JDBC Drivers and Database Servers

 Additional Tutorial Notes to Be Added

 References

 PDF Printing Version

Dr. Herong Yang, updated in 2007
Creating Oracle Database Users