Roles in SOA and their responsibilities
There are 4 roles in SOA: Architecture team Business analysts Management / executive team Technical team (design / development) Roles in SOA - Technical team (design / development) Answers…
There are 4 roles in SOA: Architecture team Business analysts Management / executive team Technical team (design / development) Roles in SOA - Technical team (design / development) Answers…
This is a short tutorial showing how to setup wordpress and cloudflare flexible ssl. Cloudflare offer a service called 'flexible ssl' this means that cloudflare encrypts your content between the…
This post will show you how to install phpcs and phpmd in sublime text on your mac: Following on from my post about using git and phpcs in brackets, I…
Setting up brackets editor with git and phpcs with wordpress coding standard etc Brackets editor (brackets.io) is an editor that I've wanted to try out for a while now, but…
Jonathan Mitchell Portfolio About Me I have a BSc in Electronic Engineering, and an MSc in Advanced Computer Systems Development with Distinction. I was awarded the University Court Medal for…
M-business Security Threats: Device as an attack vector with mobile devices widespread they are commonly being used as attack vectors Virii While not many viruses exist for mobile devices themselves,…
Oracle process overview. There are 3 types of oracle processes: USER processes SERVER processes BACKGROUND processes User connected to a user application (eg sql*plus) controls the application associated with an…
Oracle forms overview. Oracle internet platform consists of 3 components: oracle application server (forms service + OC4J) oracle developer suite (forms developer + object navigator + form module) oracle database…
This is a basic oracle procedure with cursor: DECLARE CURSOR my_cursor IS SELECT * FROM table_a LEFT JOIN table_b ON a.x = b.x BEGIN FOR things IN my_cursor LOOP --…