Skip to main content

Should I take that Oracle Forms 6.0 PL/SQL job, Steven?

I received this note from a reader from Brazil:

I am a PL/SQL developer for 6 years now. I recently received a job offer to develop in Oracle Forms 6.0, Reports and HTMLDB. I think these are older technologies. I don't know if it is a step back to work on these products, but I do know that I want to develop in Oracle Database 12c, Application Express, and other new technologies. One thing I have found is that it is more and more difficult to find a job in Brazil that only requires PL/SQL experience.  

And this is what I said:

No doubt about it, Oracle Forms 6.0 and HTMLDB are not the leading edge of PL/SQL-based Oracle technologies!

You would be much better off working at a company that has upgraded to Oracle Database 12c, has a strong commitment to fully leveraging SQL and PL/SQL, uses Application Express for website and intranet development, etc.

But keep the following in mind:

  • There are not a whole lot of companies who have upgraded to 12.1.
  • Don't be like me. I "got away" with specializing very narrowly in PL/SQL. Normal humans don't have that luxury. I suggest that at a minimum you need a working knowledge of Java, Javascript, and regular expressions.
  • I probably don't have to tell you this, but you have to live in the world as it is, not how you want it to be.
So maybe you should take that old technology job. If you cannot afford to keep looking, that job might end up being a great platform for you to explore the newer technologies as part of planning their upgrade strategy.

In other words: take the interview and then find out what their future plans. You could end up being in the right place at the right time to take the lead in working with 12.1, APEX and more. You could become the in-house superstar and have a long, successful career right there.

And regardless of whether you take the job or hold off, continuing your search, there is absolutely no reason to put off learning about and using the latest technologies.

Download Oracle Database 12c here

Sign up for your free APEX workspace here

And then, most important of all, pick a project you'd like to work on. In other words, make it as real as possible.

Build an app to keep track of lost kittens in your neighborhood, or a simple to-do list manager or....you name it. Pick an app you really like and then replicate it. You don't have to come up with a wildly, new original idea to hone your skills.

You just need focus and motivation.

Hope this helps!


Comments

  1. Brilliant and sound advice, Steven.

    ReplyDelete
  2. Hello,
    Oh, I really liked it, Steven !

    Learning Oracle12c and APEX and ... + "keeping track of lots of kittens"
    is an excellent definition for enjoying life ...
    especially after your retirement, when you have the freedom of choice ...

    Unfortunately, many companies today do tend to easily throw away entire projects,
    after tens of years of work invested in them ... just for replacing them with
    other inferior projects, whose only point is that they use a newer technology ...

    But, technology is only one thing, and project functionality is another and this
    is what in fact matters to the users ...

    On the other side, each technology is "intricate enough" for stimulating the tendency to become a "guru" in that specific technology, for being really able to apply it at a very high level and come up with ingenious solutions for each and every situation out of that technology ...
    If we already talk about the old good Oracle Forms ... I am still extremely proud
    up to this day from having created business charts in my applications already starting from SQL*Forms version 3.0 !!! -- and, of course, specializing them
    across the higher versions ...

    If somebody wants to survive, I would rather advise him to prefer the database itself
    upon ANY of the other technologies ...
    As Tom Kyte always says, front-end technologies come and go, and it might only depend on a momentary caprice of one manager or another to decide to replace a technology ... and then through you away no matter how valuable you are ...
    The database, instead, will always be THE strategic component of any work place ...
    so, the best advise that I would give a young person today would be to focus
    on the database, and less on the other things around.

    Best Regards,
    Iudith Mentzel

    ReplyDelete
  3. That is very good advice, Iudith. Thanks for offering it up.

    ReplyDelete

Post a Comment

Popular posts from this blog

Quick Guide to User-Defined Types in Oracle PL/SQL

A Twitter follower recently asked for more information on user-defined types in the PL/SQL language, and I figured the best way to answer is to offer up this blog post. PL/SQL is a strongly-typed language . Before you can work with a variable or constant, it must be declared with a type (yes, PL/SQL also supports lots of implicit conversions from one type to another, but still, everything must be declared with a type). PL/SQL offers a wide array of pre-defined data types , both in the language natively (such as VARCHAR2, PLS_INTEGER, BOOLEAN, etc.) and in a variety of supplied packages (e.g., the NUMBER_TABLE collection type in the DBMS_SQL package). Data types in PL/SQL can be scalars, such as strings and numbers, or composite (consisting of one or more scalars), such as record types, collection types and object types. You can't really declare your own "user-defined" scalars, though you can define subtypes  from those scalars, which can be very helpful from the p

The differences between deterministic and result cache features

 EVERY once in a while, a developer gets in touch with a question like this: I am confused about the exact difference between deterministic and result_cache. Do they have different application use cases? I have used deterministic feature in many functions which retrieve data from some lookup tables. Is it essential to replace these 'deterministic' key words with 'result_cache'?  So I thought I'd write a post about the differences between these two features. But first, let's make sure we all understand what it means for a function to be  deterministic. From Wikipedia : In computer science, a deterministic algorithm is an algorithm which, given a particular input, will always produce the same output, with the underlying machine always passing through the same sequence of states.  Another way of putting this is that a deterministic subprogram (procedure or function) has no side-effects. If you pass a certain set of arguments for the parameters, you will always get

My two favorite APEX 5 features: Regional Display Selector and Cards

We (the over-sized development team for the PL/SQL Challenge - myself and my son, Eli) have been busy creating a new website on top of the PLCH platform (tables and packages): The Oracle Dev Gym! In a few short months (and just a part time involvement by yours truly), we have leveraged Oracle Application Express 5 to create what I think is an elegant, easy-to-use site that our users will absolutely love.  We plan to initially make the Dev Gym available only for current users of PL/SQL Challenge, so we can get feedback from our loyal user base. We will make the necessary adjustments and then offer it for general availability later this year. Anyway, more on that as the date approaches (the date being June 27, the APEX Open Mic Night at Kscope16 , where I will present it to a packed room of APEX experts). What I want to talk about today are two features of APEX that are making me so happy these days: Regional Display Selector and Cards. Regional Display Sel