CSA having some problem


 
Thread Tools Search this Thread
Special Forums Cybersecurity CSA having some problem
# 1  
Old 12-07-2005
Data CSA having some problem

Is there anybody who is familier with CISCO SECURITY AGENT ?

I have installed Oracle 10G Application Server on Linux ES3 successfully..

and It seemed to be working fine...............

But due to some security policy I had to install CSA on that same server..

Till then Oracle is not working...I have stopped CSA process..but in vain..

I just removed CSA & Oracle , then i reinstall oracle again..now it is working

fine again..This process has been performed several times.........RESULT IS

SAME.......... But i have to install both of them...Is it possible ??????
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. HP-UX

HP-UX CSA

Hello, I want earn the HP-UX CSA certification,and i plan to pass exam HP0-A01. So i want if someone can help to find all documents that i need to access my exam. for the moment,i get this : HP-UX - System and Network Administration I HP-UX - System and Network Administration II ... (4 Replies)
Discussion started by: herbich1985
4 Replies

2. HP-UX

CSA wich exam?

Hello, I'm looking books and information for CSA certificate but in HP website, appears the right exam is HP0-091 but I found a book in amazon about HP0-A01 (includes 11.31?)exam, I think this is the last exam but it's extrange the HP website are obsolete. Anyone known wich is the right exam... (4 Replies)
Discussion started by: RuBiCK
4 Replies

3. HP-UX

HP-UX CSA Certif Test exam

Hi All, i will pass the CSA exam next month. i'm looking for examples. thanks and best regards. (1 Reply)
Discussion started by: argaaz
1 Replies

4. HP-UX

certification hp csa HP 0-A01

I WANT DO A HP 0-A01 CERTIFICATION............I WANT SOME DUMPS FOR PRACTICE..please send to me.....IF U HAVE PLEASE SEND ASKAR GHORI SECOND EDITION CSA BOOK ... MY MAIL ID IS thanks and regards Lingesh (5 Replies)
Discussion started by: lingeshwaran.r
5 Replies

5. HP-UX

Hpux Csa -hp 0 095

Gurus, i am planning for HPUX CSA 0 095 Certification .has anyone holding any documentation/soft copy of any useful book.can you pls send it to my mail id saty172@gmail.com rgds (0 Replies)
Discussion started by: pksnairg
0 Replies

6. UNIX for Advanced & Expert Users

HP-UX CSA Exam

Hey All, I have bought some paper from the net... let's say in PDF format. They are some questions from that paper that says Explanation: pending. Send your suggestion tofeedback*****king.com ... anyway. Here are the questions. I have made my choice but would like to know your opinion. 1. The... (1 Reply)
Discussion started by: qfwfq
1 Replies

7. HP-UX

urgent - HP ux csa examination

Hi, It will be grateful to u all, if u give me full details of how to write hp csa examination and questions and answers. If it is available pls. send to email address removed. Thank u ramesh (0 Replies)
Discussion started by: ramesh_ac66
0 Replies

8. UNIX for Dummies Questions & Answers

Certified Systems Administrator (CSA) - HP-UX v11

Hi Gues I Want To Go For Hp Unix Certification (as A System Admin) But I Dont Even Have Primary Knowlege Of Unix Please Guide Me From Where I Should Start Any Book U Can Suggest Me????????? Even I Dont Have Much Information About The Hp Certification Please Provide Me The Information For... (2 Replies)
Discussion started by: a_khante
2 Replies

9. HP-UX

HP-UX CSA book

Hi, Does anybody have HP-UX CSA book by Rafeeq Ur Rehman 2nd edition, any pdf or chm? Regards, Yoman (1 Reply)
Discussion started by: yoman
1 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)