I had a lot of trouble installing Oracle Database on my Windows Vista machine.
Enjoy a step by step tutorial from installation to working with demonstration data.
- Download:
- Oracle Database 10g Express Edition.
- "Single-byte LATIN1 database for Western European language storage, with the Database Homepage user interface in English only".
- http://www.oracle.com/technetwork/database/express-edition/downloads/102xewinsoft-090667.html
- Installation:
- Unzip both archives.
- Right click on Setup.exe and click Properties. Select the Compatibility tab and check the box to run the program in compatibility mode for Windows XP (Service Pack 2).
- Open System by clicking the Start button , clicking Control Panel, clicking System and Maintenance, and then clicking System.
- In the left pane, click Advanced system settings.
- On the Advanced tab, under Performance, click Settings.
- Click the Advanced tab, and then, under Virtual memory, click Change.
- Clear the Automatically manage paging file size for all drives check box.
- Under Drive [Volume Label], click the drive that contains the paging file you want to change.
- Click Custom size, type 4603 megabytes in the Initial size (MB) and Maximum size (MB) box, click Set, and then click OK.
- Run Setup.exe in the ds_windows_x86_101202_disk1 folder.
- When requested, navigate to the stage folder in the ds_windows_x86_101202_disk2 folder.
- Follow on-screen instructions to complete installation.
- NOTE: Be sure to remember the SYSTEM account password.
- Access demonstration data:
- Navigate to Oracle Database 10g Express Edition in your start menu.
- Click Run SQL Command Line.
- Enter the following commands (with a carriage return at the end of each line):
conn system/[SYSTEMPASSWORDSEENOTE]@xe
alter user hr account unlock;
conn hr/hr@xe
- Follow instructions to change hr account password.
- Working with demonstration data in comand line:
- Enter the following commands to list the available tables to the hr accout:
select table_name from user_tables;
- Other SQL commands can be executed here.
- Working with demonstration data in GUI:
- Navigate to Oracle Database 10g Express Edition in your start menu.
- Click Go To Database Home Page.
- Log in using the username hr and the password you selected for the hr account.
- You can now interface with the data graphically.
tutorial complete :D