<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.1" -->
<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/"
	>

<channel>
	<title>Tech Notes</title>
	<link>http://technotes.occex.com</link>
	<description>Oracle Integration Service Team</description>
	<pubDate>Fri, 30 Mar 2012 09:12:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.1</generator>
	<language>en</language>
			<item>
		<title>How to generate a xml blob from a record set</title>
		<link>http://technotes.occex.com/?p=69271</link>
		<comments>http://technotes.occex.com/?p=69271#comments</comments>
		<pubDate>Fri, 30 Mar 2012 09:12:02 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Oracle</category>
	<category>Oracle data warehouse builder</category>
		<guid isPermaLink="false">http://technotes.occex.com/?p=69271</guid>
		<description><![CDATA[select extract(sys_xmlagg(sys_xmlgen(column_value)),&#8217;ROWSET/COLUMN_VALUE/ROW&#8217;) xmlcontent 
from ( TABLE(XMLSequence (Cursor (SELECT * FROM STG_DELIMITED_FILE_LOAD_01) ) ) ex )

]]></description>
			<content:encoded><![CDATA[<p>select extract(sys_xmlagg(sys_xmlgen(column_value)),&#8217;ROWSET/COLUMN_VALUE/ROW&#8217;) xmlcontent <br />
from ( TABLE(XMLSequence (Cursor (SELECT * FROM STG_DELIMITED_FILE_LOAD_01) ) ) ex )
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.occex.com/?feed=rss2&amp;p=69271</wfw:commentRSS>
		</item>
		<item>
		<title>Oracle grant select for all tables views in one schema to another</title>
		<link>http://technotes.occex.com/?p=69270</link>
		<comments>http://technotes.occex.com/?p=69270#comments</comments>
		<pubDate>Tue, 20 Mar 2012 05:27:26 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Oracle</category>
	<category>Oracle data warehouse builder</category>
		<guid isPermaLink="false">http://technotes.occex.com/?p=69270</guid>
		<description><![CDATA[SELECT &#8216;GRANT SELECT ON DIT_SOAINFRA.&#8217; &#124;&#124; table_name &#124;&#124; &#8216; TO RPT_VIEWS;&#8217;
FROM all_tables WHERE owner = &#8216;DIT_SOAINFRA&#8217;
UNION ALL
SELECT &#8216;GRANT SELECT ON DIT_SOAINFRA.&#8217; &#124;&#124; view_name &#124;&#124; &#8216; TO RPT_VIEWS;&#8217;
FROM all_views WHERE owner = &#8216;DIT_SOAINFRA&#8217;;

]]></description>
			<content:encoded><![CDATA[<p>SELECT &#8216;GRANT SELECT ON DIT_SOAINFRA.&#8217; || table_name || &#8216; TO RPT_VIEWS;&#8217;<br />
FROM all_tables WHERE owner = &#8216;DIT_SOAINFRA&#8217;<br />
UNION ALL<br />
SELECT &#8216;GRANT SELECT ON DIT_SOAINFRA.&#8217; || view_name || &#8216; TO RPT_VIEWS;&#8217;<br />
FROM all_views WHERE owner = &#8216;DIT_SOAINFRA&#8217;;
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.occex.com/?feed=rss2&amp;p=69270</wfw:commentRSS>
		</item>
		<item>
		<title>Killing the zombie process flow process for oracle data warehouse builder</title>
		<link>http://technotes.occex.com/?p=69269</link>
		<comments>http://technotes.occex.com/?p=69269#comments</comments>
		<pubDate>Thu, 08 Mar 2012 11:52:35 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Database</category>
	<category>Oracle</category>
	<category>Oracle data warehouse builder</category>
		<guid isPermaLink="false">http://technotes.occex.com/?p=69269</guid>
		<description><![CDATA[SELECT item_type, item_key, begin_date, end_date, activity_status FROM wf_item_activity_statuses 
WHERE activity_status != &#8216;COMPLETE&#8217; AND item_type = &#8216;RCN_TST&#8217;; 
SELECT item_type, item_key, begin_date, end_date, activity_status FROM wf_item_activity_statuses 
WHERE activity_status != &#8216;COMPLETE&#8217; AND item_type = &#8216;RCN_PKG&#8217;; 
 
 
SELECT item_type, item_key, begin_date, end_date, activity_status FROM wf_item_activity_statuses 
WHERE activity_status != &#8216;COMPLETE&#8217; AND item_type = &#8216;PKG_FILE&#8217;; 
 
BEGIN 
WF_ENGINE.ABORTPROCESS(&#8217;RCN_PKG&#8217;, &#8216;WB_IK_20120308_134025_379326_RCN_PKG/PF_FILE_PROCESS_1&#8242;); 
END; 
/ 
COMMIT; 


]]></description>
			<content:encoded><![CDATA[<p><font size="3"><font face="Calibri">SELECT item_type, item_key, begin_date, end_date, activity_status FROM wf_item_activity_statuses </p>
<p></font></font><font size="3"><font face="Calibri">WHERE activity_status != &#8216;COMPLETE&#8217; AND item_type = &#8216;RCN_TST&#8217;; </p>
<p></font></font><font size="3"><font face="Calibri">SELECT item_type, item_key, begin_date, end_date, activity_status FROM wf_item_activity_statuses </p>
<p></font></font><font size="3"><font face="Calibri">WHERE activity_status != &#8216;COMPLETE&#8217; AND item_type = &#8216;RCN_PKG&#8217;; </p>
<p></font></font><font face="Calibri" size="3"> </font></p>
<p><font face="Calibri" size="3"> </font></p>
<p><font size="3"><font face="Calibri">SELECT item_type, item_key, begin_date, end_date, activity_status FROM wf_item_activity_statuses </p>
<p></font></font><font size="3"><font face="Calibri">WHERE activity_status != &#8216;COMPLETE&#8217; AND item_type = &#8216;PKG_FILE&#8217;; </p>
<p></font></font><font face="Calibri" size="3"> </font></p>
<p><font size="3"><font face="Calibri">BEGIN </p>
<p></font></font><font size="3"><font face="Calibri">WF_ENGINE.ABORTPROCESS(&#8217;RCN_PKG&#8217;, &#8216;WB_IK_20120308_134025_379326_RCN_PKG/PF_FILE_PROCESS_1&#8242;); </p>
<p></font></font><font size="3"><font face="Calibri">END; </p>
<p></font></font><font size="3"><font face="Calibri">/ </p>
<p></font></font><font size="3"><font face="Calibri">COMMIT; </p>
<p></font></font>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.occex.com/?feed=rss2&amp;p=69269</wfw:commentRSS>
		</item>
		<item>
		<title>secure ftp script</title>
		<link>http://technotes.occex.com/?p=69268</link>
		<comments>http://technotes.occex.com/?p=69268#comments</comments>
		<pubDate>Thu, 23 Feb 2012 02:06:20 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>System Administration</category>
		<guid isPermaLink="false">http://technotes.occex.com/?p=69268</guid>
		<description><![CDATA[&#8212; bat script to run the auto sftp &#8212; 
@echo off
ECHO &#8220;start ftp upload file at %Date% %Time%&#8221; >>d:\dts\logs\ftplog.txt
set path =&#8221;C:\Program Files (x86)\Ipswitch\WS_FTP 12\&#8221;
C:\&#8221;Program Files (x86)&#8221;\Ipswitch\&#8221;WS_FTP 12&#8243;\ftpscrpt.com -b true -f d:\dts\sftpuploadtxtfile.txt
move d:\DTS\files\files*.csv d:\DTS\files\archive\
echo &#8220;Finish ftp at %Date% %Time%&#8221;  >>d:\dts\logs\ftplog.txt
echo &#8220;exit code %errorlevel%&#8221;   >>d:\dts\logs\ftplog.txt
exit
&#8212;&#8211; file content for sftpuploadtxtfile&#8212;&#8211; 
 
TRACE Screen
LOG Screen
TRACE d:\dts\logs\Trace.txt
LOG d:\dts\logs\Log.txt
USER username
PASS password
CONNECT sftp://hostname.com
CD /home/incoming
LCD D:\dts\files
Mput [...]]]></description>
			<content:encoded><![CDATA[<p>&#8212; bat script to run the auto sftp &#8212; </p>
<p>@echo off</p>
<p>ECHO &#8220;start ftp upload file at %Date% %Time%&#8221; >>d:\dts\logs\ftplog.txt</p>
<p>set path =&#8221;C:\Program Files (x86)\Ipswitch\WS_FTP 12\&#8221;</p>
<p>C:\&#8221;Program Files (x86)&#8221;\Ipswitch\&#8221;WS_FTP 12&#8243;\ftpscrpt.com -b true -f d:\dts\sftpuploadtxtfile.txt</p>
<p>move d:\DTS\files\files*.csv d:\DTS\files\archive\</p>
<p>echo &#8220;Finish ftp at %Date% %Time%&#8221;  >>d:\dts\logs\ftplog.txt</p>
<p>echo &#8220;exit code %errorlevel%&#8221;   >>d:\dts\logs\ftplog.txt<br />
exit<br />
&#8212;&#8211; file content for sftpuploadtxtfile&#8212;&#8211; </p>
<p> </p>
<p>TRACE Screen<br />
LOG Screen<br />
TRACE d:\dts\logs\Trace.txt<br />
LOG d:\dts\logs\Log.txt<br />
USER username<br />
PASS password</p>
<p>CONNECT sftp://hostname.com<br />
CD /home/incoming<br />
LCD D:\dts\files<br />
Mput D:\dts\files\fileer*.csv<br />
Mput D:\dts\files\Canceledfilers*.csv<br />
ONSUCCESS GOTO SUCCESS<br />
ONERROR GOTO DISCONNECT<br />
LABEL SUCCESS<br />
LABEL DISCONNECT<br />
CLOSE
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.occex.com/?feed=rss2&amp;p=69268</wfw:commentRSS>
		</item>
		<item>
		<title>Buiness objects checking changes in the CMS for universe</title>
		<link>http://technotes.occex.com/?p=69267</link>
		<comments>http://technotes.occex.com/?p=69267#comments</comments>
		<pubDate>Thu, 16 Feb 2012 06:52:18 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Business Objects</category>
		<guid isPermaLink="false">http://technotes.occex.com/?p=69267</guid>
		<description><![CDATA[select * from detail_type where detail_type_description like &#8216;%Univer%&#8217;
select count(distinct objectid) from CMS_InfoObjects6 
&#8211;select * into CMS_TEMP from CMS_InfoObjects6
select prev.* from
CMS_TEMP prev join CMS_InfoObjects6 cr on prev.objectid = cr.objectid 
where prev.lastmodifyTime  cr.lastmodifyTime
select * From CMS_TEMP where typeid=266 
SELECT [TableName] = so.name,[RowCount] = MAX(si.rows)  
FROM sysobjects so,sysindexes si  
WHERE so.xtype = &#8216;U&#8217; 
AND si.id = OBJECT_ID(so.name) 
GROUP [...]]]></description>
			<content:encoded><![CDATA[<p><font color="#0000ff" size="2"><font color="#0000ff" size="2">select<font size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">*</font></font><font size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">from</font></font><font size="2"> detail_type </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">where</font></font><font size="2"> detail_type_description </font><font color="#808080" size="2"><font color="#808080" size="2">like</font></font><font size="2"> </font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;%Univer%&#8217;</font></font></p>
<p></font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">select<font size="2"> </font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">count</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">distinct</font></font><font size="2"> objectid</font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font><font size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">from</font></font><font size="2"> CMS_InfoObjects6 </font></p>
<p></font></font><font color="#008000" size="2"><font color="#008000" size="2">&#8211;select * into CMS_TEMP from CMS_InfoObjects6</p>
<p></font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">select<font size="2"> prev</font><font color="#808080" size="2"><font color="#808080" size="2">.*</font></font><font size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">from</font></font></p>
<p></font></font><font size="2">CMS_TEMP prev <font color="#808080" size="2"><font color="#808080" size="2">join</font></font><font size="2"> CMS_InfoObjects6 cr </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">on</font></font><font size="2"> prev</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">objectid </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> cr</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">objectid </font></p>
<p></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">where<font size="2"> prev</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">lastmodifyTime </font><font color="#808080" size="2"><font color="#808080" size="2"><></font></font><font size="2"> cr</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">lastmodifyTime</font></p>
<p></font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">select</font></font><font size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">*</font></font><font size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">From</font></font><font size="2"> CMS_TEMP </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">where</font></font><font size="2"> typeid</font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2">266</font><font size="2"> </p>
<p></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font size="2"> [TableName] </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> so</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">name</font><font color="#808080" size="2"><font color="#808080" size="2">,</font></font><font size="2">[RowCount] </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> </font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">MAX</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font size="2">si</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">rows</font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font><font size="2"> </font><font size="2"> </p>
<p></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">FROM</font></font><font size="2"> sysobjects so</font><font color="#808080" size="2"><font color="#808080" size="2">,</font></font><font size="2">sysindexes si </font><font size="2"> </p>
<p></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">WHERE<font size="2"> so</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">xtype </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> </font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;U&#8217;</font></font><font size="2"> </font></p>
<p></font></font><font color="#808080" size="2"><font color="#808080" size="2">AND<font size="2"> si</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">id </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> </font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">OBJECT_ID</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font size="2">so</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">name</font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font><font size="2"> </font></p>
<p></font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">GROUP<font size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">BY</font></font><font size="2"> so</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">name </font></p>
<p></font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">ORDER<font size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">BY</font></font><font size="2"> 2 </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">DESC</font></font></p>
<p></font></font>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.occex.com/?feed=rss2&amp;p=69267</wfw:commentRSS>
		</item>
		<item>
		<title>How to set universe query limits?</title>
		<link>http://technotes.occex.com/?p=69266</link>
		<comments>http://technotes.occex.com/?p=69266#comments</comments>
		<pubDate>Tue, 14 Feb 2012 09:15:00 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Business Objects</category>
		<guid isPermaLink="false">http://technotes.occex.com/?p=69266</guid>
		<description><![CDATA[setting universe default limit
default rows 5000
default timeout 10 pages
 

]]></description>
			<content:encoded><![CDATA[<p>setting universe default limit</p>
<p>default rows 5000</p>
<p>default timeout 10 pages</p>
<p> 
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.occex.com/?feed=rss2&amp;p=69266</wfw:commentRSS>
		</item>
		<item>
		<title>OWB how to change prd user password for the target schema?</title>
		<link>http://technotes.occex.com/?p=69265</link>
		<comments>http://technotes.occex.com/?p=69265#comments</comments>
		<pubDate>Fri, 03 Feb 2012 16:40:55 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Database</category>
	<category>Oracle</category>
	<category>Data warehousing</category>
	<category>Oracle data warehouse builder</category>
	<category>OMBPlus</category>
		<guid isPermaLink="false">http://technotes.occex.com/?p=69265</guid>
		<description><![CDATA[Here is how to change password in oracle data warehouse prd environment.
OMBCONNECT USER_TGT/password@host_name:1521:service_name
puts &#8220;Changing context to the production project&#8221;
OMBCC &#8216;USER&#8217;
puts &#8220;Connecting to the DEFAULT_CONTROL_CENTER&#8221;
OMBCONNECT CONTROL_CENTER
OMBCOMMIT
puts &#8220;setting connection details for USER_TGT_LOC location&#8221;
OMBALTER LOCATION &#8216;USER_TGT_LOC&#8217; SET PROPERTIES (PASSWORD)  VALUES (&#8217;password&#8217;)
OMBCOMMIT
OMBREGISTER LOCATION &#8216;USER_TGT_LOC&#8217;
OMBCOMMIT
OMBDISCONNECT

]]></description>
			<content:encoded><![CDATA[<p>Here is how to change password in oracle data warehouse prd environment.</p>
<p>OMBCONNECT <a href="mailto:USER_TGT/password@host_name:1521:service_name">USER_TGT/password@host_name:1521:service_name</a></p>
<p>puts &#8220;Changing context to the production project&#8221;</p>
<p>OMBCC &#8216;USER&#8217;</p>
<p>puts &#8220;Connecting to the DEFAULT_CONTROL_CENTER&#8221;</p>
<p>OMBCONNECT CONTROL_CENTER</p>
<p>OMBCOMMIT</p>
<p>puts &#8220;setting connection details for USER_TGT_LOC location&#8221;</p>
<p>OMBALTER LOCATION &#8216;USER_TGT_LOC&#8217; SET PROPERTIES (PASSWORD)  VALUES (&#8217;password&#8217;)</p>
<p>OMBCOMMIT</p>
<p>OMBREGISTER LOCATION &#8216;USER_TGT_LOC&#8217;</p>
<p>OMBCOMMIT<br />
OMBDISCONNECT
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.occex.com/?feed=rss2&amp;p=69265</wfw:commentRSS>
		</item>
		<item>
		<title>Oracle PL/SQL how to create a db link?</title>
		<link>http://technotes.occex.com/?p=69264</link>
		<comments>http://technotes.occex.com/?p=69264#comments</comments>
		<pubDate>Fri, 27 Jan 2012 07:46:21 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Database</category>
	<category>Oracle</category>
		<guid isPermaLink="false">http://technotes.occex.com/?p=69264</guid>
		<description><![CDATA[Here is how to create a db link
CREATE DATABASE LINK
servicename@db_LOC_1
CONNECT TO user_name IDENTIFIED BY password
USING &#8216;(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP) 
(HOST=db_host_name)(PORT=db_port)))
(CONNECT_DATA=(SERVICE_NAME=db_service_name)))&#8217;;
(run under sqlplus will work while in sql developer won&#8217;t) 
 

]]></description>
			<content:encoded><![CDATA[<p>Here is how to create a db link</p>
<p>CREATE DATABASE LINK<br />
<a href="mailto:servicename@db_LOC_1">servicename@db_LOC_1</a><br />
CONNECT TO user_name IDENTIFIED BY password<br />
USING &#8216;(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP) <br />
(HOST=db_host_name)(PORT=db_port)))<br />
(CONNECT_DATA=(SERVICE_NAME=db_service_name)))&#8217;;</p>
<p>(run under sqlplus will work while in sql developer won&#8217;t) </p>
<p> 
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.occex.com/?feed=rss2&amp;p=69264</wfw:commentRSS>
		</item>
		<item>
		<title>Oracle data warehouse builder how to switch workspace?</title>
		<link>http://technotes.occex.com/?p=69263</link>
		<comments>http://technotes.occex.com/?p=69263#comments</comments>
		<pubDate>Tue, 17 Jan 2012 09:02:00 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Database</category>
	<category>Oracle</category>
	<category>Data warehousing</category>
	<category>Oracle data warehouse builder</category>
		<guid isPermaLink="false">http://technotes.occex.com/?p=69263</guid>
		<description><![CDATA[Here is how you can switch workspace in oracle data warehouse builder if you have more than one workspace under the same user
exec OWBsys.wb_workspace_management.set_workspace(&#8217;WORKSPACE_NAME&#8217;);

]]></description>
			<content:encoded><![CDATA[<p>Here is how you can switch workspace in oracle data warehouse builder if you have more than one workspace under the same user</p>
<p>exec OWBsys.wb_workspace_management.set_workspace(&#8217;WORKSPACE_NAME&#8217;);
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.occex.com/?feed=rss2&amp;p=69263</wfw:commentRSS>
		</item>
		<item>
		<title>checking Oracle warehouse builder audit info in the owb audit table/view</title>
		<link>http://technotes.occex.com/?p=69262</link>
		<comments>http://technotes.occex.com/?p=69262#comments</comments>
		<pubDate>Tue, 17 Jan 2012 08:50:21 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Database</category>
	<category>Oracle</category>
	<category>Oracle data warehouse builder</category>
		<guid isPermaLink="false">http://technotes.occex.com/?p=69262</guid>
		<description><![CDATA[here is how you can check the audit info in the owb audit table/view
this will give you the same info as the one provided by oracle warehouse builder repository browser tools
select * from owbsys.wb_rtv_audit_executions
where return_result like &#8216;OK_WITH_WARNINGS&#8217;
select * from OWBSYS.all_rt_audit_exec_messages
where execution_audit_id in (select audit_execution_id from owbsys.wb_rtv_audit_executions
where return_result like &#8216;OK_WITH_WARNINGS&#8217; and return_code=2)
 
 

]]></description>
			<content:encoded><![CDATA[<p>here is how you can check the audit info in the owb audit table/view</p>
<p>this will give you the same info as the one provided by oracle warehouse builder repository browser tools</p>
<p>select * from owbsys.wb_rtv_audit_executions<br />
where return_result like &#8216;OK_WITH_WARNINGS&#8217;</p>
<p>select * from OWBSYS.all_rt_audit_exec_messages<br />
where execution_audit_id in (select audit_execution_id from owbsys.wb_rtv_audit_executions<br />
where return_result like &#8216;OK_WITH_WARNINGS&#8217; and return_code=2)</p>
<p> </p>
<p> 
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.occex.com/?feed=rss2&amp;p=69262</wfw:commentRSS>
		</item>
	</channel>
</rss>

