linux operating commands and unix operating commands

Hands On Labs: Install Oracle Solaris 10 on Oracle VM VirtualBox

 
Thread Tools Search this Thread
# 1  
Old 02-04-2011
Hands On Labs: Install Oracle Solaris 10 on Oracle VM VirtualBox

Follow the instructions to install a Solaris 10 10/09 appliance image on Oracle VM VirtualBox on your system. For Windows, MacOS, Solaris, and Linux. Use this and future hands-on lab to evaluate and become familiar with the operation of several Oracle Solaris technologies.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

webkit in linux oracle virtualbox

how to run webkit in linux oracle virtualbox inside windows 7 (0 Replies)
Discussion started by: mahor1989
0 Replies

2. Solaris

Is possbile to install Oracle database 10g on Solaris 11 Express ?

Today I finally tuned my Solaris 11 express so now works better :D I want to install some relational database on that machine and learn for my future carrier. I downloaded Oracle database 10g for Solaris x86 and tried to install it but my system didn't passed system requirements, installer... (0 Replies)
Discussion started by: solaris_user
0 Replies

3. Solaris

Oracle install on Solaris

i have installd oracle 10 on Solaris 10 now i want to access this database from remote machine. -bash-3.00$ tnsping 192.168.92.49 TNS Ping Utility for Solaris: Version 10.2.0.2.0 - Production on 17-DEC-2010 21:06:51 Copyright (c) 1997, 2005, Oracle. All rights reserved. Used... (0 Replies)
Discussion started by: akhaliq22
0 Replies

4. Solaris

Can I install oracle without Instantclient in solaris???

Hi I am very new to solaris and OCI ........ I have requirement like I want to install oracle in non global zone with out instant client and Instant client should be in global zone. Normally in windows we use ojdbc14.jar and we will set that jar file to the PATH and we use JDBC to connect to... (0 Replies)
Discussion started by: vijaysachin
0 Replies

5. Solaris

How to install Oracle 11g on Solaris 10

I want to install Oracle 11 on solaris 10. Can help me to find good tutorial about this? Thanks Very Much (2 Replies)
Discussion started by: moslemovic
2 Replies

6. Solaris

Unable to install Oracle 11G in solaris 10

Hi I am unalbe to install oracle 11G in solaris 10 in SPARC machine, I am getting this below errror while installing with /.runInstaller Warning: Cannot convert string "-monotype-arial-regular-r-normal--*-140-*-*-p-*-iso8859-1" to type FontStruct Exception java.lang.NullPointerException... (0 Replies)
Discussion started by: durgaprasadr13
0 Replies

7. UNIX Desktop Questions & Answers

How to install Oracle 8i on Solaris 8 OS on a PC ?

Dear Sir/Madam, I have a hard time to install Oracle 8i on Solaris 8 OS on my PC. Every time I tried to install Oracle I failed, and it gave me a message that I have to change the files which were not specified. Therefore I have no ideas which files I have to modify. If you have the answer,... (2 Replies)
Discussion started by: vuknguyen
2 Replies
Login or Register to Ask a Question
DBIx::Class::Storage::DBI::Oracle::WhereJoins(3)	User Contributed Perl Documentation	  DBIx::Class::Storage::DBI::Oracle::WhereJoins(3)

NAME
DBIx::Class::Storage::DBI::Oracle::WhereJoins - Oracle joins in WHERE syntax support (instead of ANSI). PURPOSE
This module is used with Oracle < 9.0 due to lack of support for standard ANSI join syntax. SYNOPSIS
DBIx::Class should automagically detect Oracle and use this module with no work from you. DESCRIPTION
This class implements Oracle's WhereJoin support. Instead of: SELECT x FROM y JOIN z ON y.id = z.id It will write: SELECT x FROM y, z WHERE y.id = z.id It should properly support left joins, and right joins. Full outer joins are not possible due to the fact that Oracle requires the entire query be written to union the results of a left and right join, and by the time this module is called to create the where query and table definition part of the SQL query, it's already too late. METHODS
See DBIx::Class::SQLMaker::OracleJoins for implementation details. BUGS
Does not support full outer joins. Probably lots more. SEE ALSO
DBIx::Class::SQLMaker DBIx::Class::SQLMaker::OracleJoins DBIx::Class::Storage::DBI::Oracle::Generic DBIx::Class AUTHOR
Justin Wheeler "<jwheeler@datademons.com>" CONTRIBUTORS
David Jack Olrik "<djo@cpan.org>" LICENSE
This module is licensed under the same terms as Perl itself. perl v5.18.2 2013-07-12 DBIx::Class::Storage::DBI::Oracle::WhereJoins(3)