Skip to main content

Looking for Another Oracle Developer Advocate for SQL

The Oracle Developer Advocates team is responsible for helping users fully leverage their investment in Oracle Database and to promote the use of Oracle Database technologies for application developers, including SQL, PL/SQL, Application Express, Oracle REST Data Services, and more.

Each Oracle Developer Advocate (ODA) is responsible for the creation of high quality and highly entertaining resources for training and education; channeling user requirements back to Product Management and Product Development; building a vibrant, engaged global user community. 

The main focus for this member of the ODA team is, however, the SQL language.

To apply: Visit search for req 150009IK

The ideal ODA candidate:
  • Is proficient in Oracle SQL and has kept up with the latest and greatest features
  • Can explain things  (in particular, the relational model, set theory, etc.) in ways people understand and by which they are inspired
  • Enjoys performing in front of a crowd – and a camera (heads up: you will be auditioning for the job!)
  • Is easy to get along with; her or his ego fits through the doorway
Each Oracle Developer Advocate will:
  • Hold monthly webinars in their technology focus area
  • Write and publish through the PL/SQL Challenge a weekly quiz on their technology
  • Publish daily tips through Twitter and other social media outlets
  • Attend key User Group conferences, to present, listen and learn
  • Work closely with Product Management and Product Development to both deepen product understanding and more effectively communicate to users how to use those products.
Location and Travel

The ODA team is distributed geographically; you do not need to work out of Oracle Headquarters to do this job.

You should expect 25% travel, though the amount of travel will be largely up to you. The focus of our team is on building global communities, and this will be done mostly through the Internet, as opposed to via jet planes.

The ODA team is going to help Oracle Database developers utilize that language more fully, and to make it easier for all the experts "out there" (outside of Oracle) to contribute their knowledge to the global community. And along the way, we will utilize the latest multimedia and education technologies to create engaging, entertaining resources that will change the way our core application development technologies for Oracle Database are perceived and used.

If you've been around the Oracle technology community for a while and are looking for a way to contribute more, to do more, to have a greater impact, then consider the ODA position. If you want to help ensure that SQL is appreciated, leveraged and flourishes "in the wild", if you like to help others do what you have learned to do, then apply for this position.

Are You Really Excited About This Job?

I would be (I am). It's a "plum" position - you get paid to play and explore and share what you learn. But you must be an excellent and effective communicator. This means you will be auditioning for this job. 

So if you think you are a good fit and want to get a jumpstart on the process, by all means apply at the link above, but also feel free to record a video explaining why SQL is such an amazing and powerful language and why I should be excited and inspired to learn it. Send me a link and I will happily take time away from writing yet another PL/SQL quiz to watch you.

Note: when you check out the job requisition, ignore everything from this on down:

"Lead a team that acts as the central resource and driving force for the design, process, manufacturing, test, quality and marketing of product(s) as they move from conception to distribution. Organize interdepartmental activities ensuring completion of the project/product on schedule and within budget...."

Comments

  1. Hi Steven,

    Your team of ODA's, Oracle Developer Advocates, particularly this "ODA for SQL"...
    Dream job this it! (Y-ODA like)

    Keep it UP, big hug,
    Nuno O.

    ReplyDelete
  2. This comment has been removed by a blog administrator.

    ReplyDelete

Post a Comment

Popular posts from this blog

Why DBMS_OUTPUT.PUT_LINE should not be in your application code

A database developer recently came across my  Bulletproof PL/SQL  presentation, which includes this slide. That first item in the list caught his attention: Never put calls to DBMS_OUTPUT.PUT_LINE in your application code. So he sent me an email asking why I would say that. Well, I suppose that is the problem with publishing slide decks. All the explanatory verbiage is missing. I suppose maybe I should do a video. :-) But in the meantime, allow me to explain. First, what does DBMS_OUTPUT.PUT_LINE do? It writes text out to a buffer, and when your current PL/SQL block terminates, the buffer is displayed on your screen. [Note: there can be more to it than that. For example, you could in your own code call DBMS_OUTPUT.GET_LINE(S) to get the contents of the buffer and do something with it, but I will keep things simple right now.] Second, if I am telling you not to use this built-in, how could text from your program be displayed on your screen? Not without a lot o...

How to Pick the Limit for BULK COLLECT

This question rolled into my In Box today: In the case of using the LIMIT clause of BULK COLLECT, how do we decide what value to use for the limit? First I give the quick answer, then I provide support for that answer Quick Answer Start with 100. That's the default (and only) setting for cursor FOR loop optimizations. It offers a sweet spot of improved performance over row-by-row and not-too-much PGA memory consumption. Test to see if that's fast enough (likely will be for many cases). If not, try higher values until you reach the performance level you need - and you are not consuming too much PGA memory.  Don't hard-code the limit value: make it a parameter to your subprogram or a constant in a package specification. Don't put anything in the collection you don't need. [from Giulio Dottorini] Remember: each session that runs this code will use that amount of memory. Background When you use BULK COLLECT, you retrieve more than row with each fetch, ...

PL/SQL 101: Three ways to get error message/stack in PL/SQL

The PL/SQL Challenge quiz for 10 September - 16 September 2016 explored the different ways you can obtain the error message / stack in PL/SQL. Note: an error stack is a sequence of multiple error messages that can occur when an exception is propagated and re-raised through several layers of nested blocks. The three ways are: SQLERRM - The original, traditional and (oddly enough) not currently recommended function to get the current error message. Not recommended because the next two options avoid a problem which you are unlikely  to run into: the error stack will be truncated at 512 bytes, and you might lose some error information. DBMS_UTILITY.FORMAT_ERROR_STACK - Returns the error message / stack, and will not truncate your string like SQLERRM will. UTL_CALL_STACK API - Added in Oracle Database 12c, the UTL_CALL_STACK package offers a comprehensive API into the execution call stack, the error stack and the error backtrace.  Note: check out this LiveSQL script if...