<?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>CJ's Tech Notes</title>
	<link>http://occex.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Tue, 07 Sep 2010 11:15:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.1</generator>
	<language>en</language>
			<item>
		<title>Oracle 10g how to check current session default schema?</title>
		<link>http://occex.com/?p=69081</link>
		<comments>http://occex.com/?p=69081#comments</comments>
		<pubDate>Tue, 07 Sep 2010 11:15:31 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Database</category>
	<category>Oracle</category>
		<guid isPermaLink="false">http://occex.com/?p=69081</guid>
		<description><![CDATA[select  sys_context( &#8216;userenv&#8217;, &#8216;current_schema&#8217; ) from dual;

]]></description>
			<content:encoded><![CDATA[<p>select  sys_context( &#8216;userenv&#8217;, &#8216;current_schema&#8217; ) from dual;
</p>
]]></content:encoded>
			<wfw:commentRSS>http://occex.com/?feed=rss2&amp;p=69081</wfw:commentRSS>
		</item>
		<item>
		<title>How to alert another session&#8217;s trace setting?</title>
		<link>http://occex.com/?p=69080</link>
		<comments>http://occex.com/?p=69080#comments</comments>
		<pubDate>Tue, 07 Sep 2010 10:21:40 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Database</category>
	<category>Oracle</category>
		<guid isPermaLink="false">http://occex.com/?p=69080</guid>
		<description><![CDATA[select sid, serial#, program, machine from v$session where program like &#8216;My_Program_Name%&#8217;;
exec dbms_system.set_sql_trace_in_session(10 /* sid */,20 /* serial# */,true);

]]></description>
			<content:encoded><![CDATA[<p>select sid, serial#, program, machine from v$session where program like &#8216;My_Program_Name%&#8217;;<br />
exec dbms_system.set_sql_trace_in_session(10 /* sid */,20 /* serial# */,true);
</p>
]]></content:encoded>
			<wfw:commentRSS>http://occex.com/?feed=rss2&amp;p=69080</wfw:commentRSS>
		</item>
		<item>
		<title>oracle 10g data pump quick example</title>
		<link>http://occex.com/?p=69079</link>
		<comments>http://occex.com/?p=69079#comments</comments>
		<pubDate>Tue, 07 Sep 2010 09:11:54 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Database</category>
	<category>Oracle</category>
		<guid isPermaLink="false">http://occex.com/?p=69079</guid>
		<description><![CDATA[here is a quick example for oracle datapump to copy over schema objects
 
expdp user/pass@sitbox schemas=rei directory=rei_dump dumpfile=rxi.dmp logfile=expdpREI.log
impdp user/pass@rxi schemas=rei directory=IMP_EXP dumpfile=rxi.dmp logfile=impdpREI.log
 
 

]]></description>
			<content:encoded><![CDATA[<p>here is a quick example for oracle datapump to copy over schema objects</p>
<p> </p>
<p>expdp <a href="mailto:user/pass@sitbox">user/pass@sitbox</a> schemas=rei directory=rei_dump dumpfile=rxi.dmp logfile=expdpREI.log</p>
<p>impdp <a href="mailto:user/pass@rxi">user/pass@rxi</a> schemas=rei directory=IMP_EXP dumpfile=rxi.dmp logfile=impdpREI.log</p>
<p> </p>
<p> 
</p>
]]></content:encoded>
			<wfw:commentRSS>http://occex.com/?feed=rss2&amp;p=69079</wfw:commentRSS>
		</item>
		<item>
		<title>Createing web service interface from a wsdl</title>
		<link>http://occex.com/?p=69078</link>
		<comments>http://occex.com/?p=69078#comments</comments>
		<pubDate>Thu, 02 Sep 2010 09:57:33 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>.Net</category>
	<category>C#</category>
		<guid isPermaLink="false">http://occex.com/?p=69078</guid>
		<description><![CDATA[C:\Program Files\Microsoft Visual Studio 9.0\VC>wsdl /si c:\test\wsdl\bizprocessadmin.wsdl /out:c:\test\wsdl\ (the c# interface file will generated under this folder)

]]></description>
			<content:encoded><![CDATA[<p>C:\Program Files\Microsoft Visual Studio 9.0\VC>wsdl /si c:\test\wsdl\bizprocessadmin.wsdl /out:c:\test\wsdl\ (the c# interface file will generated under this folder)
</p>
]]></content:encoded>
			<wfw:commentRSS>http://occex.com/?feed=rss2&amp;p=69078</wfw:commentRSS>
		</item>
		<item>
		<title>checking constraints on the columns of a oracle table</title>
		<link>http://occex.com/?p=69077</link>
		<comments>http://occex.com/?p=69077#comments</comments>
		<pubDate>Mon, 30 Aug 2010 12:05:02 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Database</category>
	<category>Oracle</category>
		<guid isPermaLink="false">http://occex.com/?p=69077</guid>
		<description><![CDATA[SELECT b.table_name, b.column_name
FROM SYS.ALL_CONSTRAINTS S , SYS.ALL_CONS_COLUMNS B
WHERE S.OWNER=TEST&#8217; AND S.TABLE_NAME=&#8217;ACCOUNT&#8217;
 AND S.CONSTRAINT_NAME=B.CONSTRAINT_NAME

]]></description>
			<content:encoded><![CDATA[<p>SELECT b.table_name, b.column_name<br />
FROM SYS.ALL_CONSTRAINTS S , SYS.ALL_CONS_COLUMNS B<br />
WHERE S.OWNER=TEST&#8217; AND S.TABLE_NAME=&#8217;ACCOUNT&#8217;<br />
 AND S.CONSTRAINT_NAME=B.CONSTRAINT_NAME
</p>
]]></content:encoded>
			<wfw:commentRSS>http://occex.com/?feed=rss2&amp;p=69077</wfw:commentRSS>
		</item>
		<item>
		<title>what is the oracle equivalent for datediff in sql sever?</title>
		<link>http://occex.com/?p=69076</link>
		<comments>http://occex.com/?p=69076#comments</comments>
		<pubDate>Mon, 30 Aug 2010 12:04:25 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Database</category>
	<category>Oracle</category>
		<guid isPermaLink="false">http://occex.com/?p=69076</guid>
		<description><![CDATA[Floor(sysdate - to_date(&#8217;100825&#8242;,&#8217;yymmdd&#8217;))=0

]]></description>
			<content:encoded><![CDATA[<p>Floor(sysdate - to_date(&#8217;100825&#8242;,&#8217;yymmdd&#8217;))=0
</p>
]]></content:encoded>
			<wfw:commentRSS>http://occex.com/?feed=rss2&amp;p=69076</wfw:commentRSS>
		</item>
		<item>
		<title>VMware admin</title>
		<link>http://occex.com/?p=69075</link>
		<comments>http://occex.com/?p=69075#comments</comments>
		<pubDate>Fri, 27 Aug 2010 10:06:17 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Anouncements &#038; News</category>
	<category>System Administration</category>
		<guid isPermaLink="false">http://occex.com/?p=69075</guid>
		<description><![CDATA[ou can decide to remove this software from your system at any time by invoking the following command: &#8220;rpm -e VMware-server&#8221;. instead of puting in the whole package name, just put in VMware-server  in order to remove the vm ware from your box.


]]></description>
			<content:encoded><![CDATA[<p><span lang="EN">ou can decide to remove this software from your system at any time by invoking the following command: &#8220;rpm -e VMware-server&#8221;. instead of puting in the whole package name, just put in VMware-server  in order to remove the vm ware from your box.</p>
<p></span>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://occex.com/?feed=rss2&amp;p=69075</wfw:commentRSS>
		</item>
		<item>
		<title>Business objects how to call web service to create a report instance</title>
		<link>http://occex.com/?p=69072</link>
		<comments>http://occex.com/?p=69072#comments</comments>
		<pubDate>Wed, 25 Aug 2010 07:35:55 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Anouncements &#038; News</category>
		<guid isPermaLink="false">http://occex.com/?p=69072</guid>
		<description><![CDATA[available business object web service can be access
http://biportalsite.com/dswsbobje/services/listServices
use the session service to establish a connection
http://biportalsite.com/dswsbobje/services/Session?wsdl 
use the biplatform to schedule a run (scheduel for run now)
http://biportalsite.com/dswsbobje/services/BIPlatform?wsdl
 

]]></description>
			<content:encoded><![CDATA[<p>available business object web service can be access</p>
<p><a href="http://biportalsite.com/dswsbobje/services/listServices">http://biportalsite.com/dswsbobje/services/listServices</a></p>
<p>use the session service to establish a connection</p>
<p><a href="http://biportalsite.com/dswsbobje/services/Session?wsdl">http://biportalsite.com/dswsbobje/services/Session?wsdl</a> </p>
<p>use the biplatform to schedule a run (scheduel for run now)</p>
<p><a href="http://biportalsite.com/dswsbobje/services/BIPlatform?wsdl">http://biportalsite.com/dswsbobje/services/BIPlatform?wsdl</a></p>
<p> 
</p>
]]></content:encoded>
			<wfw:commentRSS>http://occex.com/?feed=rss2&amp;p=69072</wfw:commentRSS>
		</item>
		<item>
		<title>Bat command how to do number compare</title>
		<link>http://occex.com/?p=69071</link>
		<comments>http://occex.com/?p=69071#comments</comments>
		<pubDate>Wed, 25 Aug 2010 06:23:17 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>System Administration</category>
	<category>DOS Command</category>
		<guid isPermaLink="false">http://occex.com/?p=69071</guid>
		<description><![CDATA[  IF %ERRORLEVEL% gtr 0 GOTO ExitError
  ECHO &#8220;Load data into %table% complete successfully&#8221;

]]></description>
			<content:encoded><![CDATA[<p>  IF %ERRORLEVEL% gtr 0 GOTO ExitError</p>
<p>  ECHO &#8220;Load data into %table% complete successfully&#8221;
</p>
]]></content:encoded>
			<wfw:commentRSS>http://occex.com/?feed=rss2&amp;p=69071</wfw:commentRSS>
		</item>
		<item>
		<title>Oracle 10g how to change default date time display</title>
		<link>http://occex.com/?p=69070</link>
		<comments>http://occex.com/?p=69070#comments</comments>
		<pubDate>Wed, 25 Aug 2010 06:21:41 +0000</pubDate>
		<dc:creator>techguru</dc:creator>
		
	<category>Database</category>
	<category>Oracle</category>
		<guid isPermaLink="false">http://occex.com/?p=69070</guid>
		<description><![CDATA[ 
change system wide
alter system set NLS_DATE_FORMAT=&#8217;DD-Mon-YYYY HH24:MI:SS&#8217;
change session 
alter session set NLS_DATE_FORMAT=&#8217;DD-Mon-YYYY HH24:MI:SS&#8217;

]]></description>
			<content:encoded><![CDATA[<p> </p>
<p>change system wide</p>
<p>alter system set NLS_DATE_FORMAT=&#8217;DD-Mon-YYYY HH24:MI:SS&#8217;</p>
<p>change session </p>
<p>alter session set NLS_DATE_FORMAT=&#8217;DD-Mon-YYYY HH24:MI:SS&#8217;
</p>
]]></content:encoded>
			<wfw:commentRSS>http://occex.com/?feed=rss2&amp;p=69070</wfw:commentRSS>
		</item>
	</channel>
</rss>
