<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6464895678569851494</id><updated>2011-08-11T19:45:55.631+08:00</updated><title type='text'>DBCON - The best and most convenient way to learn Oracle Application Express (Oracle APEX)</title><subtitle type='html'>DBCON - The best and most convenient way to learn Oracle Application Express. Live online training in Oracle APEX with money back guarantee, dedicated environment for hands-on practise, basic and advanced courses.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://blog.dbcon.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>13</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6464895678569851494.post-4083487524617405272</id><published>2010-02-20T18:06:00.025+08:00</published><updated>2010-02-21T22:09:05.598+08:00</updated><title type='text'>Integrating Google Maps in an APEX Application</title><content type='html'>&lt;div style="text-align: justify;"&gt;Here is how you can integrate Google Maps in an APEX Application.This video was created using the PDF document available at URL&amp;nbsp;&lt;a href="http://www.oracle.com/technology/products/database/application_express/pdf/Integrating_Application_Express_with_Google_Maps.pdf"&gt;http://www.oracle.com/technology/products/database/application_express/pdf/Integrating_Application_Express_with_Google_Maps.pdf&lt;/a&gt; . Some of the codes were changed to make it work in the demonstrated scenario. This Google map was integrated in "Add/Modify Customers" page of Sample Application.&lt;/div&gt;&lt;br /&gt;&lt;b&gt;&lt;u&gt;Tip&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;1. Click on play and select '720p' from the toolbar to view the video in high&amp;nbsp;resolution&lt;br /&gt;2. Click on icon&amp;nbsp;&lt;img align="middle" src="http://www.dbcon.com/blogimages/video_maximize.jpg" /&gt;&amp;nbsp;to view the video in full screen&lt;br /&gt;&lt;br /&gt;&lt;object width="480" height="295"&gt;&lt;param name="movie" value="http://www.youtube.com/v/6m7kog6ch2c&amp;hl=en_US&amp;fs=1&amp;rel=0"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/6m7kog6ch2c&amp;hl=en_US&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;These are the steps involved in integrating Google Maps in your APEX Application&lt;br /&gt;&lt;br /&gt;1. Embedding Google Maps is accomplished using JavaScript to invoke the Google Maps API. So the first step is sign up for the Google Maps API Key, which is required to use the API in your application. You can sign up for API Key at URL&amp;nbsp;&lt;a href="http://code.google.com/apis/maps/signup.html"&gt;http://code.google.com/apis/maps/signup.html&lt;/a&gt;&lt;br /&gt;2. Create substitution string in your APEX application for the API Key&lt;br /&gt;3. Edit the page where you want to show Google Maps. Add 3 items to the page that will store the location co-ordinates.&lt;br /&gt;4. Create a process "Call Google Geocode Service" to get the location co-ordinates based on customer's address&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;DECLARE&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; l_address &amp;nbsp; VARCHAR2(4000);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; l_url &amp;nbsp; &amp;nbsp; &amp;nbsp; VARCHAR2(32000);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; l_response &amp;nbsp;VARCHAR2(3200);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;BEGIN&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; l_address := :P7_CUST_STREET_ADDRESS1 ;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; IF :P7_CUST_CITY IS NOT NULL THEN&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;l_address := l_address || ',' || :P7_CUST_CITY ;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; END IF;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; IF :P7_CUST_STATE IS NOT NULL THEN&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;l_address := l_address || ',' || :P7_CUST_STATE ;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; END IF;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; IF :P7_CUST_POSTAL_CODE IS NOT NULL THEN&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;l_address := l_address || ',' || :P7_CUST_POSTAL_CODE ;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; END IF;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; l_address := REPLACE(l_address,' ','+');&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; l_url := 'http://maps.google.com/maps/geo?q='||l_address||'&amp;amp;'||'output=csv'||'&amp;amp;'||'key='||:API_KEY;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; l_response := UTL_HTTP.REQUEST(l_url, APEX_APPLICATION.G_PROXY_SERVER);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; :P7_RESPONSE &amp;nbsp;:= l_response;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; :P7_LATITUDE &amp;nbsp;:= SUBSTR(l_response,INSTR(l_response,',',1,2)+1,(INSTR(l_response,',',1,3)-INSTR(l_response,',',1,2))-1);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;&amp;nbsp; :P7_LONGTITUDE := SUBSTR(l_response,INSTR(l_response,',',1,3)+1);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;END;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;5. Create a process to get the location co-ordinates based on customer's address&lt;br /&gt;6. Add a region to the page to display map. Set the region source to following&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;lt;div id="map" style="width: 600px; height: 400px"&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;7. Add JavaScript to the HTML Header attribute of the page&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;lt;script src="http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=&amp;amp;API_KEY." type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;//&amp;lt;![CDATA[&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;//globals&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;var bounds = new GLatLngBounds();&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;function initMap() {&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;if (GBrowserIsCompatible()) {&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;var map = new GMap2(document.getElementById("map"));&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;var title = "&amp;amp;P7_CUST_STREET_ADDRESS1.";&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;map.addControl(new GSmallMapControl());&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;map.addControl(new GMapTypeControl());&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;var point = new GLatLng($v('P7_LATITUDE'),$v('P7_LONGTITUDE'));&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;bounds.extend(point);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;map.setCenter(point);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;map.setZoom(map.getBoundsZoomLevel(bounds)-4);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;var marker = new GMarker(point);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;map.addOverlay(marker);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;}&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;}&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;//]]&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;8. Add the following onload event HTML Body Attribute of the page.&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;onload="initMap()" onunload="GUnload()"&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6464895678569851494-4083487524617405272?l=blog.dbcon.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.dbcon.com/feeds/4083487524617405272/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6464895678569851494&amp;postID=4083487524617405272' title='35 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/4083487524617405272'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/4083487524617405272'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/2010/02/integrating-google-maps-in-apex.html' title='Integrating Google Maps in an APEX Application'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>35</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6464895678569851494.post-3782202912722699748</id><published>2010-02-15T09:51:00.012+08:00</published><updated>2010-02-20T19:16:26.220+08:00</updated><title type='text'>How to build online help in an APEX Application</title><content type='html'>&lt;div style="text-align: justify;"&gt;Providing online help in your applications makes it user friendly. Here is how you can build online help in the applications built on Oracle Application Express.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;u&gt;Tip&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;1. Click on play and select '720p' from the toolbar to view the video in high&amp;nbsp;resolution&lt;br /&gt;2. Click on icon&amp;nbsp;&lt;img align="middle" src="http://www.dbcon.com/blogimages/video_maximize.jpg" /&gt;&amp;nbsp;to view the video in full screen&lt;/div&gt;&lt;br /&gt;&lt;object height="295" width="480"&gt;&lt;param name="movie" value="http://www.youtube.com/v/eG0zz0YG-vw&amp;hl=en_US&amp;fs=1&amp;rel=0"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/eG0zz0YG-vw&amp;hl=en_US&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6464895678569851494-3782202912722699748?l=blog.dbcon.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.dbcon.com/feeds/3782202912722699748/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6464895678569851494&amp;postID=3782202912722699748' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/3782202912722699748'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/3782202912722699748'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/2010/02/how-to-build-online-help-in-apex.html' title='&lt;p align =&quot;justify&quot;&gt;How to build online help in an APEX Application&lt;/p&gt;'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6464895678569851494.post-8235378850748310365</id><published>2009-12-31T15:27:00.009+08:00</published><updated>2010-01-06T17:26:10.648+08:00</updated><title type='text'>Oracle Certification Program ( OCP ) now available for Oracle Application Express</title><content type='html'>&lt;div style="text-align: justify;"&gt;Now there is a certification exam available for Oracle Application Express. Called "&lt;b&gt;Oracle Application Express Developer Certified Expert&lt;/b&gt;". Currently available as a beta exam, the price for the exam is US$ 50.&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" src="http://www.dbcon.com/blogimages/OCPinOracleAPEX.jpg" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;As per details on Oracle's website "As an Oracle Application Express Developer Certified Expert, you should have the skills necessary to develop and deploy your application from beginning to end. The skills that you will gain through your experience and preparing for the exam will also allow you to manage database objects using SQL Workshop, utilize and manage shared components, manage authentication, authorization, and session state within your application, as well as administer Application Express Workspaces."&lt;br /&gt;&lt;br /&gt;Beta Exam code is &lt;b&gt;1Z1-450&lt;/b&gt; and the certification that will be awarded is "&lt;b&gt;Oracle Application Express Developer Certified Expert&lt;/b&gt;"&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="text-align: left;"&gt;To view more details and to register for the exam please visit &lt;a href="http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&amp;amp;p_org_id=&amp;amp;lang=&amp;amp;p_exam_id=1Z0_450"&gt;http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&amp;amp;p_org_id=&amp;amp;lang=&amp;amp;p_exam_id=1Z0_450&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;DBCON's live online training on "&lt;a href="http://www.dbcon.com/DevelopingWithOracleApex.html"&gt;Developing Applications with Oracle Application Express&lt;/a&gt;" covers the entire curriculum of this certification program and provides an unmatched value for money to help you become a certified expert in Oracle APEX as a developer.&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6464895678569851494-8235378850748310365?l=blog.dbcon.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.dbcon.com/feeds/8235378850748310365/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6464895678569851494&amp;postID=8235378850748310365' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/8235378850748310365'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/8235378850748310365'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/2009/12/oracle-certification-program-ocp-now.html' title='Oracle Certification Program ( OCP ) now available for Oracle Application Express'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6464895678569851494.post-6409412396071740315</id><published>2009-12-20T10:46:00.002+08:00</published><updated>2009-12-20T10:47:46.313+08:00</updated><title type='text'>Oracle APEX Version 4.0 Early Adapter Release is available now !</title><content type='html'>Oracle has released the early adapter version of APEX 4.0.&amp;nbsp;As per details on Oracle's website&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li style="text-align: justify;"&gt;This Early Adopter is not production ready and some new features may contain bugs or incomplete functionality.&amp;nbsp;&lt;/li&gt;&lt;li style="text-align: justify;"&gt;Websheets is not yet available in the Early Adopter.&amp;nbsp;&lt;/li&gt;&lt;li style="text-align: justify;"&gt;Internet Explorer is not currently supported with the hosted APEX 4.0 Early Adopter. The preferred browser for this evaluation is Mozilla Firefox. Internet Explorer will be fully supported at a later date (before Production).&lt;/li&gt;&lt;li style="text-align: justify;"&gt;Online Help has not yet been updated and does not include any new features. An application describing all the new features will be available shortly.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;To try out the new version of APEX 4.0 request for a workspace at &lt;a href="http://tryapexnow.com/"&gt;http://tryapexnow.com&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" src="http://www.dbcon.com/blogimages/apex40_earlyadapter.jpg" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6464895678569851494-6409412396071740315?l=blog.dbcon.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.dbcon.com/feeds/6409412396071740315/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6464895678569851494&amp;postID=6409412396071740315' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/6409412396071740315'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/6409412396071740315'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/2009/12/oracle-apex-version-40-early-adapter.html' title='Oracle APEX Version 4.0 Early Adapter Release is available now !'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6464895678569851494.post-7372286914082828429</id><published>2009-06-16T09:47:00.003+08:00</published><updated>2009-06-16T09:52:16.608+08:00</updated><title type='text'>Announcing the launch of Live Online Training in "Administering Oracle Application Express"</title><content type='html'>&lt;div style="text-align: justify;"&gt;DBCON announces the launch of its new course "Administering Oracle Application Express". Starting right from understanding what is Oracle Application Express to installation, up gradation, configuration, monitoring and management - learn all the essential skills to manage Oracle Application Express Instance in the most effective and efficient way. &lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;For this training, all participants will have their own dedicated linux server (accessible over Internet through secured shell like Putty) where they will practise to install, upgrade, configure, manage &amp;amp; administer Oracle Application Express Instance.&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;DBCON's Live Online Training - Probably the best and most convenient way to learn Oracle Application Express. Anyone from anywhere in the world can attend this live online training. All you need is a PC and Internet connection. Complete course details, batches and schedule available at &lt;a href="http://www.dbcon.com/courses.html"&gt;http://www.dbcon.com/courses.html&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6464895678569851494-7372286914082828429?l=blog.dbcon.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.dbcon.com/feeds/7372286914082828429/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6464895678569851494&amp;postID=7372286914082828429' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/7372286914082828429'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/7372286914082828429'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/2009/06/announcing-launch-of-live-online.html' title='Announcing the launch of Live Online Training in &quot;Administering Oracle Application Express&quot;'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6464895678569851494.post-6907967673134316300</id><published>2009-05-02T07:00:00.016+08:00</published><updated>2009-11-05T11:51:00.329+08:00</updated><title type='text'>First Oracle Application Express Workshop in Singapore</title><content type='html'>&lt;div style="TEXT-ALIGN: justify"&gt;On Monday, 27th April 2009, Oracle Corporation Singapore organized the first ever Oracle Application Express workshop at its office in Singapore. DBCON assisted Oracle in organizing this workshop.&lt;br /&gt;&lt;br /&gt;Despite the fact that Oracle Application Express is not yet popular in this part of the world, the response and the turnout in this workshop was very impressive. Out of a total of 49 people who signed up for the workshop, 29 participants turned up. And that too when the workshop was organized on a weekday (Monday) and after office hours (6:30 - 9:30 PM).&lt;br /&gt;&lt;br /&gt;Pizzas, sandwiches, tea &amp;amp; coffee set the right environment to start the workshop after day's work at office. &lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;Blair Layton from Oracle started with 45 minutes &lt;a href="http://www.oracle.com/technology/products/database/application_express/presentations.html"&gt;presentation&lt;/a&gt; on Oracle Application Express in which he introduced Oracle Application Express, discussed the architecture and covered some of the security aspects. Blair also demonstrated how to create an application in Oracle APEX directly from a spreadsheet - without writing even a single line of code.&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;p&gt;&lt;img style="DISPLAY: inline" title="Oracle APEX Workshop in Singapore" border="0" alt="Oracle APEX Workshop in Singapore" src="http://www.dbcon.com/blogimages/apex_workshop_92.jpg" /&gt;&lt;/p&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;This was followed by the two hands-on lab exercises from &lt;a href="http://www.oracle.com/technology/obe/hol08/otn_apex_hol08.html"&gt;OBE (Oracle By Example) series&lt;/a&gt; so that participants could have a feel of creating applications in Oracle Application Express. In about an hour and a half, most of the participants had their first APEX application up and running. An impressive feat considering the fact that before the start of the workshop most of the participants had no idea about Oracle Application Express.&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;p&gt;&lt;img style="DISPLAY: inline" title="Oracle APEX Workshop in Singapore" border="0" alt="Oracle APEX Workshop in Singapore" src="http://www.dbcon.com/blogimages/apex_workshop_12.jpg" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img style="DISPLAY: inline" title="Oracle APEX Workshop in Singapore" border="0" alt="Oracle APEX Workshop in Singapore" src="http://www.dbcon.com/blogimages/apex_workshop_22.jpg" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img style="DISPLAY: inline" title="Oracle APEX Workshop in Singapore" border="0" alt="Oracle APEX Workshop in Singapore" src="http://www.dbcon.com/blogimages/apex_workshop_32.jpg" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img style="DISPLAY: inline" title="Oracle APEX Workshop in Singapore" border="0" alt="Oracle APEX Workshop in Singapore" src="http://www.dbcon.com/blogimages/apex_workshop_42.jpg" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img style="DISPLAY: inline" title="Oracle APEX Workshop in Singapore" border="0" alt="Oracle APEX Workshop in Singapore" src="http://www.dbcon.com/blogimages/apex_workshop_52.jpg" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img style="DISPLAY: inline" title="Oracle APEX Workshop in Singapore" border="0" alt="Oracle APEX Workshop in Singapore" src="http://www.dbcon.com/blogimages/apex_workshop_62.jpg" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img style="DISPLAY: inline" title="Oracle APEX Workshop in Singapore" border="0" alt="Oracle APEX Workshop in Singapore" src="http://www.dbcon.com/blogimages/apex_workshop_72.jpg" /&gt;&lt;/p&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;Also for the very first time, the lab environment that was given to the participants was setup on &lt;a href="http://aws.amazon.com/"&gt;Amazon AWS&lt;/a&gt; cloud. Oracle Application Express with Amazon AWS cloud is a deadly combination as you can have your application up and running &lt;span style="FONT-WEIGHT: bold" class="Apple-style-span"&gt;literally&lt;/span&gt; in just a couple of hours which includes setting up hardware, operating system, database &amp;amp; creating a fully functional application. &lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;The workshop ended with a quiz round where participants were asked questions from the workshop and got a chance to win T-shirts.&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;Oracle Application Express - Easy to develop, easy to deploy, easy to manage.&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;With Oracle APEX focus on &lt;span style="FONT-WEIGHT: bold" class="Apple-style-span"&gt;what&lt;/span&gt; needs to be done, &lt;span style="FONT-WEIGHT: bold" class="Apple-style-span"&gt;not&lt;/span&gt; how it should be done !&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6464895678569851494-6907967673134316300?l=blog.dbcon.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.dbcon.com/feeds/6907967673134316300/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6464895678569851494&amp;postID=6907967673134316300' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/6907967673134316300'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/6907967673134316300'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/2009/05/first-oracle-application-express.html' title='First Oracle Application Express Workshop in Singapore'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6464895678569851494.post-7963439795343827223</id><published>2009-04-24T15:15:00.016+08:00</published><updated>2010-02-16T07:54:17.391+08:00</updated><title type='text'>How to find out what all database objects have been used in an APEX application</title><content type='html'>&lt;div style="text-align: justify;"&gt;As your APEX application gets bigger and complex sometimes you may want to know what are the different database objects like tables, functions, procedures, sequences etc. that is being used by the application. You may want to have this information handy if you want to transfer your application from one environment to another (typically when you want to deploy application from test envrionment to production environment) or you may also want to have this information so that you can do a housekeeping of your database and remove all the unused objects.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;"Database Object Dependencies" report in Oracle Application Express gives you exactly that information. Checkout in this less than 2 minutes video to see how you can extract this information. &lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;(&lt;span class="Apple-style-span" style="font-style: italic;"&gt;Don't forget to turn the volume up to listen to some nice music as you watch this&lt;/span&gt;)&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;object height="340" width="560"&gt;&lt;param name="movie" value="http://www.youtube.com/v/bGHJH0qCpAk&amp;amp;hl=en&amp;amp;fs=1&amp;amp;rel=0"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/bGHJH0qCpAk&amp;amp;hl=en&amp;amp;fs=1&amp;amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;If you are using highspeed broadband connection, select "720p" option in the toolbar to view the video in high definition (option will be visible once you play the video). Then click on "Full Screen" to view the video in crystal clear format. &lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6464895678569851494-7963439795343827223?l=blog.dbcon.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.dbcon.com/feeds/7963439795343827223/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6464895678569851494&amp;postID=7963439795343827223' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/7963439795343827223'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/7963439795343827223'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/2009/04/how-to-find-out-what-all-database.html' title='How to find out what all database objects have been used in an APEX application'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6464895678569851494.post-1586145006953674443</id><published>2009-04-16T15:02:00.005+08:00</published><updated>2009-11-05T11:52:07.526+08:00</updated><title type='text'>Step by step guide to create "Aria Employee Directory Lookup" application in Oracle APEX</title><content type='html'>&lt;p&gt;&lt;img style="MARGIN: 0px 0px 10px 10px; FLOAT: right" title="Assign existing schema to workspace" border="0" alt="Assign existing schema to workspace" src="http://www.dbcon.com/blogimages/apexapplication_aria.jpg" /&gt;&lt;/p&gt;&lt;div style="TEXT-ALIGN: justify"&gt;Oracle provides some pre-created applications in Oracle Application Express known as packaged applications. Packaged Applications are fully functional applications that you can view, use and customize. These packaged applications can be downloaded from Oracle's web site&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;Even if you download and use packaged application, sometimes and especially for beginners it becomes a challenge to really understand how these packages applications have been developed and decipher each and every component of it. This step-by-step guide is an attempt to address that problem, where you will recreate each any every component of the application yourself and have full understanding of it.&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;One of such packaged applications is “Aria Employee Directory Lookup”. Aria is used globally within Oracle to look up phone numbers, email addresses and other information about employees. Each employee can update his or her preferred contact information and upload an image for the employee profile page. Using this guide you will be able to create Aria Employee Directory Lookup application from scratch.&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;Once you have learnt Oracle Application Express, the next step is to put it to use. Training is necessary for getting the fundamentals right but there can be many challenges when you actually get down to create an application. Having a step-by-step guide that will walk to you through the different steps of how to create an actual application will give you an added advantage. It’s like taking an expressway to gain experience to develop real life applications.&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;Please do not forget to send your comments, feedback and suggestions to contact@dbcon.com . Please specify “Aria Employee Directory Lookup” in your subject line.&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;To use this guide effectively you must have the basic understanding of Oracle Application Express. If you are an absolute beginner in Oracle APEX we will highly recommend you to look at our training program “&lt;a href="http://www.dbcon.com/DevelopingWithOracleApex.html"&gt;Developing Applications with Oracle Application Express&lt;/a&gt;” before you dive into this guide.&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;br /&gt;&lt;a style="MARGIN: 12px auto 6px; DISPLAY: block; FONT: 14px Helvetica, Arial, Sans-serif; TEXT-DECORATION: underline; font-size-adjust: none; font-stretch: normal; -x-system-font: none" title="View Aria Employee Directory Lookup Application - Step-By-Step Guide to create application in Oracle APEX on Scribd" href="http://www.scribd.com/doc/14224511/Aria-Employee-Directory-Lookup-Application-StepByStep-Guide-to-create-application-in-Oracle-APEX"&gt;Aria Employee Directory Lookup Application - Step-By-Step Guide to create application in Oracle APEX&lt;/a&gt;&lt;object id="doc_145671681587186" name="doc_145671681587186" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100%" align="middle" height="500" rel="media:document" resource="http://d.scribd.com/ScribdViewer.swf?document_id=14224511&amp;amp;access_key=key-35kh8hia48v4rhzmvc9&amp;amp;page=1&amp;amp;version=1&amp;amp;viewMode=" media="http://search.yahoo.com/searchmonkey/media/" dc="http://purl.org/dc/terms/"&gt;&lt;param name="_cx" value="17991"&gt;&lt;param name="_cy" value="13229"&gt;&lt;param name="FlashVars" value=""&gt;&lt;param name="Movie" value="http://d.scribd.com/ScribdViewer.swf?document_id=14224511&amp;amp;access_key=key-35kh8hia48v4rhzmvc9&amp;amp;page=1&amp;amp;version=1&amp;amp;viewMode="&gt;&lt;param name="Src" value="http://d.scribd.com/ScribdViewer.swf?document_id=14224511&amp;amp;access_key=key-35kh8hia48v4rhzmvc9&amp;amp;page=1&amp;amp;version=1&amp;amp;viewMode="&gt;&lt;param name="WMode" value="Opaque"&gt;&lt;param name="Play" value="-1"&gt;&lt;param name="Loop" value="-1"&gt;&lt;param name="Quality" value="High"&gt;&lt;param name="SAlign" value="LT"&gt;&lt;param name="Menu" value="-1"&gt;&lt;param name="Base" value=""&gt;&lt;param name="AllowScriptAccess" value="always"&gt;&lt;param name="Scale" value="NoScale"&gt;&lt;param name="DeviceFont" value="0"&gt;&lt;param name="EmbedMovie" value="0"&gt;&lt;param name="BGColor" value="FFFFFF"&gt;&lt;param name="SWRemote" value=""&gt;&lt;param name="MovieData" value=""&gt;&lt;param name="SeamlessTabbing" value="1"&gt;&lt;param name="Profile" value="0"&gt;&lt;param name="ProfileAddress" value=""&gt;&lt;param name="ProfilePort" value="0"&gt;&lt;param name="AllowNetworking" value="all"&gt;&lt;param name="AllowFullScreen" value="true"&gt;&lt;br /&gt;                                       &lt;embed src="http://d.scribd.com/ScribdViewer.swf?document_id=14224511&amp;amp;access_key=key-35kh8hia48v4rhzmvc9&amp;amp;page=1&amp;amp;version=1&amp;amp;viewMode=" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" play="true" loop="true" scale="showall" wmode="opaque" devicefont="false" bgcolor="#ffffff" name="doc_145671681587186_object" menu="true" allowfullscreen="true" allowscriptaccess="always" salign="" type="application/x-shockwave-flash" align="middle" height="500" width="100%"&gt;&lt;/embed&gt;             &lt;span rel="media:thumbnail" href="http://i.scribd.com/public/images/uploaded/20158759/WOkJiseuDMM4GWo6Qdv_thumbnail.jpeg"&gt;       &lt;span property="media:title"&gt;Aria Employee Directory Lookup Application - Step-By-Step Guide to create application in Oracle APEX&lt;/span&gt;   &lt;span property="dc:creator"&gt;asagarwal&lt;/span&gt;        &lt;span property="dc:description"&gt;Step by step guide to create Aria Employee Directory Lookup Application in Oracle Application Express (Oracle APEX). Using this guide you will be able to create Aria Employee Directory Lookup application from scratch in Oracle Application Express&lt;/span&gt;       &lt;span property="dc:type" content="Text"&gt;    &lt;/span&gt;&lt;/span&gt;&lt;/object&gt;&lt;div style="MARGIN: 6px auto 3px; DISPLAY: block; FONT: 12px Helvetica, Arial, Sans-serif; font-size-adjust: none; font-stretch: normal; -x-system-font: none"&gt;&lt;a style="TEXT-DECORATION: underline" href="http://www.scribd.com/upload"&gt;Publish at Scribd&lt;/a&gt; or &lt;a style="TEXT-DECORATION: underline" href="http://www.scribd.com/browse"&gt;explore&lt;/a&gt; others: &lt;a style="TEXT-DECORATION: underline" href="http://www.scribd.com/browse/HowtoGuides-Manuals/"&gt;How-to-Guides &amp;amp; Manu&lt;/a&gt; &lt;a style="TEXT-DECORATION: underline" href="http://www.scribd.com/tag/oracle%20application%20express"&gt;oracle application e&lt;/a&gt; &lt;a style="TEXT-DECORATION: underline" href="http://www.scribd.com/tag/oracle%20apex"&gt;oracle apex&lt;/a&gt; &lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;span style="FONT-WEIGHT: bold" class="Apple-style-span"&gt;Get Supporting Files&lt;/span&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;Like any other application, Aria Employee Directory Lookup is also dependent on other supporting objects. These support objects include&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;ul&gt;&lt;li&gt;Database Objects likes Tables, Indexes, Packages, Procedures, Functions, Sequences etc.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Sample data in the tables&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Image Files&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Javascript Files&lt;br /&gt;&lt;/li&gt;&lt;li&gt;CSS Files&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;In order to get started with the development of this application, you need to prepare your environment first. As our focus is just on creating the Aria Employee Directory Lookup application in Oracle APEX, a script has been provided to which will create all of the above mentioned supporting objects in your APEX workspace.&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;a href="http://ec2-75-101-158-57.compute-1.amazonaws.com/apex/f?p=WDC:ARIA"&gt;Click here to get the supporting files for Aria Employee Directory Lookup Application&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6464895678569851494-1586145006953674443?l=blog.dbcon.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.dbcon.com/feeds/1586145006953674443/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6464895678569851494&amp;postID=1586145006953674443' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/1586145006953674443'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/1586145006953674443'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/2009/04/step-by-step-guide-to-create-aria.html' title='Step by step guide to create &quot;Aria Employee Directory Lookup&quot; application in Oracle APEX'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6464895678569851494.post-7525755440693556601</id><published>2009-01-09T19:56:00.005+08:00</published><updated>2009-11-05T11:52:53.697+08:00</updated><title type='text'>Creating an Oracle APEX application from spreadsheet</title><content type='html'>&lt;div align="justify"&gt;One of the beautiful features in Oracle Application Exress is the ability to create an application straight from the spreadsheet. If you are wondering what is so great about it, well the beauty is that you don't have to write even a single line of code to do that. It is amazingly smooth and seamless. Check out the following step-by-step presentation to see how to do that. &lt;/div&gt;&lt;div style="TEXT-ALIGN: left; WIDTH: 425px" id="__ss_903777"&gt;&lt;a style="MARGIN: 12px 0px 3px; DISPLAY: block; FONT: 14px Helvetica, Arial, Sans-serif; TEXT-DECORATION: underline" title="Creating an Oracle APEX Application from spreadsheet" href="http://www.slideshare.net/asagarwal/creating-an-oracle-apex-application-from-spreadsheet-presentation?type=powerpoint"&gt;Creating an Oracle APEX Application from spreadsheet&lt;/a&gt;&lt;object style="MARGIN: 0px" width="425" height="355"&gt;&lt;param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=creating-an-oracle-apex-application-from-spreadsheet-1231508965896730-2&amp;amp;stripped_title=creating-an-oracle-apex-application-from-spreadsheet-presentation"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=creating-an-oracle-apex-application-from-spreadsheet-1231508965896730-2&amp;stripped_title=creating-an-oracle-apex-application-from-spreadsheet-presentation" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div style="FONT-FAMILY: tahoma, arial; HEIGHT: 26px; FONT-SIZE: 11px; PADDING-TOP: 2px"&gt;View SlideShare &lt;a style="TEXT-DECORATION: underline" title="View Creating an Oracle APEX Application from spreadsheet on SlideShare" href="http://www.slideshare.net/asagarwal/creating-an-oracle-apex-application-from-spreadsheet-presentation?type=powerpoint"&gt;presentation&lt;/a&gt; or &lt;a style="TEXT-DECORATION: underline" href="http://www.slideshare.net/upload?type=powerpoint"&gt;Upload&lt;/a&gt; your own. (tags: &lt;a style="TEXT-DECORATION: underline" href="http://slideshare.net/tag/apex"&gt;apex&lt;/a&gt; &lt;a style="TEXT-DECORATION: underline" href="http://slideshare.net/tag/express"&gt;express&lt;/a&gt;)&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In less than 5 minutes you can have a fully functional application from a spreadsheet. Isn't that cool ?&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6464895678569851494-7525755440693556601?l=blog.dbcon.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.dbcon.com/feeds/7525755440693556601/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6464895678569851494&amp;postID=7525755440693556601' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/7525755440693556601'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/7525755440693556601'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/2009/01/creating-oracle-apex-application-from.html' title='Creating an Oracle APEX application from spreadsheet'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6464895678569851494.post-8546200995503983958</id><published>2008-12-02T17:38:00.020+08:00</published><updated>2009-11-05T11:54:13.362+08:00</updated><title type='text'>Commands to create schema for Oracle APEX Workspace</title><content type='html'>&lt;p align="justify"&gt;If you choose to create a schema while &lt;a href="http://dbcon.blogspot.com/2008/11/creating-workspace-in-oracle.html"&gt;creating the workspace&lt;/a&gt; in Oracle Application Express administration service, APEX will create a brand new tablespace as well. This may not be an ideal situation. Having too many tablespaces, specially when it is not required, adds management and administrative overhead. &lt;/p&gt;&lt;br /&gt;&lt;p align="justify"&gt;You can use the following script to create the schema and then just use this schema when you are creating the worksace. (Substitute your own values for values shown in blue color)&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="font-family:courier new;"&gt;-- Connect as SYSTEM or DBA User&lt;br /&gt;$ sqlplus system/password@XE&lt;br /&gt;&lt;br /&gt;-- Create the new Schema/User&lt;br /&gt;CREATE USER &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; IDENTIFIED BY &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt;&lt;br /&gt;DEFAULT TABLESPACE &lt;span style="color:#3333ff;"&gt;APEXAPPS_TS&lt;/span&gt;&lt;br /&gt;TEMPORARY TABLESPACE &lt;span style="color:#3333ff;"&gt;TEMP&lt;/span&gt;;&lt;br /&gt;&lt;br /&gt;-- Grant quota on assigned tablespace&lt;br /&gt;ALTER USER &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; QUOTA 10M ON &lt;span style="color:#3333ff;"&gt;APEXAPPS_TS&lt;/span&gt; ;&lt;br /&gt;&lt;br /&gt;-- Grant Role Priviledge&lt;br /&gt;GRANT "CONNECT" TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;ALTER USER &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; DEFAULT ROLE "CONNECT";&lt;br /&gt;&lt;br /&gt;-- Grant system privileges&lt;br /&gt;GRANT CREATE JOB TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT CREATE INDEXTYPE TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT CREATE SYNONYM TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT CREATE DIMENSION TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT CREATE VIEW TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT CREATE CLUSTER TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT CREATE MATERIALIZED VIEW TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT CREATE PROCEDURE TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT CREATE ANY CONTEXT TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT CREATE TYPE TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT CREATE SEQUENCE TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT CREATE OPERATOR TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT CREATE TRIGGER TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT CREATE TABLE TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;&lt;br /&gt;-- Grant Object Privileges&lt;br /&gt;GRANT EXECUTE ON SYS.DBMS_RLS TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT EXECUTE ON CTXSYS.CTX_DDL TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ;&lt;br /&gt;GRANT EXECUTE ON CTXSYS.CTX_DOC TO &lt;span style="color:#3333ff;"&gt;APEXAPPS&lt;/span&gt; ; &lt;/span&gt;&lt;/p&gt;&lt;br /&gt;&lt;p align="justify"&gt;These commands will create the schema and assign the same privileges to that schema that gets assigned when you create a new schema while creating the APEX workspace (verified in Oracle APEX 3.1.2). Once the schema is created specify 'Yes' for Re-use existing schema and then specify the schema name as shown below.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;img style="DISPLAY: inline" title="Assign existing schema to workspace" border="0" alt="Assign existing schema to workspace" src="http://www.dbcon.com/blogimages/existingschema.png" /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6464895678569851494-8546200995503983958?l=blog.dbcon.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.dbcon.com/feeds/8546200995503983958/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6464895678569851494&amp;postID=8546200995503983958' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/8546200995503983958'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/8546200995503983958'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/2008/12/commands-to-create-schema-for-oracle.html' title='Commands to create schema for Oracle APEX Workspace'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6464895678569851494.post-1720566239408204576</id><published>2008-11-24T20:02:00.007+08:00</published><updated>2009-11-05T11:54:34.418+08:00</updated><title type='text'>Learn Oracle Application Express from anywhere in the world !</title><content type='html'>&lt;div align="justify"&gt;DBCON announces Live Online Training in "Developing Applications with Oracle Application Express". Forget traveling to learn the intricacies of APEX or waiting for the course to come to your city. Now anyone with a basic understanding of SQL, PL/SQL, HTML and database objects can start developing in APEX quickly and easily - with just as much live interaction with instructors and other students as they would have in an in-person course, but on a convenient online schedule. Moreover, &lt;strong&gt;the course is about one-fourth to one-half the price of courses offered by other institutions.&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;DBCON’s “Developing Applications with Oracle APEX” course, based on the firm’s progressive &lt;a href="http://www.dbcon.com/TrainingMethodology.html"&gt;training methodology&lt;/a&gt; offers students an in-class environment with online convenience. Students can ask questions, participate in discussions and talk to instructors in real time and sketch ideas on a virtual whiteboard.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;The class is not just a paraphrase of Oracle APEX training books. Our instructors have real-world experience working in Oracle and APEX, backed up by Oracle certification. Students get the benefit of speaking directly to Oracle professionals who can answer their questions in the context of working as a professional developer.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;“Developing Applications with Oracle APEX” gives students a solid foundation in using the popular Rapid Web Application Development Tool. Classes include live demonstrations that allow participants to see exactly how the technology works, along with extensive hands-on lab exercises. Each student has a dedicated lab workspace available 24 hours for the duration of the class. Total training time is about 14 hours, not including individual lab time; students can attend part-time or full-time, weekdays or weekends - and classes are batch scheduled to cater to various time zones. All sessions are recorded, allowing students to revisit concepts as needed.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;“Although it is simple to start using APEX, the breadth of the product can be a little overwhelming,” stated course participant Stuart Ellis of London. “This excellently structured and well-delivered course provides a solid grounding that should enable [students] to develop APEX applications with confidence. The online conferencing technology proved to be quick and unintrusive. I would not hesitate to take another course that is delivered in this way.”&lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;Check out this audio video presentation on our Live Online Training. To view it in full screen please visit &lt;a href="http://www.dbcon.com/video/oracle_apex_lot_video.html" target="_blank"&gt;http://www.dbcon.com/video/oracle_apex_lot_video.html&lt;/a&gt; .&lt;/div&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/ITSb5UltiJc&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/ITSb5UltiJc&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;We also offer a free trial class as well as a 100% money-back guarantee on the course. To learn more, please visit &lt;a href="http://www.dbcon.com/DevelopingWithOracleApex.html" target="_blank"&gt;http://www.dbcon.com/DevelopingWithOracleApex.html&lt;/a&gt;.&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6464895678569851494-1720566239408204576?l=blog.dbcon.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.dbcon.com/feeds/1720566239408204576/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6464895678569851494&amp;postID=1720566239408204576' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/1720566239408204576'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/1720566239408204576'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/2008/11/learn-oracle-application-express-from.html' title='Learn Oracle Application Express from anywhere in the world !'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6464895678569851494.post-1596000570328767080</id><published>2008-11-23T07:53:00.005+08:00</published><updated>2009-11-05T11:54:45.700+08:00</updated><title type='text'>Configuring Oracle APEX on Port 80 (with Embedded PL/SQL Gateway) in XE database</title><content type='html'>&lt;div align="justify"&gt;You can use the following instructions to configure Oracle APEX on Port 80 in Oracle XE database. The default port is port 8080 but if you want it change to port 80 instead use the following steps.&lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;Port numbers less than 1024 are reserved for use by privileged processes on many operating systems. To enable the XML DB HTTP listener on a port less than 1024 such as port 80 your DBA must do the following: &lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;1. (UNIX only) Use this shell command to ensure that the owner and group of executable file tnslsnr are root&lt;/div&gt;&lt;br /&gt;&lt;span style="font-family:courier new;color:#000099;"&gt;$ chown root:root $ORACLE_HOME/bin/tnslsnr &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;2. (UNIX only) Add the following entry to the listener file, LISTENER.ora, where hostname is your host name.&lt;/div&gt;&lt;br /&gt;&lt;span style="font-family:courier new;color:#000099;"&gt;(DESCRIPTION =&lt;br /&gt;(ADDRESS = (PROTOCOL = TCP)(HOST = &lt;strong&gt;hostname&lt;/strong&gt;)(PORT = &lt;strong&gt;80&lt;/strong&gt;))&lt;br /&gt;(PROTOCOL_STACK = (PRESENTATION = HTTP) (SESSION = RAW))&lt;br /&gt;)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;div align="justify"&gt;3. (UNIX only) Stop, then restart the listener, using the following shell commands, where user_id and group_id are your UNIX user and group identifiers, respectively:&lt;/div&gt;&lt;br /&gt;&lt;span style="font-family:courier new;color:#000099;"&gt;$ lsnrctl stop&lt;br /&gt;$ tnslsnr LISTENER -user user_id -group group_id &amp;amp;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;Use the ampersand (&amp;amp;), to execute the second command in the background. Do not use &lt;span style="font-family:courier new;"&gt;lsnrctl start&lt;/span&gt; to start the listener.&lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;4. Use PL/SQL procedure &lt;span style="font-family:courier new;"&gt;DBMS_XDB.sethtpport&lt;/span&gt; with SYS as SYSDBA to setthe HTTP port number to 80 in the Oracle XML DB configurationfile /xdbconfig.xml.&lt;/div&gt;&lt;br /&gt;&lt;span style="font-family:courier new;color:#000099;"&gt;SQL&amp;gt; exec DBMS_XDB.setHTTPPort(80);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div align="justify"&gt;5. Force the database to reregister with the listener, using this SQL statement:&lt;/div&gt;&lt;br /&gt;&lt;span style="font-family:courier new;color:#000099;"&gt;SQL&amp;gt; alter system register;&lt;/span&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;br /&gt;6. Check that the listener is correctly configured:&lt;/div&gt;&lt;br /&gt;&lt;span style="font-family:courier new;color:#000099;"&gt;$ lsnrctl status&lt;/span&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;br /&gt;7. Access Oracle APEX by giving the following URL. You do not need to specify the port number explicitly as port 80 is the default port.&lt;/div&gt;&lt;br /&gt;&lt;span style="font-family:courier new;color:#000099;"&gt;http://hostname/apex&lt;/span&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;br /&gt;Reference: &lt;a href="http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28369.pdf"&gt;http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28369.pdf&lt;/a&gt; Page 795&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6464895678569851494-1596000570328767080?l=blog.dbcon.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.dbcon.com/feeds/1596000570328767080/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6464895678569851494&amp;postID=1596000570328767080' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/1596000570328767080'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/1596000570328767080'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/2008/11/configuring-oracle-apex-on-port-80-with.html' title='Configuring Oracle APEX on Port 80 (with Embedded PL/SQL Gateway) in XE database'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6464895678569851494.post-711564449761801769</id><published>2008-11-23T07:41:00.004+08:00</published><updated>2009-11-05T11:54:55.415+08:00</updated><title type='text'>Step-by-step guide to install Oracle Application Express on Oracle XE Database on Windows</title><content type='html'>&lt;div style="TEXT-ALIGN: justify"&gt;Oracle Application Express - one of the hidden jewels of Oracle is a rapid web application development tool. APEX uses only a web browser to develop, deploy and administer professional applications that are fast and secure. APEX combines the qualities of a personal database, productivity, ease of use and flexibility with qualities of an enterprise database, security, integrity, scalability, availability, and built for the web. &lt;/div&gt;&lt;br /&gt;&lt;div style="TEXT-ALIGN: justify"&gt;APEX lives completely within Oracle database and is also available with Oracle Express Edition database which is a free product from Oracle.With Oracle XE &amp;amp; 11g APEX has no footprint at the operating system level and that makes it an extremely simple architecture to use. Using APEX applications can be deployed on a desktop to start with and can be scaled up very easily. &lt;/div&gt;&lt;br /&gt;&lt;div style="TEXT-ALIGN: justify"&gt;Try Oracle Application Express - &lt;span style="FONT-WEIGHT: bold" class="Apple-style-span"&gt;It's easy to develop, easy to deploy &amp;amp; easy to administer&lt;/span&gt;. Check out this step-by-step guide to install Oracle Application Express on Oracle XE database on Windows platform. &lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;object style="WIDTH: 100%; HEIGHT: 222px" id="doc_990091197363081" name="doc_990091197363081" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100%" align="middle" height="500"&gt;&lt;param name="_cx" value="17991"&gt;&lt;param name="_cy" value="5873"&gt;&lt;param name="FlashVars" value=""&gt;&lt;param name="Movie" value="http://documents.scribd.com/ScribdViewer.swf?document_id=5456221&amp;amp;access_key=key-17a7et6ceb1f4l2kibsq&amp;amp;page=&amp;amp;version=1&amp;amp;auto_size=true&amp;amp;viewMode="&gt;&lt;param name="Src" value="http://documents.scribd.com/ScribdViewer.swf?document_id=5456221&amp;amp;access_key=key-17a7et6ceb1f4l2kibsq&amp;amp;page=&amp;amp;version=1&amp;amp;auto_size=true&amp;amp;viewMode="&gt;&lt;param name="WMode" value="Opaque"&gt;&lt;param name="Play" value="-1"&gt;&lt;param name="Loop" value="-1"&gt;&lt;param name="Quality" value="High"&gt;&lt;param name="SAlign" value=""&gt;&lt;param name="Menu" value="-1"&gt;&lt;param name="Base" value=""&gt;&lt;param name="AllowScriptAccess" value="always"&gt;&lt;param name="Scale" value="ShowAll"&gt;&lt;param name="DeviceFont" value="0"&gt;&lt;param name="EmbedMovie" value="0"&gt;&lt;param name="BGColor" value="FFFFFF"&gt;&lt;param name="SWRemote" value=""&gt;&lt;param name="MovieData" value=""&gt;&lt;param name="SeamlessTabbing" value="1"&gt;&lt;param name="Profile" value="0"&gt;&lt;param name="ProfileAddress" value=""&gt;&lt;param name="ProfilePort" value="0"&gt;&lt;param name="AllowNetworking" value="all"&gt;&lt;param name="AllowFullScreen" value="true"&gt;&lt;br /&gt;&lt;br /&gt;                                     &lt;embed src="http://documents.scribd.com/ScribdViewer.swf?document_id=5456221&amp;amp;access_key=key-17a7et6ceb1f4l2kibsq&amp;amp;page=&amp;amp;version=1&amp;amp;auto_size=true&amp;amp;viewMode=" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" play="true" loop="true" scale="showall" wmode="opaque" devicefont="false" bgcolor="#ffffff" name="doc_990091197363081_object" menu="true" allowfullscreen="true" allowscriptaccess="always" salign="" type="application/x-shockwave-flash" align="middle" height="500" width="100%"&gt;&lt;/embed&gt; &lt;/object&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;div style="TEXT-ALIGN: center; WIDTH: 100%; FONT-SIZE: 10px"&gt;&lt;a href="http://www.scribd.com/doc/5456221/Stepbystep-guide-to-install-Oracle-APEX-on-XE-on-Windows"&gt;Step-by-step guide to install Oracle APEX on XE on Windows&lt;/a&gt; - &lt;a href="http://www.scribd.com/upload"&gt;Upload a Document to Scribd&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify; DISPLAY: none"&gt;Read this document on Scribd: &lt;a href="http://www.scribd.com/doc/5456221/Stepbystep-guide-to-install-Oracle-APEX-on-XE-on-Windows"&gt;Step-by-step guide to install Oracle APEX on XE on Windows&lt;/a&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6464895678569851494-711564449761801769?l=blog.dbcon.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.dbcon.com/feeds/711564449761801769/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6464895678569851494&amp;postID=711564449761801769' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/711564449761801769'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6464895678569851494/posts/default/711564449761801769'/><link rel='alternate' type='text/html' href='http://blog.dbcon.com/2008/11/step-by-step-guide-to-install-oracle.html' title='Step-by-step guide to install Oracle Application Express on Oracle XE Database on Windows'/><author><name>Ashish Agarwal</name><uri>http://www.blogger.com/profile/17682447141633222387</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry></feed>
