<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Oracle Applications - Business &#38; Technology</title>
	<atom:link href="http://knoworacle.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://knoworacle.wordpress.com</link>
	<description>To share some of knowledge, work and how-to, trick, tips in Oracle. Mainly focus with Oracle Financials, Oracle Technology, Oracle Business Intelligence. Also to cover Project Management, IT Governance, Quality Practices and all.</description>
	<lastBuildDate>Fri, 20 Nov 2009 13:09:59 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='knoworacle.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/4b1bae598ad5fd7c5712e8c733ad4527?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Oracle Applications - Business &#38; Technology</title>
		<link>http://knoworacle.wordpress.com</link>
	</image>
			<item>
		<title>Oracle External Table</title>
		<link>http://knoworacle.wordpress.com/2009/11/20/oracle-external-table/</link>
		<comments>http://knoworacle.wordpress.com/2009/11/20/oracle-external-table/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 09:07:40 +0000</pubDate>
		<dc:creator>shivmohan purohit</dc:creator>
				<category><![CDATA[Oracle Functional]]></category>

		<guid isPermaLink="false">http://knoworacle.wordpress.com/?p=1422</guid>
		<description><![CDATA[Oracle External Tables provide great deal to upload data into Oracle table from a file without executing the Sql Loader.
What is External Table &#8211; Definition of External table from Oracle Database manual An external table load creates an external table for data in a data file and executes INSERT statements to insert the data from [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1422&subd=knoworacle&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Oracle External Tables provide great deal to upload data into Oracle table from a file without executing the Sql Loader.</p>
<p>What is External Table &#8211; Definition of External table from Oracle Database manual An external table load creates an external table for data in a data file and executes INSERT statements to insert the data from the data file into the target table.</p>
<p>There are two advantages of using external table loads over conventional path and direct path loads:</p>
<p>An external table load attempts to load data files in parallel. If a data file is big enough, it will attempt to load that file in parallel.</p>
<p>An external table load allows modification of the data being loaded by using SQL functions and PL/SQL functions as part of the INSERT statement that is used to create the external table.</p>
<p>Disadvantages of External Table.</p>
<p>Till R11g there is no option to execute DML against an external table. External tables supports SELECT only.</p>
<p>Steps for External table.</p>
<p>1. Create database directory and map it with your local PC directory. You need to have Admin Privileged to create Database directory.</p>
<p>2.Grant read/write access of database directory to user.</p>
<p>3.Create External table with DEFAULT DIRECTORY as Database directory.</p>
<p>Step #1</p>
<p>CREATE OR REPLACE DIRECTORY load_dir AS &amp;apos;C:\myexternaltable&amp;apos;;</p>
<p>GRANT CREATE ANY DIRECTORY to user_name</p>
<p>Grant DROP ANY DIRECTORY to user_name</p>
<p>Step #2</p>
<p>GRANT READ ON DIRECTORY load_dir TO user_name;</p>
<p>GRANT WRITE ON DIRECTORY load_dir TO user_name;</p>
<p>CREATE TABLE BG_STATEMENT_LINES_EXT</p>
<p>(</p>
<p>BG0 VARCHAR2(150),</p>
<p>BG1 VARCHAR(150),</p>
<p>BG2 VARCHAR2(150),</p>
<p>BG3 VARCHAR2(150),</p>
<p>BG4 VARCHAR2(150),</p>
<p>BG5 VARCHAR2(150))</p>
<p>ORGANIZATION EXTERNAL</p>
<p>(</p>
<p>TYPE ORACLE_LOADER</p>
<p>DEFAULT DIRECTORY LOAD_DIR</p>
<p>ACCESS PARAMETERS</p>
<p>(</p>
<p>RECORDS DELIMITED BY NEWLINE</p>
<p>badfile load_dir:&amp;apos;bst_lns.bad&amp;apos;</p>
<p>logfile load_dir:&amp;apos;bst_lns.log&amp;apos;</p>
<p>FIELDS TERMINATED BY &amp;apos;,&amp;apos;</p>
<p>MISSING FIELD VALUES ARE NULL</p>
<p>(</p>
<p>BG0,</p>
<p>BG1,</p>
<p>BG2,</p>
<p>BG3,</p>
<p>BG4,</p>
<p>BG5</p>
<p>))</p>
<p>LOCATION</p>
<p>(</p>
<p>LOAD_DIR: &amp;apos;file_name.csv&amp;apos;)</p>
<p>)</p>
<p>REJECT LIMIT UNLIMITED</p>
<p>;</p>
<p>In my example I have mapped my PC&amp;apos;s directory &amp;apos;C:\myexternaltable&amp;apos; to database directory load_dir. While defining the external table, I have added the clause &#8220;DEFAULT DIRECTORY LOAD_DIR&#8221; to map External Table with database directory.</p>
<p>Data Processing</p>
<p>Create and Grant Database directory and External Table as explain above.</p>
<p>Get your data file in the same format as of External table.</p>
<p>Save your data file into your PC&amp;apos;s directory that has mapped to database directory , make sure filename is same as defined &#8220;LOAD_DIR: &amp;apos;file_name.csv&amp;apos;&#8221;</p>
<p>On Save, data from file will Import to External table.</p>
<p>via <a href="http://eoracleapps.blogspot.com/2009/05/oracle-external-table.html">Oracle Technologies.: Oracle External Table</a>.</p>
Posted in Oracle Functional  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoworacle.wordpress.com/1422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoworacle.wordpress.com/1422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoworacle.wordpress.com/1422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoworacle.wordpress.com/1422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoworacle.wordpress.com/1422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoworacle.wordpress.com/1422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoworacle.wordpress.com/1422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoworacle.wordpress.com/1422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoworacle.wordpress.com/1422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoworacle.wordpress.com/1422/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1422&subd=knoworacle&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://knoworacle.wordpress.com/2009/11/20/oracle-external-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/791581a0e3d66332d6b0d9d22ab4c1b7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">spurohit</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Order to Cash Queries</title>
		<link>http://knoworacle.wordpress.com/2009/11/20/oracle-order-to-cash-queries/</link>
		<comments>http://knoworacle.wordpress.com/2009/11/20/oracle-order-to-cash-queries/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 09:05:24 +0000</pubDate>
		<dc:creator>shivmohan purohit</dc:creator>
				<category><![CDATA[Oracle Functional]]></category>

		<guid isPermaLink="false">http://knoworacle.wordpress.com/?p=1420</guid>
		<description><![CDATA[Query to Join OM and requisition Interface table for Back 2 back Order
select l.line_id, l.flow_status_code , l.open_flag,pr.interface_source_code,pr.interface_source_line_id,pr.note_to_buyer,
pr.note_to_receiver
from
oe_order_lines_all l,
po_requisitions_interface_all pr
where l.line_id = pr.interface_source_line_id
and pr.interface_source_code=&#38;apos;CTO&#38;apos;
Query to Join OM and Purchase Order tables for Back 2 Back Order
select ph.segment1,a. supply_source_line_id, a.supply_source_header_id
from
mtl_reservations a,
oe_order_lines_all l,
po_headers_all ph
where demand_source_line_id = &#38;Enter_Order_lineID
and l.line_id = a.demand_source_line_id
and a.supply_source_header_id = ph.po_header_id
Query to Join OM and PO [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1420&subd=knoworacle&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Query to Join OM and requisition Interface table for Back 2 back Order</p>
<p>select l.line_id, l.flow_status_code , l.open_flag,pr.interface_source_code,pr.interface_source_line_id,pr.note_to_buyer,</p>
<p>pr.note_to_receiver</p>
<p>from</p>
<p>oe_order_lines_all l,</p>
<p>po_requisitions_interface_all pr</p>
<p>where l.line_id = pr.interface_source_line_id</p>
<p>and pr.interface_source_code=&amp;apos;CTO&amp;apos;</p>
<p>Query to Join OM and Purchase Order tables for Back 2 Back Order</p>
<p>select ph.segment1,a. supply_source_line_id, a.supply_source_header_id</p>
<p>from</p>
<p>mtl_reservations a,</p>
<p>oe_order_lines_all l,</p>
<p>po_headers_all ph</p>
<p>where demand_source_line_id = &amp;Enter_Order_lineID</p>
<p>and l.line_id = a.demand_source_line_id</p>
<p>and a.supply_source_header_id = ph.po_header_id</p>
<p>Query to Join OM and PO Requisition table for Back 2 Back Order</p>
<p>select ph.segment1,a. supply_source_line_id, a.supply_source_header_id</p>
<p>from</p>
<p>mtl_reservations a,</p>
<p>oe_order_lines_all l,</p>
<p>po_requisition_headers_all pqh</p>
<p>where demand_source_line_id = &amp;Enter_Order_lineID</p>
<p>and l.line_id = a.demand_source_line_id</p>
<p>and a.supply_source_header_id = pqh.requisition_header_id</p>
<p>Query to Join OM , WSH and AR table</p>
<p>SELECT h.order_number,l.line_id,l.ordered_quantity,l.shipped_quantity,l.invoiced_quantity,</p>
<p>wdd.delivery_detail_id,wnd.delivery_id,wdd.shipped_quantity,a.org_id,</p>
<p>a.creation_date ,a.trx_number,b.quantity_ordered , b.quantity_invoiced ,b.interface_line_attribute1,b.interface_line_attribute3,</p>
<p>b.interface_line_attribute6,interface_line_attribute12</p>
<p>from</p>
<p>ra_customer_trx_all a,</p>
<p>ra_customer_trx_lines_all b,</p>
<p>oe_order_headers_all h,</p>
<p>oe_order_lines_all l,</p>
<p>wsh_delivery_details wdd,</p>
<p>wsh_delivery_assignments wda,</p>
<p>wsh_new_deliveries wnd</p>
<p>where a.customer_trx_id = b.customer_trx_id</p>
<p>and a.interface_header_context = &amp;apos;ORDER ENTRY&amp;apos;</p>
<p>and b.interface_line_attribute1 = to_char(h.order_number)</p>
<p>and h.header_id = l.header_id</p>
<p>and to_char(l.line_id) = b.interface_line_attribute6</p>
<p>and l.line_id = wdd.source_line_id</p>
<p>and wdd.delivery_detail_id = wda.delivery_detail_id</p>
<p>and wda.delivery_id = wnd.delivery_id</p>
<p>and to_char(wnd.delivery_id) = b.interface_line_attribute3</p>
<p>Mapping Between AR and OM (Transaction Flex field)</p>
<p>(RAL) &#8211; RA_CUSTOMER_TRX_LINES_ALL</p>
<p>RAL.INTERFACE_LINE_ATTRIBUTE1 Order_Num</p>
<p>RAL.INTERFACE_LINE_ATTRIBUTE2 Order_Type</p>
<p>RAL.INTERFACE_LINE_ATTRIBUTE3 Delivery ID</p>
<p>RAL.INTERFACE_LINE_ATTRIBUTE4 WayBill</p>
<p>RAL.INTERFACE_LINE_ATTRIBUTE6 Line_ID</p>
<p>RAL.INTERFACE_LINE_ATTRIBUTE8 Bill_Lading</p>
<p>RAL.INTERFACE_LINE_ATTRIBUTE10 WH_ID RAL.INTERFACE_LINE_ATTRIBUTE11 PA_ID</p>
<p>via <a href="http://eoracleapps.blogspot.com/2009/04/oracle-order-to-cash-queries.html">Oracle Technologies.: Oracle Order to Cash Queries</a>.</p>
Posted in Oracle Functional  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoworacle.wordpress.com/1420/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoworacle.wordpress.com/1420/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoworacle.wordpress.com/1420/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoworacle.wordpress.com/1420/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoworacle.wordpress.com/1420/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoworacle.wordpress.com/1420/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoworacle.wordpress.com/1420/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoworacle.wordpress.com/1420/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoworacle.wordpress.com/1420/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoworacle.wordpress.com/1420/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1420&subd=knoworacle&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://knoworacle.wordpress.com/2009/11/20/oracle-order-to-cash-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/791581a0e3d66332d6b0d9d22ab4c1b7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">spurohit</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Application &#8211; AIM- Application implementation methodology</title>
		<link>http://knoworacle.wordpress.com/2009/11/18/oracle-application-aim-application-implementation-methodology/</link>
		<comments>http://knoworacle.wordpress.com/2009/11/18/oracle-application-aim-application-implementation-methodology/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 17:13:06 +0000</pubDate>
		<dc:creator>shivmohan purohit</dc:creator>
				<category><![CDATA[Oracle Functional]]></category>

		<guid isPermaLink="false">http://knoworacle.wordpress.com/?p=1418</guid>
		<description><![CDATA[Oracle&#8217;s AIM Methodology is available for download via the link below. The methodology includes templates for all phases of the system development lifecycle. This package is quite a valuable resource for Project Managers.
&#160;
Use below link to download ORacle AIM -
http://download-east.oracle.com/partners/265498.EXE
Posted in Oracle Functional       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1418&subd=knoworacle&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Oracle&#8217;s AIM Methodology is available for download via the link below. The methodology includes templates for all phases of the system development lifecycle. This package is quite a valuable resource for Project Managers.</p>
<p>&nbsp;</p>
<p>Use below link to download ORacle AIM -</p>
<p>http://download-east.oracle.com/partners/265498.EXE</p>
Posted in Oracle Functional  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoworacle.wordpress.com/1418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoworacle.wordpress.com/1418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoworacle.wordpress.com/1418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoworacle.wordpress.com/1418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoworacle.wordpress.com/1418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoworacle.wordpress.com/1418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoworacle.wordpress.com/1418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoworacle.wordpress.com/1418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoworacle.wordpress.com/1418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoworacle.wordpress.com/1418/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1418&subd=knoworacle&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://knoworacle.wordpress.com/2009/11/18/oracle-application-aim-application-implementation-methodology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/791581a0e3d66332d6b0d9d22ab4c1b7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">spurohit</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle 10g : Top 10 Oracle PL/SQL Performance Tips</title>
		<link>http://knoworacle.wordpress.com/2009/11/18/oracle-10g-top-10-oracle-plsql-performance-tips/</link>
		<comments>http://knoworacle.wordpress.com/2009/11/18/oracle-10g-top-10-oracle-plsql-performance-tips/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 17:08:41 +0000</pubDate>
		<dc:creator>shivmohan purohit</dc:creator>
				<category><![CDATA[Oracle Functional]]></category>

		<guid isPermaLink="false">http://knoworacle.wordpress.com/?p=1416</guid>
		<description><![CDATA[1. Avoid NOT EQUAL Operators ‘&#60;&#62;’ and ‘!=”
When these operators are used, the indexes on columns referenced cannot be used. If you need to use the ‘&#60;&#62;’ operator, you can alternatively use the OR clause to distinguish the &#60;&#62; conditions.
2. Avoid ‘IS NULL’ and ‘IS NOT NULL’
The value NULL is undefined, therefore an index on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1416&subd=knoworacle&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong><em>1. Avoid NOT EQUAL Operators ‘&lt;&gt;’ and ‘!=”</em></strong></p>
<p>When these operators are used, the indexes on columns referenced cannot be used. If you need to use the ‘&lt;&gt;’ operator, you can alternatively use the OR clause to distinguish the &lt;&gt; conditions.</p>
<p><strong><em>2. Avoid ‘IS NULL’ and ‘IS NOT NULL’</em></strong></p>
<p>The value NULL is undefined, therefore an index on the referenced column will not be used. Creating defaults for NULL values as part of table creation can help with this issue. (i.e.. column VARCHAR2(1) NOT NULL DEFAULT ‘N”)</p>
<p><em><strong>3. Avoid FUNCTIONS in SQL Where Clause</strong><br />
</em><br />
The optimizer will not use an index when a function is used on an indexed column.</p>
<p><strong><em>4. Comparing datatypes that are not similar</em><br />
</strong><br />
The Oracle database converts a VARCHAR2 column to a numeric when comparing a string to a number. When this happens, the referenced index is not used. (i.e account_number = 100100).</p>
<p><em><strong>5. Use the EXISTS function when possible</strong></em></p>
<p>Utilize the EXISTS function rather than the IN function. The EXIST function looks for a single row match. The IN function has to return all qualifying rows.</p>
<p><strong><em>6. Use BIND variables</em></strong></p>
<p>With the use of bind variables, SQL statements can be reused in memory rather than having to be re-parsed with each call.</p>
<p><strong><em>7. Where are you referencing form fields?</em></strong></p>
<p>Avoid referencing form fields within the body of a trigger or program unit. Developer 2000 Forms has a PL/SQL engine independent of the database. Occasionally, the engine has to pass SQL off to the database for parsing. To minimize the communication between the client and server, pass form fields via an argument list.</p>
<p><strong><em>8. Utilize the FORALL statement rather than a FOR LOOP.</em></strong></p>
<p>When inserting/updating/deleting a large number of rows, you can do the update collectively, rather then one record at a time. This is quicker because only one context switch has to occur between PL/SQL and SQL.</p>
<p><strong><em>9. Utilize the BULK COLLECT statement</em></strong></p>
<p>BULK COLLECT works similar to a FORALL statement. It will fetch all rows from the database rather than one row at a time.</p>
<p><strong><em>10. Using NOCOPY</em></strong></p>
<p>The PL/SQL engine will pass the parameter by reference rather than by value. This means the values do not have to be copied back and forth. The greatest advantage is seen when passing large records or collections. Can only be used with OUT or IN OUT parameters.</p>
<p><strong>References:<br />
</strong><br />
Richard J. Niemiec, Oracle Performance Tuning, Osborne/McGraw-Hill Book Co., 1999</p>
<p>Scott Urman, Oracle8i Advanced PL/SQL Programming, Osborne/McGraw-Hill Book Co., 2000</p>
Posted in Oracle Functional  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoworacle.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoworacle.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoworacle.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoworacle.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoworacle.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoworacle.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoworacle.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoworacle.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoworacle.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoworacle.wordpress.com/1416/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1416&subd=knoworacle&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://knoworacle.wordpress.com/2009/11/18/oracle-10g-top-10-oracle-plsql-performance-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/791581a0e3d66332d6b0d9d22ab4c1b7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">spurohit</media:title>
		</media:content>
	</item>
		<item>
		<title>Introduction</title>
		<link>http://knoworacle.wordpress.com/2009/11/18/introduction/</link>
		<comments>http://knoworacle.wordpress.com/2009/11/18/introduction/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 13:01:46 +0000</pubDate>
		<dc:creator>oracledba4u</dc:creator>
				<category><![CDATA[Oracle Functional]]></category>
		<category><![CDATA[Ashish]]></category>
		<category><![CDATA[Ashish Lewalkar]]></category>
		<category><![CDATA[introduction]]></category>
		<category><![CDATA[oracle apps technical]]></category>

		<guid isPermaLink="false">http://knoworacle.wordpress.com/?p=1424</guid>
		<description><![CDATA[Hi,
Myself Ashish, so you will see me writing useful articles on day to day activities in step by step manner. I will try to stick to Oracle Apps Technical, but whenever there is something from functional or DBA side will jump in that side also.
I hope this will be useful and will help you in your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1424&subd=knoworacle&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi,</p>
<p>Myself Ashish, so you will see me writing useful articles on day to day activities in step by step manner. I will try to stick to Oracle Apps Technical, but whenever there is something from functional or DBA side will jump in that side also.</p>
<p>I hope this will be useful and will help you in your work.</p>
<p>Cheers,<br />
Ashish</p>
Posted in Oracle Functional Tagged: Ashish, Ashish Lewalkar, introduction, oracle apps technical <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoworacle.wordpress.com/1424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoworacle.wordpress.com/1424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoworacle.wordpress.com/1424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoworacle.wordpress.com/1424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoworacle.wordpress.com/1424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoworacle.wordpress.com/1424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoworacle.wordpress.com/1424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoworacle.wordpress.com/1424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoworacle.wordpress.com/1424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoworacle.wordpress.com/1424/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1424&subd=knoworacle&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://knoworacle.wordpress.com/2009/11/18/introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b9cde7822bf65f3fe3d5118defad097?s=96&#38;d=identicon" medium="image">
			<media:title type="html">oracledba4u</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Compile Invalid Objects on APPS Schema For Packages &amp; API</title>
		<link>http://knoworacle.wordpress.com/2009/11/17/how-to-compile-invalid-objects-on-apps-schema-for-packages-api/</link>
		<comments>http://knoworacle.wordpress.com/2009/11/17/how-to-compile-invalid-objects-on-apps-schema-for-packages-api/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 12:10:13 +0000</pubDate>
		<dc:creator>shivmohan purohit</dc:creator>
				<category><![CDATA[Oracle Functional]]></category>

		<guid isPermaLink="false">http://knoworacle.wordpress.com/?p=1410</guid>
		<description><![CDATA[How to Compile Invalid Objects on APPS Schema For Packages and APIs-
&#160;
This is an example for OZF &#8211; Trade Management Schema
declare
cursor invalid_objects is
select object_name, object_type
from user_objects
where object_type in ('PACKAGE', 'PACKAGE BODY')
and status = 'INVALID'
and object_name like 'OZF%';
begin
for rec in invalid_objects
loop
DBMS_DDL.ALTER_COMPILE (rec.object_type ,'OZF' ,rec.object_name);
end loop;
end; 
Posted in Oracle Functional       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1410&subd=knoworacle&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>How to Compile Invalid Objects on APPS Schema For Packages and APIs-</p>
<p>&nbsp;</p>
<p>This is an example for OZF &#8211; Trade Management Schema</p>
<p><code>declare<br />
cursor invalid_objects is<br />
select object_name, object_type<br />
from user_objects<br />
where object_type in ('PACKAGE', 'PACKAGE BODY')<br />
and status = 'INVALID'<br />
and object_name like 'OZF%';<br />
begin<br />
for rec in invalid_objects<br />
loop<br />
DBMS_DDL.ALTER_COMPILE (rec.object_type ,'OZF' ,rec.object_name);<br />
end loop;<br />
end; </code></p>
Posted in Oracle Functional  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoworacle.wordpress.com/1410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoworacle.wordpress.com/1410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoworacle.wordpress.com/1410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoworacle.wordpress.com/1410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoworacle.wordpress.com/1410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoworacle.wordpress.com/1410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoworacle.wordpress.com/1410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoworacle.wordpress.com/1410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoworacle.wordpress.com/1410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoworacle.wordpress.com/1410/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1410&subd=knoworacle&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://knoworacle.wordpress.com/2009/11/17/how-to-compile-invalid-objects-on-apps-schema-for-packages-api/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/791581a0e3d66332d6b0d9d22ab4c1b7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">spurohit</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Determine If An Invoice Was Created For A Self Service Expense Report?</title>
		<link>http://knoworacle.wordpress.com/2009/11/16/ow-to-determine-if-an-invoice-was-created-for-a-self-service-expense-report/</link>
		<comments>http://knoworacle.wordpress.com/2009/11/16/ow-to-determine-if-an-invoice-was-created-for-a-self-service-expense-report/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 18:29:41 +0000</pubDate>
		<dc:creator>shivmohan purohit</dc:creator>
				<category><![CDATA[Oracle Functional]]></category>

		<guid isPermaLink="false">http://knoworacle.wordpress.com/?p=1408</guid>
		<description><![CDATA[How To Determine If An Invoice Was Created For A Self Service Expense  Report?
Just a Quick Tip
The Expense Report Import process should update ap_expense_report_headers_all.vouchno with the invoice_id after an expense report is successfuly imported into AP.
Posted in Oracle Functional       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1408&subd=knoworacle&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>How To Determine If An Invoice Was Created For A Self Service Expense  Report?</p>
<p><strong><span style="text-decoration:underline;">Just a Quick Tip</span></strong></p>
<p>The Expense Report Import process should update ap_expense_report_headers_all.vouchno with the invoice_id after an expense report is successfuly imported into AP.</p>
Posted in Oracle Functional  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoworacle.wordpress.com/1408/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoworacle.wordpress.com/1408/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoworacle.wordpress.com/1408/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoworacle.wordpress.com/1408/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoworacle.wordpress.com/1408/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoworacle.wordpress.com/1408/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoworacle.wordpress.com/1408/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoworacle.wordpress.com/1408/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoworacle.wordpress.com/1408/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoworacle.wordpress.com/1408/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1408&subd=knoworacle&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://knoworacle.wordpress.com/2009/11/16/ow-to-determine-if-an-invoice-was-created-for-a-self-service-expense-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/791581a0e3d66332d6b0d9d22ab4c1b7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">spurohit</media:title>
		</media:content>
	</item>
		<item>
		<title>AP Invoices Associated with the Given Purchase Order Number</title>
		<link>http://knoworacle.wordpress.com/2009/11/15/ap-invoices-associated-with-the-given-purchase-order-number/</link>
		<comments>http://knoworacle.wordpress.com/2009/11/15/ap-invoices-associated-with-the-given-purchase-order-number/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 13:20:59 +0000</pubDate>
		<dc:creator>shivmohan purohit</dc:creator>
				<category><![CDATA[Oracle Functional]]></category>

		<guid isPermaLink="false">http://knoworacle.wordpress.com/?p=1404</guid>
		<description><![CDATA[PO: Invoices Associated with the Given Purchase Order Number:-
&#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;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
SELECT aip.invoice_id invoice_id,
b.po_number po_number
FROM ap_invoices_all aip,
(SELECT invoice_id,po_number FROM ( SELECT ai.invoice_id,
AP_INVOICES_PKG.GET_PO_NUMBER( ai.invoice_id) po_number
FROM AP_INVOICES_ALL AI) A
WHERE a.po_number &#60;&#62;&#38;apos;UNMATCHED&#38;apos;) b
where b.invoice_id=aip.invoice_id
and b.po_number= ‘Purchase Order Number’;
via  Oracle Apps Training.
Posted in Oracle Functional       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1404&subd=knoworacle&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>PO: Invoices Associated with the Given Purchase Order Number:-</p>
<p>&#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;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>SELECT aip.invoice_id invoice_id,</p>
<p>b.po_number po_number</p>
<p>FROM ap_invoices_all aip,</p>
<p>(SELECT invoice_id,po_number FROM ( SELECT ai.invoice_id,</p>
<p>AP_INVOICES_PKG.GET_PO_NUMBER( ai.invoice_id) po_number</p>
<p>FROM AP_INVOICES_ALL AI) A</p>
<p>WHERE a.po_number &lt;&gt;&amp;apos;UNMATCHED&amp;apos;) b</p>
<p>where b.invoice_id=aip.invoice_id</p>
<p>and b.po_number= ‘Purchase Order Number’;</p>
<p>via <a href="http://alloracletech.blogspot.com/search?updated-max=2008-09-23T08%3A18%3A00-07%3A00&amp;max-results=7"> Oracle Apps Training</a>.</p>
Posted in Oracle Functional  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoworacle.wordpress.com/1404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoworacle.wordpress.com/1404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoworacle.wordpress.com/1404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoworacle.wordpress.com/1404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoworacle.wordpress.com/1404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoworacle.wordpress.com/1404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoworacle.wordpress.com/1404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoworacle.wordpress.com/1404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoworacle.wordpress.com/1404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoworacle.wordpress.com/1404/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1404&subd=knoworacle&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://knoworacle.wordpress.com/2009/11/15/ap-invoices-associated-with-the-given-purchase-order-number/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/791581a0e3d66332d6b0d9d22ab4c1b7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">spurohit</media:title>
		</media:content>
	</item>
		<item>
		<title>Display the number value in Words</title>
		<link>http://knoworacle.wordpress.com/2009/11/15/display-the-number-value-in-words/</link>
		<comments>http://knoworacle.wordpress.com/2009/11/15/display-the-number-value-in-words/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 13:17:05 +0000</pubDate>
		<dc:creator>shivmohan purohit</dc:creator>
				<category><![CDATA[Oracle Functional]]></category>

		<guid isPermaLink="false">http://knoworacle.wordpress.com/?p=1402</guid>
		<description><![CDATA[Display the number value in Words:-
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
The following query can be used to display the number in the words.
select ‘&#38;a’, (to_char(to_date(‘&#38;a’,&#8217;j’), ‘jsp’)) from dual;
Example:-
select 211, (to_char(to_date(211,&#8217;j'), &#8216;jsp&#8217;)) from dual;
via  Oracle Apps Training.
Posted in Oracle Functional       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1402&subd=knoworacle&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Display the number value in Words:-</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>The following query can be used to display the number in the words.</p>
<p>select ‘&amp;a’, (to_char(to_date(‘&amp;a’,&#8217;j’), ‘jsp’)) from dual;</p>
<p>Example:-</p>
<p>select 211, (to_char(to_date(211,&#8217;j'), &#8216;jsp&#8217;)) from dual;</p>
<p>via <a href="http://alloracletech.blogspot.com/search?updated-max=2009-05-30T19%3A35%3A00-07%3A00&amp;max-results=7"> Oracle Apps Training</a>.</p>
Posted in Oracle Functional  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoworacle.wordpress.com/1402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoworacle.wordpress.com/1402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoworacle.wordpress.com/1402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoworacle.wordpress.com/1402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoworacle.wordpress.com/1402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoworacle.wordpress.com/1402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoworacle.wordpress.com/1402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoworacle.wordpress.com/1402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoworacle.wordpress.com/1402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoworacle.wordpress.com/1402/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1402&subd=knoworacle&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://knoworacle.wordpress.com/2009/11/15/display-the-number-value-in-words/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/791581a0e3d66332d6b0d9d22ab4c1b7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">spurohit</media:title>
		</media:content>
	</item>
		<item>
		<title>Display the Database Version and Server Operating System Name</title>
		<link>http://knoworacle.wordpress.com/2009/11/15/display-the-database-version-and-server-operating-system-name/</link>
		<comments>http://knoworacle.wordpress.com/2009/11/15/display-the-database-version-and-server-operating-system-name/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 13:15:34 +0000</pubDate>
		<dc:creator>shivmohan purohit</dc:creator>
				<category><![CDATA[Oracle Functional]]></category>

		<guid isPermaLink="false">http://knoworacle.wordpress.com/?p=1400</guid>
		<description><![CDATA[Display the Database Version and Server Operating System Name
&#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;
The following query gives the version of the Oracle Database.
SELECT banner FROM v$version;
Example:-
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 &#8211; Prod
PL/SQL Release 10.2.0.2.0 &#8211; Production
CORE 10.2.0.2.0 Production
TNS for Linux: Version 10.2.0.2.0 &#8211; Production
NLSRTL Version 10.2.0.2.0 &#8211; Production
From above information, we can say this is 10g Database and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1400&subd=knoworacle&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Display the Database Version and Server Operating System Name</p>
<p>&#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;</p>
<p>The following query gives the version of the Oracle Database.</p>
<p>SELECT banner FROM v$version;</p>
<p>Example:-</p>
<p>Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 &#8211; Prod</p>
<p>PL/SQL Release 10.2.0.2.0 &#8211; Production</p>
<p>CORE 10.2.0.2.0 Production</p>
<p>TNS for Linux: Version 10.2.0.2.0 &#8211; Production</p>
<p>NLSRTL Version 10.2.0.2.0 &#8211; Production</p>
<p>From above information, we can say this is 10g Database and Server Operating system is Linux.</p>
<p>The following query can be used to get the version of the Server Operating system.</p>
<p>BEGIN</p>
<p>dbms_output.put_line(&amp;apos;Port String: &amp;apos;||dbms_utility.port_string);</p>
<p>END;</p>
<p>Example:-</p>
<p>Port String: Linuxi386/Linux-2.0.34-8.1.0</p>
<p>From the above information, we can say this is Linux Operating system and version is 2.0.34-8.1.0</p>
<p>Note:- If you are login into the server with some ID then you can also know the name and version of the Server Operating system directly by typing</p>
<p>&gt; uname</p>
<p>via <a href="http://alloracletech.blogspot.com/2009/05/display-database-version-and-server.html"> Oracle Apps Training: Display the Database Version and Server Operating System Name</a>.</p>
Posted in Oracle Functional  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoworacle.wordpress.com/1400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoworacle.wordpress.com/1400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoworacle.wordpress.com/1400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoworacle.wordpress.com/1400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoworacle.wordpress.com/1400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoworacle.wordpress.com/1400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoworacle.wordpress.com/1400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoworacle.wordpress.com/1400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoworacle.wordpress.com/1400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoworacle.wordpress.com/1400/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=knoworacle.wordpress.com&blog=3918798&post=1400&subd=knoworacle&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://knoworacle.wordpress.com/2009/11/15/display-the-database-version-and-server-operating-system-name/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/791581a0e3d66332d6b0d9d22ab4c1b7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">spurohit</media:title>
		</media:content>
	</item>
	</channel>
</rss>