Pages

Subscribe:

Ads 468x60px

Tuesday 21 February 2012

How to become Oracle Specialist?


Developing experience in databases control area is very hard and challenging. But after becoming expert oracle dba you would produce more definitely. How to become Oracle DBA and how to become an expert Oracle dba?. Here are you can find some main suggestions and comprehension providing for improving your capabilities for making yourself as Oracle expert.

There are a lot of fastest choices available for getting more comprehension. Thing is that you need to upgrade every day. Every day you need to comprehend something more in same Oracle experience of another experience. Of course, if you are coming up with another experience rather than Oracle databases (because you already Oracle DBA) then it is very best option. Several capabilities always are enabling you to create risky of occupation and need. But if you have level comprehension of Oracle databases with most of Oracle models then it is also better than having comprehension of personal version comprehension.

Above articles identifies more components and some techniques to improve your comprehension as well as experience. This occupation suggestions is arriving from greater experience of my own. During mobile portable remote control control databases support and managing as databases dba, we need greater end of experience because clients are not here with you. They are in search of to end of other international locations and you have only their essential databases web host hosting server. Without looking at their activities you should need to problems firing databases issues or without referring to more components you have to deal with their issue using your techniques and experience. This is not easy procedure to maintain because this is routine procedure as mobile portable remote control control dba.

Sunday 12 February 2012

Developing Oracle Application with Java

Oracle provides us with three java methodologies to develop applications in the database; Java stored procedures, Enterprise JavaBeans EJB, and Common Object Request Broker Architecture CORBA. Java stored procedures work closely with database triggers, functions, and procedures. The Java stored procedures method allows you to move Java applications into the database, execute them with the JVM, and return values to PL/SQL programs. Enterprise JavaBeans is a standard for 100 percent Java distributed applications. To support CORBA, Oracle has an Object Request Broker ORB in the database, allowing Internet Inter-ORB Protocol called IIOP communication with distributed objects in any language, including Java. Java implemented CORBA server and EJB applications require that you use multithreaded / shared server configuration.


Java stored Procedures:

Probably the quickest way to begin using Java in the Oracle database is with Java stored procedures. You can quickly create small Java applications, load them into the database, and call them as you would a PL/SQL procedure. Some note-worthy benefits of Java stored procedures are as follows.

They provide centralized enforcement of business rules.
They are part of the SQLJ standard
The Java language is an alternative and complement of PL/SQL

Write the Java code and load it in the Oracle database.

If you are not already a savvy Java developer, you will need to first understand the difference type of Java files. Java source code files have the .java extension and are simple text files. Java source code is compiled into portable bytecode files that have the extension .class, Java .class, and resource files can be compressed and combined into archive files, which end with the .jar extension. You can load the following types of Java files into the Oracle database.

  1. Source code and then compile it using the database bytecode compiler.
  2. Compiled code like .class or .jar files.
  3. Resource files, such as images.

You can use two methods to load Java files into the Oracle database. One method is to run the Oracle loadjava utility from the command line. Because loadjava simplifies the process, we will refer to it in the following sections. The other method is to execute the Create Java DDL statement from SQL*Plus. This requires the following steps.

  • Write the code, using your favorite text editor or Integrated Development Environment IDE.
  • Load the code into a BLOB or LOB with the created java statement.
  • Manually resolve any external reference.
 
How to load object using Loadjava, this we can learn from our next session. Want more Oracle DBA tutorials? Check our professional online Oracle DBA courses. Dbametrix is leading database dba company to providing database support to global clients with all aspects and requirement of client to manage small to large databases with strong service level agreement and response time.

Wednesday 8 February 2012

Oracle Advance Security - What is Kerberos Protocol

What is Kerberos?



Kerberos is named after the three-headed dob Cerberus, who guards the gates of the underworld in Greek mythology.

A network security system developed as part of project Athena at MIT. Kerberos is used to authenticate a user who is asking to use a particular network service.

Kerberos can be used to control the initial connection to a server or can be used to authenticate every single request and message passed between the client and the server. It grants tickets to a client to allow the use of a specific service and is secure even on a non-secure network.

Kerberos takes the following precautions:
  • Passwords are never sent unencrypted over the network. This means that network snoopers cannot easily capture passwords.
  • All Kerberos messages are timestamped so that they cannot be captured and replayed later; Kerberos does not accept old messages.
When you request access to a service-to access a file server, for example – Kerberos gives you a ticket, which is valid for access to the file server but not valid for any other service. When you try to connect to the database server, you send your ticket with the request. Once the database server knows who you are, the server decides whether to grant you access. Tickets also expire, and if your session lasts longer that the predefined time limit, you will have to re-authenticate yourself to Kerberos to get a new ticket.

The Kerberos method uses powerful cryptography so that a customer can confirm its identification to a hosting server (and vice versa) across an inferior system relationship. After a customer and hosting server has used Kerberos to confirm their identification, they can also secure all of their emails to guarantee comfort and information reliability as they go about their enterprise.

Kerberos is strong method of authentication for deploying high level of security of Oracle database. Of course, it is not sufficient to maintain single security on database server. Database DBA always recommends advance security of Oracle database server. Data security is major goal for every company and maintains high security of data is important security achievement for every Oracle specialist who is providing database support either remotely or onsite.