{"id":530,"date":"2008-06-29T04:52:19","date_gmt":"2008-06-29T08:52:19","guid":{"rendered":"http:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/"},"modified":"2008-06-29T15:32:16","modified_gmt":"2008-06-29T19:32:16","slug":"1z0-233-oracle-apps-dba-certification","status":"publish","type":"post","link":"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/","title":{"rendered":"1Z0-233 : Oracle Apps DBA Certification Questions"},"content":{"rendered":"<p>Its time to crack 11i certification (<a href=\"https:\/\/onlineappsdba.com\/index.php\/2007\/04\/05\/oracle-apps-dba-certification-1z0-235236233\/\"><strong>check our previous post here<\/strong><\/a>) and rush towards 12i Certification.<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 I believe basic knowledge (which script does what, which table is useful for what purpose and How to use the ad* utilities&#8230;.) is enough with\u00a0some hands on to clear Oracle Apps DBA Certification Track.<\/p>\n<p>so let&#8217;s start with some basic things<\/p>\n<p><strong><u>Patching:<br \/>\n<\/u><\/strong><br \/>\n<strong>X.<\/strong> Utility used to apply application patch is ??<br \/>\n&#8220;adpatch&#8221;<\/p>\n<p><strong>X.<\/strong>Various options available with adpatch are<br \/>\noption=<strong>nocheckfile<\/strong>, noautoconfig, <strong>nocompiledb<\/strong>, nocompilejsp, <strong>nocopyportion<\/strong>, nodatabaseportion, <strong>nogenerateportion<\/strong>, hotpatch, <strong>integrity<\/strong>, prereq, <strong>noprereq<\/strong>, nomaintainmrc, <strong>validate<\/strong>, nojcopy, <strong>noforcecopy<\/strong>, forcecopy, <strong>nolink<\/strong>, nogenform, <strong>nogenrep<\/strong><\/p>\n<p><strong>X.<\/strong> For database patch utility used to apply patch is ??<br \/>\n&#8220;opatch&#8221;<\/p>\n<p><strong>X.<\/strong>.log and .lgi files for adpatch will be under $APPL_TOP\/admin\/SID\/log directory.<\/p>\n<p><strong>X. <\/strong>What are .lgi files for ?<\/p>\n<p><strong>X. <\/strong>While applying patch put the system in maintenance mode by running\u00a0<br \/>\n$adadmin\u00a0 and then select <strong>option 5<\/strong> (change maintenance mode) after that select options enable\/disable maintenance mode. (<font color=\"#ff0000\">You can also change system to maintenence mode using $AD_TOP\/patch\/115\/sql\/adsetmmd.sql<\/font>)<\/p>\n<p><strong>X.<\/strong>By default where adadmin log file will go??<br \/>\n$APPL_TOP\/admin\/$SID\/log\/abc.log<\/p>\n<p>&#8211;<\/p>\n<p><strong><u><\/u><\/strong><\/p>\n<p><strong><u>Workers:<br \/>\n<\/u><\/strong><br \/>\n<strong>X. <\/strong>How to check what adpatch is doing ??<br \/>\n&#8220;adctrl&#8221; is the utility to do check status of ad worker, including adpatch.<\/p>\n<p><strong>X. <\/strong>What are various stages of adpatch worker<br \/>\nFirst of all workers will be in &#8220;<strong>waiting<\/strong>&#8221; stage after that jobs will be &#8220;<strong>assigned<\/strong>&#8221; then &#8220;<strong>running<\/strong>&#8220;, If error doesn&#8217;t come it will move to &#8220;<strong>complete<\/strong>&#8221; (<strong>waiting <\/strong>-&gt;<strong> assigned <\/strong>-&gt;<strong> running <\/strong>-&gt;<strong> complete<\/strong>)<\/p>\n<p>If error comes it will go like <strong>waiting <\/strong>-&gt;<strong> assigned <\/strong>-&gt;<strong> running <\/strong>-&gt;<strong> failed <\/strong>-&gt;<strong> fixed <\/strong>-&gt;<strong> restarted <\/strong>-&gt;<strong> completed<\/strong><\/p>\n<p><strong>X.<\/strong> What is Default number of workers:<br \/>\n2 times the number of CPU on the database server.<\/p>\n<p><strong>&#8211;<br \/>\n<u>Deferred jobs<\/u><\/strong><\/p>\n<p>Have you ever seen <strong>worker status as deferred<\/strong>, while using <strong>adctrl<\/strong> ??<br \/>\nOnce you start applying patch , manager <strong>assigns jobs<\/strong> and <strong>unique ID<\/strong> to\u00a0each worker. Manager will also insert one row into <strong>FND_INSTALL_PROCESSES<\/strong> table for each worker\u00a0 with information about <strong>who is doing what <\/strong>???<\/p>\n<p>1) <strong>CONTROL_CODE<\/strong> 2) <strong>STATUS,<\/strong> these two columns\u00a0are important for us from the <strong>fnd_install_processes<\/strong>. Manager will monitor the workers by these two columns\u00a0about status of the assigned job.Once worker is done with first job, manager will assign it the second job to do with the status update as &lt;<strong>assigned<\/strong>&gt;.<\/p>\n<p>Once <strong>all the worker&#8217;s status is completed<\/strong> for all the jobs, manager will tell the workers to <strong>shutdown<\/strong> and will drop <strong>fnd_install_process<\/strong> table.<\/p>\n<p>&#8211;\u00a0<\/p>\n<p><strong>X.<\/strong> <strong>What happens if worker is working on some particular job say updating some table but that table is locked ???<\/strong> so what the worker will do in such situation&#8230;<\/p>\n<p>here comes <strong>AD_DEFERRED_JOBS<\/strong> table which will be created at the time of <strong>FND_INSTALL_PROCESSES<\/strong> and\u00a0ad_deferred_jobs\u00a0too will be dropped with FND_INSTALL_PROCESSES. First time when worker checks and\u00a0find that table is locked, that job fails and manager will automatically defers the job, and it will assigns a new\u00a0job to the worker.<br \/>\n\u00a0\u00a0\u00a0 The\u00a0job which was waiting\u00a0in ad_deferred_jobs table will\u00a0be assigned\u00a0again till time it will not become failed or completed.<\/p>\n<p>In such situation above, worker will wait till either the lock is released\u00a0or timed out is reached and We (DBA)\u00a0<strong>need not to<\/strong> take any action till the job status becomes fails&#8230;. once it shows its failed we can fix it and restart it.<\/p>\n<p><strong>X.<\/strong> Why APPS schema present in the 11i application ??<br \/>\nWell it reduces traffic because all the product schemas will grant full privileges to Apps schema. so it will have full access to the complete Oracle application.<\/p>\n<p>All the products like AP,AR,FIN has the code for respective products and APPS will have access to all these code objectives too. Apps will have all the synonyms for base tables and sequences as well.<\/p>\n<p>\u00a0OBJECT_NAME<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br \/>\nOBJECT_TYPE\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 STATUS\u00a0 OWNER<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br \/>\nBEN_PL_PCP_S<br \/>\nSYNONYM\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 VALID\u00a0\u00a0 APPS<\/p>\n<p>BEN_PL_PCP_TYP_S<br \/>\nSYNONYM\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 VALID\u00a0\u00a0 APPS<\/p>\n<p>BOM_CTO_ORDER_DEMAND_S1<br \/>\nSYNONYM\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 VALID\u00a0\u00a0 APPS<\/p>\n<p><strong><u>File System<br \/>\n<\/u><\/strong><br \/>\n<strong>X.<\/strong> What all directories will be there\u00a0under any &#8220;<strong>product<\/strong>&#8221; top.\u00a0 (To know more about <a href=\"https:\/\/onlineappsdba.com\/index.php\/2006\/08\/04\/whats-different-tops-in-application-11i\/\"><strong>various top&#8217;s in 11i click here<\/strong><\/a>)<\/p>\n<p>cd $AP_TOP (Example of product top <strong>AP<\/strong>) (Below are various directory under each product top &#8211; ad, ap, gl..)<br \/>\n<strong>admin\u00a0 bin\u00a0 forms\u00a0 help\u00a0 html\u00a0 lib\u00a0 log\u00a0 mds\u00a0 media\u00a0 mesg\u00a0 out\u00a0 patch\u00a0 reports\u00a0 sql\u00a0 xml<\/strong><\/p>\n<p>$ Here directory &#8220;<strong>forms<\/strong>&#8221; contains all .fmx (compiled version of forms)<\/p>\n<p><strong>X.<\/strong>Where are .fmb (Forms) stored<br \/>\nThey will be under $AU_TOP\/forms\/US<\/p>\n<p>Note* .fmb and .fmx are different<\/p>\n<p><strong>X. <\/strong>When you run f60gen to compile the forms : .fmx will be put to $PRODUCT_TOP\/forms\/US\/\u00a0 of respective product of form.<\/p>\n<p><strong>X.<\/strong>What is stored in &#8220;mesg&#8221; directory under each product top ??<br \/>\n&#8220;mesg&#8221; contains language specific message files and error message for the product.<\/p>\n<p><strong>X.<\/strong> What is stored in &#8220;bin&#8221; directory under each product top<br \/>\n&#8220;bin&#8221; directory contains executable files like in $AP_TOP\/bin you will see APPBCF\u00a0 APTZGF\u00a0 apxamex.ctl\u00a0 apxboav.ctl\u00a0 apxdiner.ctl\u00a0 apxgecmc.ctl\u00a0 apxusbv.ctl\u00a0 APXXTR<\/p>\n<p><strong>X.<\/strong> How to compile apps schema and when to compile??<br \/>\nYou can use &#8220;adadmin&#8221; utility to compile apps schema (other methods like utlrp.sql exists). Usually you compile apps\u00a0 after application of the patches, maintanance patch, upgrade, runtime error due to AD_DDL packages or scenarios where there are invalid objects in apps schema.<\/p>\n<p><strong>X.<\/strong> How many database connections are allowed during fresh installation of oracle application.<br \/>\n100.<\/p>\n<p><strong>&#8211;<br \/>\n<u>ADADMIN\u00a0:- day to day use<\/u><\/strong><strong>\u00a0 <\/strong><\/p>\n<p><strong><u>AD Administration Main Menu<\/u><\/strong><strong>\u00a0\u00a0 <\/strong><\/p>\n<p><strong>\u00a0 <\/strong>1.\u00a0\u00a0\u00a0 Generate Applications Files menu<\/p>\n<p>\u00a0\u00a0 2.\u00a0\u00a0\u00a0 Maintain Applications Files menu\u00a0 &#8212;<font color=\"#ff0000\">S<\/font><font color=\"#ff0000\">napshot details<\/font><\/p>\n<p>\u00a0\u00a0 3.\u00a0\u00a0\u00a0 Compile\/Reload Applications Database Entities menu &#8212;&#8212;&#8212;&#8212;-<font color=\"#ff0000\">COMPILE APPS schema(invalid objects or runtime error)<\/font><\/p>\n<p>\u00a0\u00a0 4.\u00a0\u00a0\u00a0 Maintain Applications Database Entities menu\u00a0\u00a0<\/p>\n<p>\u00a0\u00a0 5.\u00a0\u00a0\u00a0 Change Maintenance Mode &#8212;&#8211;<font color=\"#ff0000\">While patching<\/font><\/p>\n<p>\u00a0\u00a0 6.\u00a0\u00a0\u00a0 Exit AD Administration<\/p>\n<p>\u00a0<u>Maintain Snapshot Information<\/u><\/p>\n<p>\u00a0\u00a0 1.\u00a0\u00a0\u00a0 List snapshots<\/p>\n<p>\u00a0\u00a0 2.\u00a0\u00a0\u00a0 Update current view snapshot<\/p>\n<p>\u00a0\u00a0 3.\u00a0\u00a0\u00a0 Create named snapshot<\/p>\n<p>\u00a0\u00a0 4.\u00a0\u00a0\u00a0 Export snapshot to file<\/p>\n<p>\u00a0\u00a0 5.\u00a0\u00a0\u00a0 Import snapshot from file<\/p>\n<p>\u00a0\u00a0 6.\u00a0\u00a0\u00a0 Delete named snapshot(s)<\/p>\n<p>Hence question on maintenance snapshot can be like &#8220;<strong>What all maintain snapshot can do<\/strong>&#8221;<br \/>\n<strong>a.<\/strong> You can create copy of existing snapshot.<br \/>\n<strong>b.<\/strong> You can\u00a0create a list of current view and named snapshot stored in your system.<br \/>\n<strong>c.<\/strong> You can update current view snapshot with any changes to the snapshot since the last update<br \/>\n<strong>d.<\/strong> You can export an existing snapshot to a file for storage or to another system.<br \/>\n<strong>e.<\/strong> You can delete the current view snapshot<\/p>\n<p>\u00a0<strong>And answer\u00a0is\u00a0\u00a0<br \/>\n<\/strong>We can export\/import snapshot:Delete named snapshots (<font color=\"#ff0000\">You <strong>can&#8217;t<\/strong> delete current view snapshot<\/font>):Update current view snapshot:Create named snapshot and list all the present snapshots too .<\/p>\n<p><font color=\"#ff0000\">More on 1z0-233 (oracle apps dba)\u00a0or exam certification question coming soon &#8230;..<\/font><\/p>\n<p><font color=\"#ff0000\">&#8211;<\/font><\/p>\n<p><font color=\"#000000\"><strong><u>Related<br \/>\n<a target=\"_blank\" href=\"https:\/\/onlineappsdba.com\/index.php\/2007\/04\/05\/oracle-apps-dba-certification-1z0-235236233\/\">Apps DBA Certification Questions<\/a><br \/>\n<a target=\"_blank\" href=\"https:\/\/onlineappsdba.com\/index.php\/category\/interviewqs\/\">Interview Questions &#8211; Apps DBA<\/a><br \/>\n<a target=\"_blank\" href=\"http:\/\/www.oracle.com\/global\/us\/education\/certification\/appsdba.html\">11i Apps DBA Certification<\/a><br \/>\n<a target=\"_blank\" href=\"http:\/\/education.oracle.com\/pls\/web_prod-plq-dad\/db_pages.getpage?page_id=210\">R12\/12i Apps DBA Certification<\/a><\/u><\/strong><\/font><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Its time to crack 11i certification (check our previous post here) and rush towards 12i Certification. \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 I believe basic [&hellip;]<\/p>\n","protected":false},"author":115,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[1],"tags":[],"class_list":["post-530","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>1Z0-233 : Oracle Apps DBA Certification Questions  -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"1Z0-233 : Oracle Apps DBA Certification Questions  -\" \/>\n<meta property=\"og:description\" content=\"Its time to crack 11i certification (check our previous post here) and rush towards 12i Certification. \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 I believe basic [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/\" \/>\n<meta property=\"article:published_time\" content=\"2008-06-29T08:52:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2008-06-29T19:32:16+00:00\" \/>\n<meta name=\"author\" content=\"Masroof Ahmad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Masroof Ahmad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/\",\"url\":\"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/\",\"name\":\"1Z0-233 : Oracle Apps DBA Certification Questions -\",\"isPartOf\":{\"@id\":\"https:\/\/onlineappsdba.com\/#website\"},\"datePublished\":\"2008-06-29T08:52:19+00:00\",\"dateModified\":\"2008-06-29T19:32:16+00:00\",\"author\":{\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineappsdba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"1Z0-233 : Oracle Apps DBA Certification Questions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/onlineappsdba.com\/#website\",\"url\":\"https:\/\/onlineappsdba.com\/\",\"name\":\"\",\"description\":\"Oracle Implementation &amp; Training Experts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/onlineappsdba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\",\"name\":\"Masroof Ahmad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"caption\":\"Masroof Ahmad\"},\"url\":\"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"1Z0-233 : Oracle Apps DBA Certification Questions  -","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/","og_locale":"en_US","og_type":"article","og_title":"1Z0-233 : Oracle Apps DBA Certification Questions  -","og_description":"Its time to crack 11i certification (check our previous post here) and rush towards 12i Certification. \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 I believe basic [&hellip;]","og_url":"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/","article_published_time":"2008-06-29T08:52:19+00:00","article_modified_time":"2008-06-29T19:32:16+00:00","author":"Masroof Ahmad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Masroof Ahmad","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/","url":"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/","name":"1Z0-233 : Oracle Apps DBA Certification Questions -","isPartOf":{"@id":"https:\/\/onlineappsdba.com\/#website"},"datePublished":"2008-06-29T08:52:19+00:00","dateModified":"2008-06-29T19:32:16+00:00","author":{"@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb"},"breadcrumb":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/onlineappsdba.com\/index.php\/2008\/06\/29\/1z0-233-oracle-apps-dba-certification\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineappsdba.com\/"},{"@type":"ListItem","position":2,"name":"1Z0-233 : Oracle Apps DBA Certification Questions"}]},{"@type":"WebSite","@id":"https:\/\/onlineappsdba.com\/#website","url":"https:\/\/onlineappsdba.com\/","name":"","description":"Oracle Implementation &amp; Training Experts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/onlineappsdba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb","name":"Masroof Ahmad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","caption":"Masroof Ahmad"},"url":"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/"}]}},"_links":{"self":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/530","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/users\/115"}],"replies":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/comments?post=530"}],"version-history":[{"count":0,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/530\/revisions"}],"wp:attachment":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/media?parent=530"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/categories?post=530"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/tags?post=530"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}