<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.1" -->
<rss version="0.92">
<channel>
	<title>CJ's Tech Notes</title>
	<link>http://occex.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 07 Sep 2010 11:15:31 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Oracle 10g how to check current session default schema?</title>
		<description>select  sys_context( 'userenv', 'current_schema' ) from dual; </description>
		<link>http://occex.com/?p=69081</link>
			</item>
	<item>
		<title>How to alert another session&#8217;s trace setting?</title>
		<description>select sid, serial#, program, machine from v$session where program like 'My_Program_Name%';
exec dbms_system.set_sql_trace_in_session(10 /* sid */,20 /* serial# */,true); </description>
		<link>http://occex.com/?p=69080</link>
			</item>
	<item>
		<title>oracle 10g data pump quick example</title>
		<description>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>
		<link>http://occex.com/?p=69079</link>
			</item>
	<item>
		<title>Createing web service interface from a wsdl</title>
		<description>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>
		<link>http://occex.com/?p=69078</link>
			</item>
	<item>
		<title>checking constraints on the columns of a oracle table</title>
		<description>SELECT b.table_name, b.column_name
FROM SYS.ALL_CONSTRAINTS S , SYS.ALL_CONS_COLUMNS B
WHERE S.OWNER=TEST' AND S.TABLE_NAME='ACCOUNT'
 AND S.CONSTRAINT_NAME=B.CONSTRAINT_NAME </description>
		<link>http://occex.com/?p=69077</link>
			</item>
	<item>
		<title>what is the oracle equivalent for datediff in sql sever?</title>
		<description>Floor(sysdate - to_date('100825','yymmdd'))=0 </description>
		<link>http://occex.com/?p=69076</link>
			</item>
	<item>
		<title>VMware admin</title>
		<description>ou can decide to remove this software from your system at any time by invoking the following command: "rpm -e VMware-server". instead of puting in the whole package name, just put in VMware-server  in order to remove the vm ware from your box.

 </description>
		<link>http://occex.com/?p=69075</link>
			</item>
	<item>
		<title>Business objects how to call web service to create a report instance</title>
		<description>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>
		<link>http://occex.com/?p=69072</link>
			</item>
	<item>
		<title>Bat command how to do number compare</title>
		<description>  IF %ERRORLEVEL% gtr 0 GOTO ExitError

  ECHO "Load data into %table% complete successfully" </description>
		<link>http://occex.com/?p=69071</link>
			</item>
	<item>
		<title>Oracle 10g how to change default date time display</title>
		<description> 

change system wide

alter system set NLS_DATE_FORMAT='DD-Mon-YYYY HH24:MI:SS'

change session 

alter session set NLS_DATE_FORMAT='DD-Mon-YYYY HH24:MI:SS' </description>
		<link>http://occex.com/?p=69070</link>
			</item>
</channel>
</rss>
