<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-31087744</id><updated>2011-11-28T06:23:18.370+05:30</updated><category term='ORACLE Application Patching'/><category term='EXCEPTION_ACCESS_VIOLATION'/><category term='unexpected exception'/><category term='Autoconfig and Context File'/><category term='ORACLE Jinitiator'/><category term='Workflow Mailer component status'/><category term='COMMAND LINE CONCURRENT PROGRAM SUBMISSION.'/><category term='I.E. 7'/><category term='FNDCPASS ALLORACLE'/><category term='Temp and Undo Usage'/><title type='text'>ORACLE - Database, Applications, and Tools</title><subtitle type='html'>The statements expressed are my own and are not of any Organization or Body for which i work for or represent.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>27</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-31087744.post-9028717842149290355</id><published>2008-06-06T04:48:00.001+05:30</published><updated>2008-06-06T04:49:56.005+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Autoconfig and Context File'/><title type='text'></title><content type='html'>&lt;strong&gt;Ebiz Configuraiton with Autoconfig and Context File. &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Application context it can be created by executing the following script &lt;br /&gt;This script will evaluate the environment in order to generate the context file.&lt;br /&gt;&lt;em&gt;$ ./$AD_TOP/bin/adbldxml.sh &lt;/em&gt;&lt;br /&gt;Take backup of your current  context file if you have any before you execute this script. &lt;br /&gt;&lt;br /&gt;You can edit context file.&lt;br /&gt;• Using editcontext&lt;br /&gt;• Using OAM&lt;br /&gt;• Using a standard text editor (vi) [ for experts only ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If you want to revert back an adconfig.sh  you need to execute the $APPL_TOP/admin/$CONTEXT_NAME/out/MMDDhhmm/restore.sh&lt;br /&gt;script and its counterpart on the database server is in $ORACLE_HOME/appsutil/out/$CONTEXT_NAME/MMDDhhmm directory&lt;br /&gt;MM for month, DD for date , hh is hour, and mm is minute of autocongic execution. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Adconfig and Customization : &lt;br /&gt;If you are below  AD minipack version F, &lt;br /&gt;then the  "# Begin customization" and "# End customization"  tags needs to be added to the configuration file.&lt;br /&gt;Customizations can be added by editing the application configuration file with a standard text editor.&lt;br /&gt;&lt;br /&gt;e.g.  adovars.env &lt;br /&gt; &lt;em&gt;# Begin customizations&lt;br /&gt; NAVE_TOP=/pnavei/applmgr/CUSTOM/xbol/12.0.0&lt;br /&gt; export NAVE_TOP&lt;br /&gt; # End customizations&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;The adconfig utility, when executed, will keep customizations that are marked with in customization tags. &lt;br /&gt;If customization tags are not used, the customizations will not be there in new file.  &lt;br /&gt;&lt;br /&gt;If you are on  later versions of autoconfig,  customizations can be implemented by using  custom templates instead of adding tags.&lt;br /&gt;custom templates must be stored in  $FND_TOP/admin/template/custom&lt;br /&gt;&lt;br /&gt;For E.g &lt;br /&gt;A) Lock file:&lt;br /&gt;1)Open httpd.conf. The first few lines will contain a header file. &lt;br /&gt;That is the name of the template file.&lt;br /&gt;&lt;br /&gt;For httpd.conf, the template file is httpd_conf_1013.tmp (R12) &lt;br /&gt;Template files will be available in $FND_TOP/admin/template&lt;br /&gt;2)Go to $FND_TOP/admin/template. &lt;br /&gt;e.g. /pnavei/applmgr/1200/fnd/12.0.0/admin/template/&lt;br /&gt;&lt;br /&gt;4)Create a dir called "custom" inside it if it is not present.&lt;br /&gt;e.g. /pnavei/applmgr/1200/fnd/12.0.0/admin/template/custom&lt;br /&gt;4)Copy httpd_conf_1013.tmp into custom dir&lt;br /&gt;5)Edit httpd_conf_1013.tmp inside the custom dir and make changes as follows:&lt;br /&gt;&lt;br /&gt;From:&lt;br /&gt;====&lt;br /&gt;LockFile %s_iASconfig_home%/Apache/Apache/logs/httpd.lock&lt;br /&gt;&lt;br /&gt;To:&lt;br /&gt;===&lt;br /&gt;LockFile /tmp/%s_dbSid%_httpd.lock&lt;br /&gt;&lt;br /&gt;Note:&lt;br /&gt;======&lt;br /&gt;As far as possible we need to use place holders and not hard coded values.  If you use hard coded values, it will create problems after refresh.&lt;br /&gt;In the above case %s_dbSid% is a place holder for SID. &lt;br /&gt;&lt;br /&gt;Usually when its a value that you need to change its done in context file, and when its a format change its done in template. &lt;br /&gt;&lt;br /&gt;You can also migrate any customization tags from the manual configuration files to the custom template, using adcustomizer.sh script&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-9028717842149290355?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/9028717842149290355/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=9028717842149290355' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/9028717842149290355'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/9028717842149290355'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/06/ebiz-configuraiton-with-autoconfig-and.html' title=''/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-3599365756259622369</id><published>2008-06-06T02:06:00.002+05:30</published><updated>2008-06-06T04:48:28.244+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Temp and Undo Usage'/><title type='text'></title><content type='html'>&lt;strong&gt;Temp tablespace usage per user &lt;/strong&gt;&lt;br /&gt;==============================&lt;br /&gt;&lt;em&gt;select s.username "USER",s.osuser, u.tablespace "TS" , sum(u.blocks) * &amp;BLOCK_SIZE./1024/1024/1024 GB &lt;br /&gt;from v$session s,v$sort_usage u,v$sqltext x&lt;br /&gt;where s.saddr=u.session_addr and s.sql_address=x.address&lt;br /&gt;group by  s.username, s.osuser, u.tablespace &lt;/em&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Undo Usage &lt;/strong&gt;&lt;br /&gt;==========&lt;br /&gt;&lt;em&gt;select a.TABLESPACE_NAME, a.MAX, b.USED, round((b.USED/a.MAX)*100,2) PCT&lt;br /&gt;from(select TABLESPACE_NAME, (sum(decode(MAXBYTES,0,USER_BYTES,MAXBYTES))/1024/1024/1024) MAX from dba_data_files group by TABLESPACE_NAME) a,&lt;br /&gt;(select tablespace_name, sum(bytes)/1024/1024/1024 USED from dba_undo_extents group by tablespace_name) b&lt;br /&gt;where a.TABLESPACE_NAME=b.TABLESPACE_NAME and b.USED &gt; a.MAX *(80/100); &lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-3599365756259622369?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/3599365756259622369/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=3599365756259622369' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/3599365756259622369'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/3599365756259622369'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/06/temp-tablespace-usage-per-user-select-s.html' title=''/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-4549130205995456612</id><published>2008-03-10T20:41:00.002+05:30</published><updated>2008-03-10T21:27:24.297+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='COMMAND LINE CONCURRENT PROGRAM SUBMISSION.'/><title type='text'></title><content type='html'>&lt;strong&gt;To Submit a concurrent program  from command line &lt;/strong&gt; and check the result we can use CONCSUB utility &lt;br /&gt;&lt;br /&gt;&lt;em&gt;CONCSUB [ORACLE ID] [Responsibility Application Short Name]&lt;br /&gt;[Responsibility Name] [User Name] &lt;br /&gt;[WAIT=[Wait Flag] CONCURRENT [Concurrent Program Application Short Name] [Concurrent Program Name]&lt;br /&gt;[START=Requested Start Date]&lt;br /&gt;[REPEAT_DAYS=Repeat Interval]&lt;br /&gt;[REPEAT_END=Request Resubmission End Date]&lt;br /&gt;[Concurrent Program Arguments [][]...]&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;For Ex. create a script as following :- &lt;br /&gt;&lt;em&gt;$cat con.sh&lt;br /&gt;CONC=`CONCSUB apps/xxxxxx  SYSADMIN 'System Administrator' SYSADMIN WAIT=Y CONCURRENT FND FNDSCURS` &lt;br /&gt;RES=`echo $CONC | grep 'Normal completion'` &lt;br /&gt;if [ $? -ne 0 ] &lt;br /&gt;then &lt;br /&gt;echo "Error" &lt;br /&gt;else &lt;br /&gt;echo "Complete Normal"&lt;br /&gt;fi&lt;br /&gt;echo $CONC &gt; rslt.lst &lt;br /&gt;cat rslt.lst&lt;br /&gt;rm rslt.lst&lt;br /&gt;&lt;br /&gt;$sh con.sh&lt;br /&gt;Complete Normal&lt;br /&gt;Submitted request 1234567890 for CONCURRENT FND FNDSCURS Normal completion&lt;/em&gt;&lt;br /&gt;Or else you can use the following qry. :- &lt;br /&gt;&lt;em&gt;&lt;br /&gt;select REQUEST_ID, &lt;br /&gt;CASE WHEN (PHASE_CODE)  = 'C' THEN 'Completed' &lt;br /&gt;WHEN (PHASE_CODE)  = 'I' THEN 'Inactive' &lt;br /&gt;WHEN (PHASE_CODE)  = 'P' THEN 'Pending' &lt;br /&gt;WHEN (PHASE_CODE)  = 'R' THEN 'Running' &lt;br /&gt;ELSE 'NODATA'&lt;br /&gt;END AS PHASE, &lt;br /&gt;CASE WHEN (STATUS_CODE)  = 'A' THEN 'Waiting' &lt;br /&gt;WHEN (STATUS_CODE)  = 'B' THEN 'Resuming' &lt;br /&gt;WHEN (STATUS_CODE)  = 'C' THEN 'Normal' &lt;br /&gt;WHEN (STATUS_CODE)  = 'D' THEN 'Cancelled' &lt;br /&gt;WHEN (STATUS_CODE)  = 'E' THEN 'Error' &lt;br /&gt;WHEN (STATUS_CODE)  = 'F' THEN 'Scheduled' &lt;br /&gt;WHEN (STATUS_CODE)  = 'G' THEN 'Warning' &lt;br /&gt;WHEN (STATUS_CODE)  = 'H' THEN 'Hold' &lt;br /&gt;WHEN (STATUS_CODE)  = 'I' THEN 'Normal' &lt;br /&gt;WHEN (STATUS_CODE)  = 'M' THEN 'No Manager' &lt;br /&gt;WHEN (STATUS_CODE)  = 'Q' THEN 'Standby' &lt;br /&gt;WHEN (STATUS_CODE)  = 'R' THEN 'Normal' &lt;br /&gt;WHEN (STATUS_CODE)  = 'S' THEN 'Suspended' &lt;br /&gt;WHEN (STATUS_CODE)  = 'T' THEN 'Terminating' &lt;br /&gt;WHEN (STATUS_CODE)  = 'U' THEN 'Disabled' &lt;br /&gt;WHEN (STATUS_CODE)  = 'W' THEN 'Paused' &lt;br /&gt;WHEN (STATUS_CODE)  = 'X' THEN 'Terminated' &lt;br /&gt;WHEN (STATUS_CODE)  = 'Z' THEN 'Waiting' &lt;br /&gt;ELSE 'NODATA'&lt;br /&gt;END AS STATUS&lt;br /&gt;from fnd_concurrent_requests where REQUEST_ID=&amp;REQ_ID;&lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-4549130205995456612?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/4549130205995456612/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=4549130205995456612' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4549130205995456612'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4549130205995456612'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/03/to-submit-conc-program-from-command.html' title=''/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-4971059385388912915</id><published>2008-03-09T05:19:00.003+05:30</published><updated>2008-03-09T05:26:00.654+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='FNDCPASS ALLORACLE'/><title type='text'></title><content type='html'>A new &lt;strong&gt;FNDCPASS &lt;/strong&gt;Utility feature introduced in 11.5.10 RUP 3 allows us to change &lt;br /&gt;ORACLE EBS base product schema passwords with a single command line invocation.&lt;br /&gt;We can have this feature if we are on 11i.ATG_PF.H Rollup 3 or higher or if we have applied &lt;br /&gt;Oracle Critical Patch Update - January 2006. &lt;br /&gt;&lt;br /&gt;Usage &lt;em&gt;FNDCPASS [logon] 0 Y [system/password] ALLORACLE [new_password] &lt;/em&gt;&lt;br /&gt;where &lt;br /&gt;&lt;em&gt;logon&lt;/em&gt; : The Oracle apps username/password. &lt;br /&gt;&lt;em&gt;system/password &lt;/em&gt;: The username and password for the SYSTEM DBA account. &lt;br /&gt;&lt;em&gt;new_password&lt;/em&gt; : The new password. &lt;br /&gt;For example, &lt;br /&gt;&lt;em&gt;FNDCPASS apps/apps 0 Y system/manager ALLORACLE MYPW0RD&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;This change the passwords of all Oracle Application products schema's to MYPW0RD&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-4971059385388912915?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/4971059385388912915/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=4971059385388912915' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4971059385388912915'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4971059385388912915'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/03/new-fndcpass-utility-feature-introduced.html' title=''/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-5755769369130292636</id><published>2008-03-09T05:06:00.003+05:30</published><updated>2008-03-09T05:22:52.524+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Workflow Mailer component status'/><title type='text'></title><content type='html'>&lt;strong&gt;To Find out the Workflow Mailer component status from DATABASE using sqlplus&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;em&gt;select COMPONENT_NAME , STARTUP_MODE, COMPONENT_STATUS &lt;br /&gt;from fnd_svc_components where concurrent_queue_id in (select concurrent_queue_id from fnd_concurrent_queues where concurrent_queue_name like 'WF%') &lt;br /&gt;order by COMPONENT_TYPE, COMPONENT_ID&lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-5755769369130292636?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/5755769369130292636/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=5755769369130292636' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/5755769369130292636'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/5755769369130292636'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/03/to-find-out-workflow-mailer-component.html' title=''/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-5558341787306441928</id><published>2008-03-09T04:59:00.002+05:30</published><updated>2008-03-09T05:24:02.153+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='ORACLE Application Patching'/><title type='text'></title><content type='html'>&lt;strong&gt;Few things ORACLE Application Patching &lt;/strong&gt;&lt;br /&gt;xxx===========xxxxxxxxx===============xxx&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Structure of ORACLE Applications (EBSO ) patches &lt;/strong&gt;&lt;br /&gt;In Applications patches there are usually three patch drivers. &lt;br /&gt;&gt; &lt;em&gt;c[patch number].drv&lt;/em&gt; - which drives the copy actions for the patch and links executables. &lt;br /&gt;&gt;&lt;em&gt; d[patch number].drv&lt;/em&gt; - this drives the database changes, by sql scripts and programs that change the data or objects of the database. &lt;br /&gt;This driver is optional and will be included only if there is some change to the database objects. &lt;br /&gt;&gt; &lt;em&gt;g[patch number].drv&lt;/em&gt; - is the generate driver which generates forms/reports/message files &lt;br /&gt;This driver is optional and will be included only if there is some change to forms/reports/message files &lt;br /&gt;&lt;br /&gt;Most the "next-generation" patches are coming out with three-in-one drivers or called as unified drivers. &lt;br /&gt;&lt;br /&gt;&gt;&lt;em&gt;u[patch number].drv&lt;/em&gt; - no changes but performs functions of all the three drivers &lt;br /&gt;&lt;br /&gt;:) a great help in patch automations. &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Patching Utilities &lt;/strong&gt;&lt;br /&gt;xxx===========xxxxxxxxx===============xxx&lt;br /&gt;In ORACLE Apps patches are applied by using few utilities designed specifically for that purpose. &lt;br /&gt;Couple of them are run from the command line, and few Web-based.&lt;br /&gt;Currently i wish to discuss few utilities. Will try to put in more descriptions in coming posts. &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Command Line Utilities&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;AutoPatch (adpatch)&lt;/strong&gt;&lt;br /&gt;When we have to apply patches to ORACLE Applications, the first word we remember is adpatch, &lt;br /&gt;this is a utility that automates most of the patching tasks for ORACLE Applications. &lt;br /&gt;and it used to apply patches to the Oracle Applications file system or database.&lt;br /&gt;&lt;br /&gt;But Its never used to apply any patches on Technology Components for e.g. ORACLE RDBMS Software, iAS, or Developer Suite tools. &lt;br /&gt;that's done another utility opatch - (will discuss later. ) &lt;br /&gt;&lt;br /&gt;One biggest advantage of adpatch is that its version checking capability .&lt;br /&gt;It ensure that the file with the latest version is used, determined by comparing what is present on file system and what the new patch contains. &lt;br /&gt;A record of the applied patches are stored in database tables. &lt;br /&gt;If there are multiple languages installed,  then autopatch notifies we to apply the nls patch also . &lt;br /&gt;adpatch can check for pre-requisites patches , whether they are applied or not. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Some of the options that can be used to change the standard behavior of adpatch &lt;br /&gt;&lt;br /&gt;hotpatch = apply the patch without setting it in Maintenance mode , kind of online patching. &lt;br /&gt;noprereq = will not check for pre-reqs (as of AD.I.4, by default, patching will not check for pre-reqs, &lt;br /&gt;need to run OAM patching wizard for prereqs)&lt;br /&gt;nodatabaseportion = not  to run the DB portion&lt;br /&gt;nocopyportion= not to execute the copy driver portion&lt;br /&gt;nogenerateportion=not to execute the generate driver portion&lt;br /&gt;nocompiledb= when we wish not to compile the invalid objects after the patch application&lt;br /&gt;noautoconfig = specify autopatch that we do not wish to run autoconfig as a part of the patch  application &lt;br /&gt;nocheckfile= to skip check for already executed exec, SQL, and execution commands (can cause performance overheads ) &lt;br /&gt;nocompilejsp= when we wish not to compile the  the java server pages (jsp) after the patch application &lt;br /&gt;nohidepw = not to hide the passwords from the log file, use this only when you need to debug, and never in prod env. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Running a patch in different modes &lt;br /&gt;we  can apply a patch in TEST mode using adpatch. &lt;br /&gt;when we use  test mode it does not do any changes,  but generates a log file with all the actions it would have performed in actual execution. &lt;br /&gt;$adpatch apply=n &lt;br /&gt;&lt;br /&gt;Pre-install Mode&lt;br /&gt;we  can also apply a patch in pre install mode, normally during an upgrade or consolidated update.&lt;br /&gt;used only when we need to upgrade the files be for actual update, it checks for files versions, file copy (copies all files to APPL_TOP), relink fnd and ad executables,&lt;br /&gt;saves the patch history info to the file system. &lt;br /&gt;&lt;br /&gt;$adpatch preinstall=y&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A Sample command (UNIX)  would be &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;em&gt;adpatch driver=u*******.drv logfile=u*******_`echo $TWO_TASK`_`date '+%d%B%Y_%H_%M_%S'`.log options=hotpatch, noprereq,novalidate,nodatabaseportion&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;You can use default file also to make application of multiple patches easier. &lt;br /&gt;Will discuss this at a later point of time. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;xxx===========xxxxxxxxx===============xxx&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;AD Merge Patch (admrgpch)&lt;/strong&gt;&lt;br /&gt;When we apply many patches separately, we must perform patching tasks multiple&lt;br /&gt;times. For example, for every individual patch there may be same generate or autoconfig processes. &lt;br /&gt;AD Merge Patch merges multiple patches into a single patch so that the required patching tasks &lt;br /&gt;and processes are performed only once, and if two multiple patches contains different version of the same file admrgpch&lt;br /&gt;will ensure that only the latest version is included in the new file. &lt;br /&gt;&lt;br /&gt;Usage :- &lt;em&gt;admrgpch &lt;source directory&gt; &lt;destination directory&gt;&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;&gt; Merge patches without unzipping the automated release updates (ARUs)&lt;br /&gt;&lt;em&gt;admgrpch -s &lt;source directory&gt; -d &lt;destination directory&gt; -merge_name &lt;name&gt; -manifest &lt;filename&gt;&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;The admrgpch supports both split patch driver files and unified patch driver files.&lt;br /&gt;If all the source patches have split driver files, the merged patch has split driver files. &lt;br /&gt;If any of the source patches has a unified driver file, the merged patch has a unified driver file.&lt;br /&gt;The  admrgpch copies the latest versions of the files required by the merged patches into the destination directory from target. &lt;br /&gt;When merging patches, the source and destination directories cannot be child or parent directories of each other.&lt;br /&gt;It is recommended to run admrgpch from the parent directory of the source directory, and the destination directory should also be located in the same parent directory.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;xxx===========xxxxxxxxx===============xxx&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Patch Application Assistant (admsi.pl)&lt;/strong&gt;&lt;br /&gt;There can be manual steps during patching, though most of them are automated with adpatch. &lt;br /&gt;Oracle Patch Application Assistant (PAA) helps users  to track and perform these manual steps during patching, &lt;br /&gt;and brings consistency in the format of manual steps. Readme contains manual steps as generic instructions for all systems.&lt;br /&gt;For instructions specific to our system, the readme file instructs we to use PAA. &lt;br /&gt;&lt;br /&gt;For merged patches, PAA automatically merges the contents of all the patches readme files, &lt;br /&gt;and then generates a custom set of instructions, specific to our installation, that consolidates, &lt;br /&gt;and displays the relevant manual steps for all the patches we want to apply. &lt;br /&gt;&lt;br /&gt;After successfully performing each manual step, we can record that step as completed. &lt;br /&gt;When applying patches in the future, refer to this record to see which manual steps we have already completed.&lt;br /&gt;Unless specified otherwise, we do not have to repeat the manual steps we have previously completed.&lt;br /&gt;&lt;br /&gt;xxx===========xxxxxxxxx===============xxx&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Web-based Patching Utilities&lt;br /&gt;Utilities are based on  Oracle Applications Manager (OAM).&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Applied Patches&lt;/strong&gt;&lt;br /&gt;The Applied Patches utility enables us to query the patch history database for a list of patches that have been applied to our system.&lt;br /&gt;From the Applied Patches interface, we can view patch information such as patch number and type, driver file name, platform and version, &lt;br /&gt;location of applied patch, patch content and language, files changed or copied, bug fixes in each driver file, whether patch application was&lt;br /&gt;successful, and timing information.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;File History&lt;/strong&gt;&lt;br /&gt;The File History utility enables the viewing of files that have been updated by a patch. we can view file history information such as:&lt;br /&gt;APPL_TOP on which the file resides, directory in which the file resides, product family that owns the file, name of the file,&lt;br /&gt;version of the file, date on which the file was changed, patch details report, and action summary report for the updates to the file.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Patch Wizard&lt;/strong&gt;&lt;br /&gt;An important job for APPS DBA is to keep knowledge of new patches that are recommended, and analyze their effects before we actually apply them. &lt;br /&gt;With Patch Wizard utility, we can determine patches that have not been applied to our system, but that are recommended for our system,&lt;br /&gt;and also  gives us a preview about the effects of applying a patch on our system. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Timing Reports&lt;/strong&gt;&lt;br /&gt;Use the Timing Reports utility to monitor a job that is running or to view statistics of completed AutoPatch and AD Administration maintenance sessions. &lt;br /&gt;we can view information such as task name, time taken to complete the task, start time and end time.&lt;br /&gt;Mainly used to calculate the downtime required for production.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-5558341787306441928?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/5558341787306441928/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=5558341787306441928' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/5558341787306441928'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/5558341787306441928'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/03/few-things-oracle-application-patching.html' title=''/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-3371599532275532043</id><published>2008-01-30T11:10:00.001+05:30</published><updated>2009-11-21T06:52:56.793+05:30</updated><title type='text'>Download Oracle JDeveloper 11g Technology Preview 3</title><content type='html'>&lt;img width="1" height="1" border="0" alt="" src="http://link.p0.com/1x1.dyn?1BjytPcneKS2g53p1n5y=0" width=1 height=1  /&gt; &lt;style type="text/css"&gt; #bodylink {font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color: #000000;}   A:visited.bodylink {color:#999999;  text-decoration:underline;}   A:hover.bodylink {color:#FF0000; text-decoration:underline;}  A:link.bodylink {color:black; text-decoration:underline;} #bodycopy { color: #000000; font-size: 12px; font-family: Arial, Helvetica, sans-serif; line-height: 14px; text-decoration: none; visited: #000000 } #parahead1 {font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight: bold; color: #000000; text-decoration: none; visited: #000000;} #parahead2 {font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight: bold; color: #666666; text-decoration: none; visited: #666666;} #boldbodycopy {font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; font-weight: bold; color: #000000 ; text-decoration: none; visited: #000000;} A:visited.boldbodycopy { color:#000000;  text-decoration:none;}  A:hover.boldbodycopy {color:#FF0000; text-decoration:underline;}     A:link.boldbodycopy { color:black;  text-decoration:none;} #legalese {font-family: Arial, Helvetica, sans-serif; font-size: 10px; color: #000000; text-decoration: none; visited: #000000;} #ITALICiBodycopy {font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; font-style: italic; color: #000000 ; text-decoration: none; visited: #000000;} #italicbodycopy {font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; font-style: italic; color: #000000 ; text-decoration: none; visited: #000000;}   &lt;/style&gt;         &lt;table width="700" cellspacing="0" cellpadding="5" border="0"&gt;             &lt;tbody&gt;                 &lt;tr&gt;                     &lt;td colspan="2"&gt;                     &lt;table width="700" cellspacing="0" cellpadding="3" border="0"&gt;                         &lt;tbody&gt;                             &lt;tr&gt;                                 &lt;td width="100%" valign="top" align="left" colspan="2"&gt;                                 &lt;p&gt;&lt;img border="0" src="http://www.oracle.com/technology/tech/java/newsletter/java03.gif" alt="The Oracle Java Newsletter" /&gt;&lt;br /&gt;                                 &lt;span id="bodycopy"&gt;&lt;br /&gt;                                 The Monthly Newsletter for the Oracle Java Developer&lt;/span&gt;&lt;/p&gt;                                 &lt;table width="480" cellspacing="0" cellpadding="0" border="0"&gt;                                     &lt;tbody&gt;                                         &lt;tr&gt;                                             &lt;td valign="top"&gt;                                             &lt;table width="100%" cellspacing="1" cellpadding="1"&gt;                                                 &lt;tbody&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&amp;nbsp;&lt;/td&gt;                                                         &lt;td valign="top"&gt;                                                         &lt;p&gt;&lt;span id="parahead1"&gt;This Month's Featured Topic: &lt;br /&gt;                                                         The 11&lt;em&gt;g&lt;/em&gt; Fusion Development Platform&lt;/span&gt;&lt;/p&gt;                                                         &lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&amp;nbsp;&lt;/td&gt;                                                         &lt;td valign="top"&gt;                                                         &lt;p&gt;&lt;span id="bodycopy"&gt;Just in time for the new year, Oracle released the first technology preview of the Fusion development platform combining Java EE, SOA and WebCenter development in one package. 						Get your hands on this new version and see the future of application development. &lt;/span&gt;&lt;/p&gt;                                                         &lt;ul id="bodycopy"&gt;                                                             &lt;li&gt;&lt;a target="_blank" href="http://www.oracle.com/go/?&amp;Src=1952635&amp;Act=82&amp;SC=msgid=sd1na" id="bodylink"&gt;Download JDeveloper 11&lt;em&gt;g&lt;/em&gt; Technology Preview 3 (including SOA and WebCenter)&lt;/a&gt;&lt;/li&gt;                                                             &lt;li&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/products/jdev/11/index.html?msgid=sd1na" id="bodylink"&gt;Learn more about what's new with JDeveloper 11&lt;em&gt;g&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;                                                             &lt;li&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/products/ias/bpel/techpreview/index.html?msgid=sd1na" id="bodylink"&gt;Learn more about what's new with SOA and SCA&lt;/a&gt;&lt;/li&gt;                                                             &lt;li&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/products/webcenter/owcs_r11_tech_preview1.html?msgid=sd1na" id="bodylink"&gt;Learn more about what's new with WebCenter&lt;/a&gt;&lt;/li&gt;                                                             &lt;li&gt;&lt;a target="_blank" href="http://www.oracle.com/goto/newsletters/javadev/0108/forum_381.html?msgid=sd1na" id="bodylink"&gt;Question? - visit the 11&lt;em&gt;g&lt;/em&gt; Technology Preview Discussion Forum&lt;/a&gt;&lt;/li&gt;                                                         &lt;/ul&gt;                                                         &lt;img width="100%" height="10" alt="" src="http://www.oracle.com/technology/images/bullets_and_symbols/divider.gif" /&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td colspan="2"&gt;&amp;nbsp;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" height="2"&gt;&lt;img width="10" height="10" alt="" src="http://oracleimg.com/admin/images/otn/r_arrow.gif" /&gt;&lt;/td&gt;                                                         &lt;td height="19" colspan="2"&gt;&lt;span id="bodycopy"&gt;&lt;strong&gt;New Technical Resources&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/catalog_176.html?msgid=sd1na" target="_blank"&gt;Download presentations from OOW and Oracle Develop Conferences&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/technology/obe/obe11jdev/11/index.html?msgid=sd1na" target="_blank"&gt;New tutorials for JDeveloper 11&lt;em&gt;g&lt;/em&gt;&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/technology/products/jdev/howtos/1013/protectedws/access_protected_web_services_from_adf.htm?msgid=sd1na" target="_blank"&gt;Accessing Protected Java EE Web Services from ADF&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/technology/products/jdev/11/how-tos/dvt_how_tos/adf_dvt_graph_howto.html?msgid=sd1na" target="_blank"&gt;Working with the Oracle ADF Data Visualizations Graph&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/technology/products/jdev/11/how-tos/dvt_how_tos/adf_dvt_gauge_howto.html?msgid=sd1na" target="_blank"&gt;Working with the Oracle ADF Data Visualizations Gauge&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/casarez.html?msgid=sd1na" target="_blank"&gt;Podcast - Web 2.0 in the Enterprise&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/technology/oramag/oracle/07-nov/o67frame.html?msgid=sd1na" target="_blank"&gt;Enhanced Calculation and Validation in ADF 11&lt;em&gt;g&lt;/em&gt;&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/technology/pub/articles/muir-designer.html?msgid=sd1na" target="_blank"&gt;Using PL/SQL Table API with ADF Business Components&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/technology/oramag/oracle/08-jan/o18frame.html?msgid=sd1na" target="_blank"&gt;Create data-centric Web services for SOA development in minutes with ADF 11&lt;em&gt;g&lt;/em&gt;&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td colspan="2"&gt;&amp;nbsp;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" height="2"&gt;&lt;img width="10" height="10" alt="" src="http://oracleimg.com/admin/images/otn/r_arrow.gif" /&gt;&lt;/td&gt;                                                         &lt;td height="19" colspan="2"&gt;&lt;span id="bodycopy"&gt;&lt;strong&gt;Upcoming Events&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/masterclass.html?msgid=sd1na" target="_blank"&gt;AUSOUG &amp;amp; OAUG JDeveloper Masterclass - a series around Australia and New Zealand&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/technology/events/otn-developer-day/index.html?msgid=sd1na" target="_blank"&gt;OTN Developer Days - Burlington, Reston, Chicago, Austin, Toronto&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/technology/products/forms/forms_events.html?msgid=sd1na" target="_blank"&gt;Oracle Forms Modernization Events - various locations in Europe&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/javadev08.html?msgid=sd1na" target="_blank"&gt;COLLABORATE 08 &amp;ndash; IOUG Forum - April in Denver&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/technology/events/index.html?msgid=sd1na" target="_blank"&gt;OTN's Event Calendar&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td colspan="2"&gt;&amp;nbsp;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" height="2"&gt;&lt;img width="10" height="10" alt="" src="http://oracleimg.com/admin/images/otn/r_arrow.gif" /&gt;&lt;/td&gt;                                                         &lt;td height="19" colspan="2"&gt;&lt;span id="bodycopy"&gt;&lt;strong&gt;From the Blogsphere&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/nimphius_excel.html?msgid=sd1na" target="_blank"&gt;ADF Faces RC: How-to export table data to Excel?&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/goto/newsletters/javadev/0108/nimphius_nestedregion.html?msgid=sd1na" id="bodylink"&gt; ADF Faces RC: Execute an action or force navigation in a containing region from a nested region&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/biemond_security.html?msgid=sd1na" target="_blank"&gt;ADF security in action&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/blog_2747.html?msgid=sd1na" target="_blank"&gt;Accessing Google Calendar from Oracle ADF Application - Displaying Events in Gantt Chart &lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/blog_2763.html?msgid=sd1na" target="_blank"&gt;Client Side programming in ADF Faces Rich Client Components&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/kuba.html?msgid=sd1na" target="_blank"&gt; File Download Action Listener and Rich Text Editor - new components in ADF Rich Client&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/wordpress.html?msgid=sd1na" target="_blank"&gt;Using a custom login module in JDeveloper 11&lt;em&gt;g&lt;/em&gt;&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/oracle_wordpress.html?msgid=sd1na" target="_blank"&gt;Oracle BI Publisher - Creating Applications using JDeveloper 11g and Web Service APIs&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/blogs_head_243.html?msgid=sd1na" target="_blank"&gt;Speeding Up JDeveloper 10.1.3&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/radio_879.html?msgid=sd1na" target="_blank"&gt;Clarifying Two Distinct Kinds of Polymorphic View Objects&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/beautiful_waste.html?msgid=sd1na" target="_blank"&gt;Building a Web Service from a XSD using JDeveloper&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/kingsfleet.html?msgid=sd1na" target="_blank"&gt;Client / Proxy for an Asynchronous Web Service using JDeveloper 11 TP 3&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/susanduncan.html?msgid=sd1na" target="_blank"&gt;At what level should I version my source code?&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/blogs_608.html?msgid=sd1na" target="_blank"&gt; Regular Expression Validation in JSF&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/andrejusb.html?msgid=sd1na" target="_blank"&gt;JDev/ADF sample - Complex List-Of-Values (LOV) in Oracle ADF&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td width="8" valign="top" align="center"&gt;&lt;font size="2" face="Arial"&gt;&amp;bull;&lt;/font&gt;&lt;/td&gt;                                                         &lt;td valign="top"&gt;&lt;a id="bodylink" href="http://www.oracle.com/goto/newsletters/javadev/0108/blogs_oracle.html?msgid=sd1na" target="_blank"&gt;More Oracle Related Blogs&lt;/a&gt;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td colspan="2"&gt;&amp;nbsp;&lt;/td&gt;                                                     &lt;/tr&gt;                                                     &lt;tr&gt;                                                         &lt;td colspan="2"&gt;&amp;nbsp;&lt;/td&gt;                                                     &lt;/tr&gt;                                                 &lt;/tbody&gt;                                             &lt;/table&gt;                                             &lt;br clear="all" /&gt;                                             &lt;br /&gt;                                             &lt;img width="480" height="1" border="0" alt="" src="http://www.oracle.com/newsletters/updates/images/footer_line.gif" /&gt;&lt;br /&gt;                                             &lt;span id="legalese"&gt;Copyright &amp;copy; 2008 Oracle. All Rights Reserved.&lt;/span&gt;                                             &lt;p id="legalese"&gt;Oracle Corporation - Worldwide Headquarters&lt;br /&gt;                                             500 Oracle Parkway, Redwood Shores, CA 94065 U.S.A.&lt;/p&gt;                                             &lt;p id="legalese"&gt;To update your profile, or to stop receiving customized e-mail about Oracle products and services, please click here:&lt;br /&gt;                                             &lt;a href="http://profile.oracle.com/jsp/reg/register.jsp?src=135736&amp;act=74" target="_blank" id="bodylink"&gt;&lt;span id="legalese"&gt;&lt;u&gt;http://profile.oracle.com/jsp/reg/register.jsp?src=135736&amp;amp;act=74&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;                                             &lt;p id="legalese"&gt;If you want to completely unsubsc03:31:09 PM Tue, Jan 22 2008ribe from any e-mail communication from Oracle, please send an e-mail to:         &lt;a href="mailto:unsubscribe@oracle-mail.com" target="_blank" id="bodylink"&gt;&lt;span id="legalese"&gt;&lt;u&gt;unsubscribe@oracle-mail.com&lt;/u&gt;&lt;/span&gt;&lt;/a&gt; with the following subject line: REMOVE YOUR.NAME@YOURDOMAIN.COM&lt;/p&gt;                                             &lt;/td&gt;                                         &lt;/tr&gt;                                     &lt;/tbody&gt;                                 &lt;/table&gt;                                 &lt;/td&gt;                                 &lt;td valign="top"&gt;&lt;img width="20" border="0" src="http://oracleimg.com/admin/images/ocom/hp_spacer.gif" alt="" /&gt;&lt;/td&gt;                                 &lt;td width="175" valign="top"&gt;                                 &lt;table width="175" cellspacing="3" cellpadding="3" border="0"&gt;                                     &lt;tbody&gt;                                         &lt;tr&gt;                                             &lt;td valign="top" colspan="2"&gt;                                             &lt;p&gt;&lt;/p&gt;                                             &lt;center&gt; &lt;a href="http://www.oracle.com/technology/index.html?msgid=sd1na"&gt; &lt;img width="144" height="36" border="0" align="middle" src="http://www.oracle.com/admin/images/otn/otn_logo_small.gif" alt="Oracle Corporation" /&gt; &lt;/a&gt; &lt;/center&gt;                    &lt;br /&gt;                                             &lt;span id="ITALICiBodycopy"&gt; January 2008                   &lt;/span&gt;                                             &lt;p&gt;&lt;/p&gt;                                             &lt;/td&gt;                                         &lt;/tr&gt;                                     &lt;/tbody&gt;                                 &lt;/table&gt;                                 &lt;div align="center"&gt;                                 &lt;table&gt;                                     &lt;tbody&gt;                                         &lt;tr&gt;                                             &lt;td&gt;&lt;a id="bodylink" href="http://www.oracle.com/technology/software/index.html?msgid=sd1na"&gt;&lt;img border="0" src="http://oracleimg.com/admin/images/ocom/free_download_140x40.gif" alt="Free Software Download" /&gt; &lt;/a&gt;&lt;/td&gt;                                         &lt;/tr&gt;                                         &lt;tr&gt;                                             &lt;td&gt;&lt;a id="bodylink" href="http://www.oracle.com/technology/software/index.html?msgid=sd1na"&gt;Download&lt;/a&gt;&lt;span id="bodycopy"&gt; Oracle Products&lt;/span&gt;&lt;/td&gt;                                         &lt;/tr&gt;                                     &lt;/tbody&gt;                                 &lt;/table&gt;                                 &lt;/div&gt;                                 &lt;br clear="all" /&gt;                                 &lt;table width="175" cellspacing="3" cellpadding="3" border="0" bgcolor="#ffffff"&gt;                                     &lt;tbody&gt;                                         &lt;tr&gt;                                             &lt;td valign="top" colspan="2"&gt;&lt;img align="left" src="http://www.oracle.com/technology/homepageimages/xml_small.gif" alt="RSS" /&gt; &lt;span id="italicbodycopy"&gt;Get Java news updates with the &lt;a target="_blank" href="http://www.oracle.com/technology/products/jdev/temp/whatisrss.html?msgid=sd1na" id="bodylink"&gt;JDeveloper RSS feed&lt;/a&gt;.&lt;/span&gt;&lt;/td&gt;                                         &lt;/tr&gt;                                     &lt;/tbody&gt;                                 &lt;/table&gt;                                 &lt;br /&gt;                                 &lt;table&gt;                                     &lt;tbody&gt;                                         &lt;tr&gt;                                             &lt;td valign="top" colspan="2"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/products/jdev/java_newsletter.html?msgid=sd1na" id="bodylink"&gt; &lt;strong&gt;Subscribe&lt;/strong&gt; to this newsletter &lt;/a&gt;&lt;/td&gt;                                         &lt;/tr&gt;                                     &lt;/tbody&gt;                                 &lt;/table&gt;                                 &lt;br clear="all" /&gt;                                 &lt;table width="175" cellspacing="0" cellpadding="1" border="0" bgcolor="#ffffff"&gt;                                     &lt;tbody&gt;                                         &lt;tr&gt;                                             &lt;td&gt;                                             &lt;table width="100%" cellspacing="0" cellpadding="0" border="0" bgcolor="#ffffff"&gt;                                                 &lt;tbody&gt;                                                     &lt;tr&gt;                                                         &lt;td&gt;                                                         &lt;table width="100%" cellspacing="3" cellpadding="3" border="0"&gt;                                                             &lt;tbody&gt;                                                                 &lt;tr&gt;                                                                     &lt;td valign="top" height="177"&gt;                                                                     &lt;table width="175" cellspacing="0" cellpadding="0" bgcolor="#eeeeee"&gt;                                                                         &lt;tbody&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="3"&gt;&amp;nbsp;&lt;/td&gt;                                                                                 &lt;td valign="top" colspan="3" id="td1"&gt;&lt;strong id="parahead2"&gt; Java Resources &lt;/strong&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/products/jdev/index.html?msgid=sd1na" id="bodylink"&gt; JDeveloper homepage &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/tech/java/oc4j/index.html?msgid=sd1na" id="bodylink"&gt; OC4J homepage &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/products/ias/toplink/index.html?msgid=sd1na" id="bodylink"&gt; TopLink homepage &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/products/adf/index.html?msgid=sd1na" id="bodylink"&gt; ADF homepage &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/products/webcenter/index.html?msgid=sd1na" id="bodylink"&gt; WebCenter homepage &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/products/ias/bpel/index.html?msgid=sd1na" id="bodylink"&gt; BPEL homepage &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/products/coherence/index.html?msgid=sd1na" id="bodylink"&gt; Coherence homepage &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/tech/java/ejb30.html?msgid=sd1na" id="bodylink"&gt; EJB 3.0 homepage &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/tech/java/jsf.html?msgid=sd1na" id="bodylink"&gt; JSF homepage &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/tech/java/ajax.html?msgid=sd1na" id="bodylink"&gt; Ajax homepage &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/tech/java/spring.html?msgid=sd1na" id="bodylink"&gt; Spring homepage &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/products/jdev/collateral/4gl/formsdesignerj2ee.html?msgid=sd1na" id="bodylink"&gt; Java EE for Forms Developers &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/tech/java/sqlj_jdbc/index.html?msgid=sd1na" id="bodylink"&gt; JDBC homepage &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://forums.oracle.com/forums/index.jsp?cat=1&amp;SC=msgid=sd1na" id="bodylink"&gt; Discussion Forum &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/goto/newsletters/javadev/0108/blogs_oracle.html?msgid=sd1na" id="bodylink"&gt;Oracle Blogs &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/tech/java/index.html?msgid=sd1na" id="bodylink"&gt; OTN Java Center &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                             &lt;tr&gt;                                                                                 &lt;td width="9" valign="middle" align="center"&gt;&amp;middot;&lt;/td&gt;                                                                                 &lt;td valign="top"&gt;&lt;a target="_blank" href="mailto:javanews_us@oracle.com" id="bodylink"&gt; Contact Us &lt;/a&gt;&lt;/td&gt;                                                                             &lt;/tr&gt;                                                                         &lt;/tbody&gt;                                                                     &lt;/table&gt;                                                                     &lt;img width="8" height="8" alt="" src="http://www.oracle.com/newsletters/updates/images/spacer.gif" /&gt;                                                                     &lt;table width="175" cellspacing="3" cellpadding="3" border="0" bgcolor="#ffffff"&gt;                                                                     &lt;/table&gt;                                                                     &lt;/td&gt;                                                                 &lt;/tr&gt;                                                             &lt;/tbody&gt;                                                         &lt;/table&gt;                                                         &lt;/td&gt;                                                     &lt;/tr&gt;                                                 &lt;/tbody&gt;                                             &lt;/table&gt;                                             &lt;/td&gt;                                         &lt;/tr&gt;                                     &lt;/tbody&gt;                                 &lt;/table&gt;                                 &lt;table width="175" cellspacing="3" cellpadding="3" border="0" bgcolor="#ffffff"&gt;                                     &lt;tbody&gt;                                         &lt;tr&gt;                                             &lt;td valign="top" colspan="2"&gt;                                             &lt;p&gt;&lt;a target="_blank" href="http://www.oracle.com/technology/tech/java/newsletter/archive.html?msgid=sd1na" id="bodylink"&gt;&lt;strong&gt;Read&lt;/strong&gt; Past Issues&lt;/a&gt;&lt;/p&gt;                                             &lt;/td&gt;                                         &lt;/tr&gt;                                     &lt;/tbody&gt;                                 &lt;/table&gt;                                 &lt;/td&gt;                             &lt;/tr&gt;                         &lt;/tbody&gt;                     &lt;/table&gt;                     &lt;/td&gt;                 &lt;/tr&gt;             &lt;/tbody&gt;         &lt;/table&gt;     &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-3371599532275532043?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/3371599532275532043/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=3371599532275532043' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/3371599532275532043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/3371599532275532043'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/download-oracle-jdeveloper-11g.html' title='Download Oracle JDeveloper 11g Technology Preview 3'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-4940621338459917395</id><published>2008-01-30T00:07:00.001+05:30</published><updated>2009-11-21T06:52:56.798+05:30</updated><title type='text'>New IT Download: Comprehensive automated software testing</title><content type='html'>Today, access our featured download&lt;p&gt;&lt;a href="http://go.techtarget.com/r/2965267/6582435"&gt;http://go.techtarget.com/r/2965267/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;br&gt;PRODUCT: TestComplete Enterprise Edition v6.10 &lt;br&gt;COMPANY: AutomatedQA&lt;br&gt;TARGET USER: QA Tester/Developer&lt;p&gt; TERMS OF TRIAL LICENSE:  Fully functional 30 day trial limited to 2&lt;br&gt;units of 500 lines each.   &lt;br&gt;CLICK HERE TO TRY IT OUT:&lt;p&gt;&lt;a href="http://go.techtarget.com/r/2965268/6582435"&gt;http://go.techtarget.com/r/2965268/6582435&lt;/a&gt;&lt;p&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;br&gt;ABOUT THIS FEATURED DOWNLOAD SPONSORED BY:  AutomatedQA&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;br&gt;IT Download Description: Automated software testing plays a vital&lt;br&gt;role in the development of many software projects. Organizations&lt;br&gt;which do not rely upon automated testing processes must often expel&lt;br&gt;extensive development efforts, overrunning both allotted time and&lt;br&gt;budget. Discover how to implement comprehensive software testing&lt;br&gt;strategies to maximize the return on your software projects.&lt;p&gt;This IT download, AutomatedQA&amp;#39;s TestComplete, is a comprehensive&lt;br&gt;solution for the automation of software testing. TestComplete allows&lt;br&gt;developers to automate functional, regression, unit, distributed and&lt;br&gt;HTTP performance testing. It represents a programmatic way to create&lt;br&gt;robust automated software testing projects in any of five&lt;br&gt;object-oriented scripting languages. It includes built-in&lt;br&gt;data-driven, white-box testing and robust test management and&lt;br&gt;supports testing of Win32, .Net, Java and Web applications on all&lt;br&gt;versions of Windows.&lt;p&gt;Download Size: 71MB&lt;p&gt;Click here to try it out:&lt;p&gt;&lt;a href="http://go.techtarget.com/r/2965269/6582435"&gt;http://go.techtarget.com/r/2965269/6582435&lt;/a&gt;&lt;p&gt;___________________________________________________________________&lt;br&gt;ABOUT THIS E-NEWSLETTER&lt;br&gt;This e-newsletter is published by SearchSOA.com, a targeted Web site&lt;br&gt;from TechTarget, the IT Media ROI Experts.  TechTarget offers&lt;br&gt;magazines, Web sites, e-newsletters, Webcasts and conferences for&lt;br&gt;enterprise IT professionals. &lt;p&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Software Downloads&amp;quot;:&lt;p&gt;Go to unsubscribe: &lt;a href="http://SearchSOA.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622976&amp;amp;"&gt;http://SearchSOA.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622976&amp;amp;&lt;/a&gt;&lt;p&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;p&gt;Contact us:&lt;br&gt;SearchSOA&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-4940621338459917395?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/4940621338459917395/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=4940621338459917395' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4940621338459917395'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4940621338459917395'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/new-it-download-comprehensive-automated.html' title='New IT Download: Comprehensive automated software testing'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-4249745151650688552</id><published>2008-01-29T23:01:00.001+05:30</published><updated>2009-11-21T06:52:56.803+05:30</updated><title type='text'>Today's News: SaaS provider dumps MySQL and Red Hat for Oracle</title><content type='html'>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;SearchOracle.com: Today&amp;#39;s News&lt;br&gt;January 29, 2008&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;p&gt; &lt;br&gt;FIRM DUMPS MYSQL ON RED HAT FOR ORACLE DATABASE ON ORACLE LINUX&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964826/6582435"&gt;http://go.techtarget.com/r/2964826/6582435&lt;/a&gt;&lt;br&gt;Mark Brunelli, News Editor&lt;p&gt;When ValueCentric found itself facing a rapidly changing business&lt;br&gt;environment and a need for greater information security, it decided&lt;br&gt;to migrate from MySQL-on-Red Hat Enterprise Linux to Oracle Database&lt;br&gt;on Oracle Enterprise Linux. &lt;p&gt;Based in Orchard Park, New York, ValueCentric started off in 2002 as&lt;br&gt;a pharmaceutical technology consulting firm running the MySQL open&lt;br&gt;source database management system (DBMS) and Red Hat Enterprise&lt;br&gt;Linux. But the company quickly realized a need for a&lt;br&gt;Software-as-a-Service -- or on demand -- offering to address a&lt;br&gt;growing industry shift toward fee-for-service business models. &lt;br&gt; &lt;br&gt;ValueCentric has since evolved into a provider of on-demand data&lt;br&gt;management and performance analytics software for the pharmaceutical&lt;br&gt;industry. Company officials say the move to Oracle Database on Oracle&lt;br&gt;Enterprise Linux was crucial to the initiative&amp;#39;s success.&lt;p&gt;FIND OUT WHY VALUECENTRIC CHOSE ORACLE&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964827/6582435"&gt;http://go.techtarget.com/r/2964827/6582435&lt;/a&gt;&lt;p&gt;&lt;p&gt;:::::::::::::::::::::::::: ADVERTISEMENT :::::::::::::::::::::::::::&lt;p&gt;Oracle&lt;p&gt;Sponsored by: SearchOracle.com&lt;p&gt;Oracle 11g data compression: How to implement Oracle 11g data&lt;br&gt;compression to achieve optimal results&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964828/6582435"&gt;http://go.techtarget.com/r/2964828/6582435&lt;/a&gt;&lt;p&gt;Oracle and SQL Server: BFF?&lt;p&gt;&lt;a href="http://go.techtarget.com/r/2964829/6582435"&gt;http://go.techtarget.com/r/2964829/6582435&lt;/a&gt;&lt;p&gt;Oracle as data integrator: Interested in integrating data from other&lt;br&gt;databases?&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964830/6582435"&gt;http://go.techtarget.com/r/2964830/6582435&lt;/a&gt;&lt;p&gt;Hierarchical storage management for database growth&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964831/6582435"&gt;http://go.techtarget.com/r/2964831/6582435&lt;/a&gt;&lt;p&gt;&lt;p&gt;&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;p&gt;&lt;p&gt;:: Oracle&amp;#39;s next channel chief?&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964832/6582435"&gt;http://go.techtarget.com/r/2964832/6582435&lt;/a&gt;&lt;br&gt;Judson Althoff, the executive in charge of Oracle alliances with Dell&lt;br&gt;and CDW, is on the short list to become the company&amp;#39;s new North&lt;br&gt;American channel chief, sources say.&lt;p&gt;READ FULL STORY&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964833/6582435"&gt;http://go.techtarget.com/r/2964833/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;:: CRM continues to disappoint&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964834/6582435"&gt;http://go.techtarget.com/r/2964834/6582435&lt;/a&gt;&lt;br&gt;Business and IT professionals are unhappy with their CRM deployments,&lt;br&gt;particularly marketing, analytics and customer service, according to&lt;br&gt;a new report.&lt;p&gt;READ FULL STORY&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964835/6582435"&gt;http://go.techtarget.com/r/2964835/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;:: Will Sun-MySQL ignite a database price war?&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964836/6582435"&gt;http://go.techtarget.com/r/2964836/6582435&lt;/a&gt;&lt;br&gt;Sun Microsystems&amp;#39; acquisition of MySQL could spark a fight among&lt;br&gt;Oracle, IBM and Microsoft.&lt;p&gt;READ FULL STORY&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964837/6582435"&gt;http://go.techtarget.com/r/2964837/6582435&lt;/a&gt;&lt;p&gt;&lt;p&gt;::::::::::::::::::::: ABOUT THIS E NEWSLETTER ::::::::::::::::::::::&lt;br&gt;This e-newsletter is published by SearchOracle.com, a targeted Web&lt;br&gt;site from TechTarget, The IT Media ROI Experts and events company.&lt;br&gt;TechTarget offers magazines, Web sites, e-newsletters, Webcasts and&lt;br&gt;conferences for enterprise IT professionals. &lt;br&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;_____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Today&amp;#39;s News&amp;quot;:&lt;br&gt; &lt;br&gt;Go to unsubscribe: &lt;a href="http://SearchOracle.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622462&amp;amp;"&gt;http://SearchOracle.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622462&amp;amp;&lt;/a&gt;&lt;p&gt;&lt;br&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;br&gt; &lt;br&gt;Contact us:&lt;br&gt;SearchOracle&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-4249745151650688552?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/4249745151650688552/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=4249745151650688552' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4249745151650688552'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4249745151650688552'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/todays-news-saas-provider-dumps-mysql.html' title='Today&apos;s News: SaaS provider dumps MySQL and Red Hat for Oracle'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-8207609287869423587</id><published>2008-01-29T22:05:00.000+05:30</published><updated>2009-11-21T06:52:56.808+05:30</updated><title type='text'>New Webcast: How to Properly Secure and Eradicate Your Disk Drives</title><content type='html'>Dear SearchStorage.com member,&lt;p&gt;An increasing number of regulatory requirements that govern the&lt;br&gt;protection of personal information are driving increased efforts for&lt;br&gt;companies to protect their information.&lt;p&gt;But one area that has been overlooked by many companies is the&lt;br&gt;security of data stored on disk. Many don&amp;#39;t consider this to be an&lt;br&gt;issue because disk subsystems remain resident in the data center - or&lt;br&gt;do they?&lt;p&gt;This Webcast explains why data security and disk eradication is so&lt;br&gt;important these days. View this presentation to discover best&lt;br&gt;practices and solutions that will assist you in these tasks.&lt;p&gt;====================================================================&lt;br&gt;TITLE:   Who&amp;#39;s Reading Your Old Disk Drives?&lt;br&gt;WHEN:    LIVE TODAY! January 29, 2008 at 2:00 PM EST (1900 GMT)&lt;br&gt;SPEAKER: Glenn Jacobsen, Vice President, Data Management Group&lt;br&gt;SPONSOR: PeakData LLC&lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2964043/6582435"&gt;http://go.techtarget.com/r/2964043/6582435&lt;/a&gt;&lt;p&gt;        Sun Microsystems&lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2964044/6582435"&gt;http://go.techtarget.com/r/2964044/6582435&lt;/a&gt;&lt;p&gt;REGISTER FOR THIS VENDOR WEBCAST TODAY:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964045/6582435"&gt;http://go.techtarget.com/r/2964045/6582435&lt;/a&gt;&lt;p&gt;====================================================================&lt;br&gt;NOTE: To access this Webcast, you must: Disable pop up blockers;&lt;br&gt;Disable firewalls blocking streaming media/audio.&lt;br&gt;====================================================================&lt;br&gt;====================================================================&lt;br&gt;ABOUT THIS VENDOR WEBCAST&lt;br&gt;====================================================================&lt;br&gt;Failed hard disk drives (HDDs) are frequently removed from data&lt;br&gt;centers, yet organizations do not take the time to completely delete&lt;br&gt;the information stored on these disks. Companies that keep data&lt;br&gt;remaining on a disk when it leaves the physical security of a data&lt;br&gt;center are faced with the dilemma of how to properly eradicate this&lt;br&gt;data in a cost-effective manner. &lt;p&gt;This Webcast discusses the various options available to ensure the&lt;br&gt;protection of information stored on disk, explores the pros and cons&lt;br&gt;of each and provides guidance for deciding on the correct one for&lt;br&gt;your organization.&lt;p&gt;Click here to register:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964046/6582435"&gt;http://go.techtarget.com/r/2964046/6582435&lt;/a&gt;&lt;p&gt;====================================================================&lt;br&gt;ABOUT THE SPEAKER&lt;br&gt;====================================================================&lt;br&gt;Glenn Jacobsen, Vice President, Data Management Group&lt;p&gt;Glenn Jacobsen leads the Data Management Group for PeakData, a&lt;br&gt;trusted strategic partner that develops and delivers innovative&lt;br&gt;solutions to store, manage, and protect data throughout its&lt;br&gt;value-based lifecycle. The Data Management Group consulting and&lt;br&gt;professional services organization incorporates the industry&amp;#39;s&lt;br&gt;leading people, products, tools, and methodologies to help companies&lt;br&gt;mitigate risk and manage their business-critical information more&lt;br&gt;efficiently and cost-effectively. &lt;br&gt; &lt;br&gt;Jacobsen brings over twenty years of experience in disk and tape&lt;br&gt;storage optimization, protection, and management to PeakData. He came&lt;br&gt;to PeakData from Crosswalk, Inc, where he served as Senior Director&lt;br&gt;of Marketing and Product Management. Prior to Crosswalk, Jacobsen&lt;br&gt;managed global business operations for the professional services&lt;br&gt;organizations at Hitachi Data Systems, Front Porch Digital Inc., and&lt;br&gt;Trilliant Group. He is also the founder of Vistastor Corporation, a&lt;br&gt;consulting and integration firm focused on business continuity and&lt;br&gt;storage management.&lt;br&gt; &lt;br&gt;Jacobsen started his career as a process engineer with IBM, and has&lt;br&gt;held positions of increasing responsibility in product development,&lt;br&gt;product management, marketing, and sales with industry-leading&lt;br&gt;storage companies including 3M, Imation Corp., and StorageTek.&lt;p&gt;&lt;br&gt;------------ SPONSORED BY: PeakData &amp;amp; Sun Microsystems -------------&lt;br&gt; &lt;br&gt;PeakData, LLC provides storage systems, storage management software&lt;br&gt;and services to enterprise customers throughout the United States. It&lt;br&gt;is increasingly recognized that data at rest can pose both management&lt;br&gt;challenges and business risks. PeakData&amp;#39;s portfolio of consulting and&lt;br&gt;professional services represents more than twenty years of industry&lt;br&gt;leading data migration, conversion, consolidation and eradication&lt;br&gt;experience. We help mitigate the challenges and risks of data in&lt;br&gt;transition while rationalizing costs in the process. Whether&lt;br&gt;migrating, consolidating or eradicating data, PeakData&amp;#39;s mission is&lt;br&gt;to help customers execute media migration projects securely,&lt;br&gt;efficiently and cost-effectively. These services are performed with&lt;br&gt;the highest level of confidentiality and security whether in&lt;br&gt;PeakData&amp;#39;s secure facility or onsite at the client&amp;#39;s facility.&lt;p&gt;For more information:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2964047/6582435"&gt;http://go.techtarget.com/r/2964047/6582435&lt;/a&gt;&lt;br&gt;--------------------------------------------------------------------&lt;p&gt;___________________________________________________________________&lt;br&gt;ABOUT THIS E-NEWSLETTER&lt;br&gt;This e-newsletter is published by SearchStorage.com, a targeted Web&lt;br&gt;site from TechTarget, the IT Media ROI Experts.  TechTarget offers&lt;br&gt;magazines, Web sites, e-newsletters, Webcasts and conferences for&lt;br&gt;enterprise IT professionals. &lt;p&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;_____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Webcast Alert&amp;quot;:&lt;br&gt; &lt;br&gt;Go to unsubscribe: &lt;a href="http://SearchStorage.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622670&amp;amp;"&gt;http://SearchStorage.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622670&amp;amp;&lt;/a&gt;&lt;p&gt;&lt;br&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;br&gt; &lt;br&gt;Contact us:&lt;br&gt;SearchStorage&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-8207609287869423587?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/8207609287869423587/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=8207609287869423587' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/8207609287869423587'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/8207609287869423587'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/new-webcast-how-to-properly-secure-and.html' title='New Webcast: How to Properly Secure and Eradicate Your Disk Drives'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-2485735962383835218</id><published>2008-01-29T20:53:00.001+05:30</published><updated>2009-11-21T06:52:56.815+05:30</updated><title type='text'>Customer Data: CDI streamlines Corporate Express call center processes</title><content type='html'>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;SearchDataManagement.com: Customer Data&lt;br&gt;Integration Edition&lt;br&gt;January 29, 2008&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;p&gt; &lt;br&gt;FUZZY SEARCH HELPS CLEAR UP CALL CENTER CONFUSION&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2963249/6582435"&gt;http://go.techtarget.com/r/2963249/6582435&lt;/a&gt;&lt;br&gt;Jeff Kelly, News Editor&lt;p&gt;When executives at Corporate Express began looking at ways to improve&lt;br&gt;efficiency, they expected to find at least a few redundant servers or&lt;br&gt;applications. What they discovered were more than two dozen separate&lt;br&gt;customer data systems running throughout the company. &lt;p&gt;A subsidiary of Corporate Express NV in the Netherlands, the&lt;br&gt;Broomfield, Colo.-based company had staked its claim as one of the&lt;br&gt;top business-to-business office supplies vendors in the market thanks&lt;br&gt;in part to numerous acquisitions over the last decade. But each&lt;br&gt;acquisition brought with it not just revenue but customer data and&lt;br&gt;databases as well. It didn&amp;#39;t take long for the company to realize it&lt;br&gt;needed to streamline operations. &lt;p&gt;&amp;quot;We started looking at our overall enterprise architecture, and one&lt;br&gt;of the things we began to document was the amount of customer data&lt;br&gt;replication we were doing,&amp;quot; said Doug LaVelle, head of the company&amp;#39;s&lt;br&gt;business relationship management team. To make matters worse,&lt;br&gt;customer data often needed to be entered into separate systems&lt;br&gt;manually, LaVelle said, almost guaranteeing inconsistencies. &lt;p&gt;To start the streamlining process, the company decided to consolidate&lt;br&gt;its 28 call centers -- distributed throughout the country -- into one&lt;br&gt;main call center with a secondary, back-up location. LaVelle and his&lt;br&gt;team began identifying the processes used in those call centers to&lt;br&gt;conduct customer transactions and discovered no fewer than 26 systems&lt;br&gt;containing customer data. &amp;quot;&amp;amp;#91;Not surprisingly&amp;amp;#93; we saw a lot&lt;br&gt;inefficiencies with how &amp;amp;#91;call center representatives&amp;amp;#93; went in&lt;br&gt;and found customers in the different systems,&amp;quot; LaVelle said.&lt;p&gt;Learn how Corporate Express improved call center efficiency with&lt;br&gt;fuzzy search:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2963250/6582435"&gt;http://go.techtarget.com/r/2963250/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;More on SearchDataManagement.com&lt;p&gt;Products of the Year winners&lt;br&gt;Find out which data integration products were recently named the top&lt;br&gt;Products of the Year and check out the winners for business&lt;br&gt;intelligence, data warehousing and data quality.&lt;p&gt;Learn the winners&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2963251/6582435"&gt;http://go.techtarget.com/r/2963251/6582435&lt;/a&gt;&lt;p&gt;&lt;p&gt;:::::::::::::::::::::::::: ADVERTISEMENT :::::::::::::::::::::::::::&lt;p&gt;SearchDataManagement.com&lt;p&gt;Sponsored by: SearchDataManagement.com&lt;p&gt;Browse excerpts from BI books to learn about BI challenges, project&lt;br&gt;planning, tools and dashboard design&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2963252/6582435"&gt;http://go.techtarget.com/r/2963252/6582435&lt;/a&gt;&lt;p&gt;Read data integration book excerpts for advice and implementation&lt;br&gt;guidelines for MDM, CDI, ETL and SOA&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2963253/6582435"&gt;http://go.techtarget.com/r/2963253/6582435&lt;/a&gt;&lt;p&gt;Read chapter excerpts about data quality, governance and stewardship&lt;br&gt;best practices and horror stories&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2963254/6582435"&gt;http://go.techtarget.com/r/2963254/6582435&lt;/a&gt;&lt;p&gt;Get data warehouse and DBMS information from book excerpts about DBA&lt;br&gt;job roles, data modeling and more&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2963255/6582435"&gt;http://go.techtarget.com/r/2963255/6582435&lt;/a&gt;&lt;p&gt;&lt;p&gt;&lt;p&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;p&gt; &lt;p&gt;::::::::::::::::::::: ABOUT THIS E NEWSLETTER ::::::::::::::::::::::&lt;br&gt;This e-newsletter is published by SearchDataManagement.com, a&lt;br&gt;targeted Web site from TechTarget, The IT Media ROI Experts and&lt;br&gt;events company. TechTarget offers magazines, Web sites,&lt;br&gt;e-newsletters, Webcasts and conferences for enterprise IT&lt;br&gt;professionals. &lt;br&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Customer Data&amp;quot;:&lt;p&gt;Go to unsubscribe: &lt;a href="http://SearchDataManagement.techtarget.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622358&amp;amp;track=NL-409"&gt;http://SearchDataManagement.techtarget.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622358&amp;amp;track=NL-409&lt;/a&gt;&lt;p&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;p&gt;Contact us:&lt;br&gt;SearchDataManagement&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-2485735962383835218?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/2485735962383835218/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=2485735962383835218' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/2485735962383835218'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/2485735962383835218'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/customer-data-cdi-streamlines-corporate.html' title='Customer Data: CDI streamlines Corporate Express call center processes'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-5690646859531992857</id><published>2008-01-29T19:13:00.000+05:30</published><updated>2009-11-21T06:52:56.821+05:30</updated><title type='text'>New eGuide: The Basics of iSCSI SANs</title><content type='html'>Dear SearchStorage.com member,&lt;p&gt;SANs are important to organizations because of their ability to&lt;br&gt;centralize and organize disparate storage resources within the data&lt;br&gt;center, but because of the cost and complexity of Fibre Channel, many&lt;br&gt;organizations held off on adopting this technology. Now with the&lt;br&gt;breakthrough of iSCSI SANs, this is no longer the case.&lt;p&gt;This eGuide from SearchStorage.com examines the basics of iSCSI,&lt;br&gt;deployment roadblocks to watch out for and predicts future trends.&lt;br&gt;Download it to learn more.&lt;p&gt;Download this new eGuide now:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2962474/6582435"&gt;http://go.techtarget.com/r/2962474/6582435&lt;/a&gt;&lt;p&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;br&gt;ABOUT THIS FEATURED EGUIDE SPONSORED BY: Dell | EMC&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;br&gt;Most analysts and users agree that iSCSI is easier to deploy and&lt;br&gt;manage than Fibre Channel. That is one of the main reasons that iSCSI&lt;br&gt;has emerged as a viable - and very popular - SAN option for&lt;br&gt;organizations large and small.&lt;p&gt;This eGuide from SearchStorage.com outlines common iSCSI concepts and&lt;br&gt;features. Download this guide to learn about important topics that&lt;br&gt;focus on:&lt;p&gt;** Understanding iSCSI SANs&lt;br&gt;** Debunking common IP network myths&lt;br&gt;** How to implement iSCSI SANs and common pitfalls to be aware of&lt;br&gt;** The future of iSCSI SANs&lt;p&gt;Download this eGuide to learn more:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2962475/6582435"&gt;http://go.techtarget.com/r/2962475/6582435&lt;/a&gt;&lt;p&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;br&gt;SEARCHSTORAGE.COM WHITE PAPER LIBRARY&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;br&gt;Browse hundreds of white papers by author, keyword or topics.&lt;br&gt;Visit the SearchStorage.com White Paper Library today:&lt;p&gt;&lt;a href="http://go.techtarget.com/r/2962476/6582435"&gt;http://go.techtarget.com/r/2962476/6582435&lt;/a&gt;&lt;p&gt;___________________________________________________________________&lt;br&gt;ABOUT THIS E-NEWSLETTER&lt;br&gt;This e-newsletter is published by TechTarget, the IT Media ROI&lt;br&gt;Experts.  TechTarget offers magazines, Web sites, e-newsletters,&lt;br&gt;Webcasts and conferences for enterprise IT professionals. &lt;p&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;TechTarget Research Library Update&amp;quot;:&lt;p&gt;Go to unsubscribe: &lt;a href="http://SearchTechTarget.techtarget.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622525&amp;amp;track=NL-775"&gt;http://SearchTechTarget.techtarget.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622525&amp;amp;track=NL-775&lt;/a&gt;&lt;p&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;p&gt;Contact us:&lt;br&gt;TechTarget&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-5690646859531992857?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/5690646859531992857/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=5690646859531992857' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/5690646859531992857'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/5690646859531992857'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/new-eguide-basics-of-iscsi-sans.html' title='New eGuide: The Basics of iSCSI SANs'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-296726867509327738</id><published>2008-01-28T23:06:00.001+05:30</published><updated>2009-11-21T06:52:56.824+05:30</updated><title type='text'>This week: RIA and composite applications survey</title><content type='html'>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;SearchSOA.com This Week - January 28, 2008&lt;br&gt;A newsletter from TechTarget&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;p&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;IN THIS ISSUE:&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;&amp;gt; From the Editor: RIA and composite applications survey&lt;br&gt;&amp;gt; Ask the Experts: WSDL technology&lt;br&gt;&amp;gt; Learning Center: XML Learning Guide&lt;br&gt;&amp;gt; Site Highlights: Free seminar: Pragmatic SOA Governance&lt;br&gt;&amp;gt; More From SEARCHSOA: Deadline extended for SearchSOA.com products&lt;br&gt;of the year&lt;p&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;FROM THE EDITOR&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;RIA and composite applications survey&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958604/6582435"&gt;http://go.techtarget.com/r/2958604/6582435&lt;/a&gt;&lt;br&gt;[Michael Meehan]&lt;p&gt;Let&amp;#39;s face it, service-oriented architecture is boring. I mean, with&lt;br&gt;all that planning and attention to detail and consistency. Maybe that&lt;br&gt;appeals to the small percentage of people out there who lead highly&lt;br&gt;organized lives, but for most humans in your app dev shop the&lt;br&gt;efficiency and better business productivity of SOA isn&amp;#39;t going to set&lt;br&gt;off any internal whistles. &lt;p&gt;For them the selling point on SOA is that if you get organized over&lt;br&gt;here then you can do some cool, new stuff over there. It&amp;#39;s a&lt;br&gt;tradeoff. You want to do some fantastic enterprise mashup? Guess&lt;br&gt;what? That&amp;#39;s not going to happen until you&amp;#39;ve got loosely coupled&lt;br&gt;applications with easily digested data. It&amp;#39;s the adult equivalent of&lt;br&gt;having to eat your vegetables before you get dessert.&lt;p&gt;Anyway, we know that plenty of companies out there want to pursue&lt;br&gt;rich Internet and/or composite applications. What we don&amp;#39;t know is&lt;br&gt;how far along you are with that work. So we put together a RIA and&lt;br&gt;composite apps survey to get a better sense of your progress in this&lt;br&gt;area and to find out what sorts of pain points you&amp;#39;re experiencing.&lt;br&gt;It&amp;#39;s quick and easy to take and we aren&amp;#39;t requiring you to provide&lt;br&gt;any intimate personal information (seriously, we don&amp;#39;t want your&lt;br&gt;DNA).&lt;p&gt;If we know more about your interests and concerns in the Web 2.0, we&lt;br&gt;can better focus our coverage on your needs. Whether you&amp;#39;re working&lt;br&gt;on an internal portal, a trading application or a cool Web site like&lt;br&gt;BreakThru Radio, or even if that&amp;#39;s what your company would like to be&lt;br&gt;doing, we want to know about your RIA experience.&lt;p&gt;We know you&amp;#39;re out there, looking to push the application envelope,&lt;br&gt;yearning to turn all this organization into something creative. Make&lt;br&gt;sure you chime in on the survey and it will help align our coverage.&lt;p&gt;RELATED INFORMATION:&lt;br&gt;&amp;gt; Deadline extended for SearchSOA.com products of the year:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958605/6582435"&gt;http://go.techtarget.com/r/2958605/6582435&lt;/a&gt;&lt;p&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;ASK THE EXPERT&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;WSDL technology&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958606/6582435"&gt;http://go.techtarget.com/r/2958606/6582435&lt;/a&gt;&lt;br&gt;[Anne Thomas Manes]&lt;p&gt;Anne Thomas Manes defines when to use a WSDL and describes the&lt;br&gt;differences between WSDL 1.1 and 2.0.&lt;p&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;LEARNING CENTER&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;XML Learning Guide&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958607/6582435"&gt;http://go.techtarget.com/r/2958607/6582435&lt;/a&gt;&lt;p&gt;Want to learn more about XML? This guide explains what XML is, how&lt;br&gt;it&amp;#39;s used, and where it fits into the world of Web services. You&amp;#39;ll&lt;br&gt;find XML articles, tutorials, examples, tips, tools, white papers,&lt;br&gt;expert advice and more to pump up your XML know-how quickly.&lt;br&gt; &lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;SITE HIGHLIGHTS&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Free seminar: Pragmatic SOA Governance&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958608/6582435"&gt;http://go.techtarget.com/r/2958608/6582435&lt;/a&gt;&lt;br&gt;The failure to govern your organization&amp;#39;s evolving SOA could result&lt;br&gt;in millions of dollars of costly service redesigns, maintenance, and&lt;br&gt;project delays. That&amp;#39;s why SearchSOA.com created this one-day&lt;br&gt;seminar. Learn more about design and runtime implications of SOA&lt;br&gt;governance, as well as the organizational and business impact of an&lt;br&gt;effective governance strategy. Speakers include renowned industry&lt;br&gt;expert Anne Thomas Manes of the Burton Group. Reserve your spot now&lt;br&gt;for this free seminar.&lt;p&gt;Announcing SearchFinancialSecurity.com!&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958609/6582435"&gt;http://go.techtarget.com/r/2958609/6582435&lt;/a&gt;&lt;br&gt;Focused on finance? Now there&amp;#39;s an online resource tailored&lt;br&gt;specifically to the distinct challenges faced by technology pros in&lt;br&gt;the financial sector. TheServerSide.com&amp;#39;s sister site is the web&amp;#39;s&lt;br&gt;most targeted information resource to feature FREE access to unbiased&lt;br&gt;product reviews, webcasts, white papers, breaking industry news&lt;br&gt;updated daily, targeted search engine powered by Google, and so much&lt;br&gt;more.&lt;br&gt;   &lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;MORE FROM SEARCHSOA&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Deadline extended for SearchSOA.com products of the year&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958610/6582435"&gt;http://go.techtarget.com/r/2958610/6582435&lt;/a&gt;&lt;br&gt;Last week we got flooded with requests to extend the deadline for our&lt;br&gt;Products of the Year Awards submissions. Now you&amp;#39;ve got until&lt;br&gt;February 15 to fill out the nomination form.&lt;p&gt;IBM buys AptSoft, firmly positions EDA inside SOA&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958611/6582435"&gt;http://go.techtarget.com/r/2958611/6582435&lt;/a&gt;&lt;br&gt;With its acquisition of AptSoft Inc. this week, IBM&amp;#39;s SOA team is&lt;br&gt;working to re-brand CEP as business event processing to accent the&lt;br&gt;business user&amp;#39;s role in the technology.&lt;p&gt;SOA mature, diverse and successful - study finds&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958612/6582435"&gt;http://go.techtarget.com/r/2958612/6582435&lt;/a&gt;&lt;br&gt;SOA implementations involve multiple vendors, extend well beyond&lt;br&gt;simple Web services and are largely rated as successes by 330 IT&lt;br&gt;professionals responding to a survey by AmberPoint Inc.&lt;p&gt;Horror stories offer reason for long-term SOA planning&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958613/6582435"&gt;http://go.techtarget.com/r/2958613/6582435&lt;/a&gt;&lt;br&gt;In an SOA world, enterprises must avoid a piecemeal approach to&lt;br&gt;application upgrade and embrace a long-term application strategy,&lt;br&gt;according to Forrester Research Inc.&lt;p&gt;Forget maturity models &amp;amp;ndash; it&amp;#39;s time for an agility model&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958614/6582435"&gt;http://go.techtarget.com/r/2958614/6582435&lt;/a&gt;&lt;br&gt;Ronald Schmelzer discusses the best way to go about measuring&lt;br&gt;progress with regards to IT.&lt;p&gt;SOA Governance Series&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958615/6582435"&gt;http://go.techtarget.com/r/2958615/6582435&lt;/a&gt;&lt;br&gt;Join SearchSOA.com and the Burton Group&amp;#39;s Anne Thomas Manes for free&lt;br&gt;one-day SOA Governance seminars around the country.&lt;p&gt;Service contracts for BPEL 2.0&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958616/6582435"&gt;http://go.techtarget.com/r/2958616/6582435&lt;/a&gt;&lt;br&gt;The BPEL orchestration standard allows for contract-first Web&lt;br&gt;services design inside an SOA. This tip identifies best practices for&lt;br&gt;using BPEL and WSDL for service contracts.&lt;p&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;CONTACT US:&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Sales&lt;br&gt;For sales inquiries, please contact us at:&lt;br&gt;mailto:bmcgovern@techtarget.com&lt;br /&gt;&lt;br /&gt;Editorial&lt;br&gt;For feedback about any of our articles or to send us your article&lt;br&gt;ideas, please contact us at:&lt;br&gt;mailto:mmeehan@techtarget.com&lt;br /&gt;&lt;br /&gt;&lt;p&gt;::::::::::::::::::::: ABOUT THIS E NEWSLETTER ::::::::::::::::::::::&lt;br&gt;This e-newsletter is published by SearchSOA.com, a targeted Web site&lt;br&gt;from TechTarget, The IT Media ROI Experts and events company.&lt;br&gt;TechTarget offers magazines, Web sites, e-newsletters, Webcasts and&lt;br&gt;conferences for enterprise IT professionals. &lt;br&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;_____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Updates on new site content&amp;quot;:&lt;br&gt; &lt;br&gt;Go to unsubscribe: &lt;a href="http://SearchSOA.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=621251&amp;amp;"&gt;http://SearchSOA.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=621251&amp;amp;&lt;/a&gt;&lt;p&gt;&lt;br&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;br&gt; &lt;br&gt;Contact us:&lt;br&gt;SearchSOA&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-296726867509327738?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/296726867509327738/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=296726867509327738' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/296726867509327738'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/296726867509327738'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/this-week-ria-and-composite.html' title='This week: RIA and composite applications survey'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-2330272721028792279</id><published>2008-01-28T22:23:00.001+05:30</published><updated>2009-11-21T06:52:56.828+05:30</updated><title type='text'>First Glance Webcast &amp; Videocasts: Know Your Roles: Log Monitoring at the Application Level and more</title><content type='html'>Dear SearchSecurity.com member,&lt;p&gt;Register for these Online Events on SearchSecurity.com:&lt;p&gt;1. WEBCAST: Know Your Roles: Log Monitoring at the Application Level&lt;br&gt;2. VIDEOCASTS: 4 part series on risk management and reducing         &lt;br&gt;               downtime &lt;p&gt;====================================================================&lt;br&gt;WEBCAST #1: Know Your Roles: Log Monitoring at the Application Level&lt;br&gt;====================================================================&lt;br&gt;WHEN:    LIVE! January 30, 2008 at 2:00 PM EST (1900 GMT)&lt;br&gt;SPEAKER: Rick Caccia, Vice President of Product Marketing&lt;br&gt;SPONSOR: Arcsight&lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2958288/6582435"&gt;http://go.techtarget.com/r/2958288/6582435&lt;/a&gt;&lt;p&gt;        &lt;p&gt;ABOUT THIS VENDOR WEBCAST: &lt;p&gt;Check out this webcast to learn:&lt;p&gt;* How application monitoring allows you to connect the dots across   &lt;br&gt;  systems and assess business risk &lt;br&gt;* How to manage users getting information outside of the scope of    &lt;br&gt;  their role or group membership &lt;br&gt;* Why custom applications don&amp;#39;t have to be an easy target for        &lt;br&gt;  malicious insiders&lt;p&gt;PRE-REGISTER TODAY:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958289/6582435"&gt;http://go.techtarget.com/r/2958289/6582435&lt;/a&gt;&lt;p&gt;====================================================================&lt;br&gt;VIDEOCASTS #2: 4 part series on risk management and reducing         &lt;br&gt;               downtime&lt;br&gt;====================================================================&lt;br&gt;WHEN:    AVAILABLE ON DEMAND&lt;br&gt;SPEAKER: Gene Kim, CTO of Tripwire&lt;br&gt;SPEAKER: Dwayne Melancon, VP of Corporate and Business Development   &lt;br&gt;         at Tripwire&lt;br&gt;SPEAKER: George Spafford, Principal Consultant with Pepperweed       &lt;br&gt;         Consulting&lt;br&gt;SPONSOR: Tripwire, Inc.&lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2958290/6582435"&gt;http://go.techtarget.com/r/2958290/6582435&lt;/a&gt;&lt;p&gt;         &lt;p&gt;ABOUT THIS VENDOR VIDEOCASTS: &lt;p&gt;VIDEOCAST 1: Down With Downtime: Ensuring Control and Availability&lt;br&gt;over IT Systems&lt;p&gt;Check out this Videocast today and learn more about how to monitor&lt;br&gt;change control and prevent downtime.  You will also discover how your&lt;br&gt;company can be more strategic regarding IT availability and how to&lt;br&gt;use ITIL methodologies as a framework to improve IT effectiveness&lt;p&gt;Click here to watch this Videocast:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958291/6582435"&gt;http://go.techtarget.com/r/2958291/6582435&lt;/a&gt;&lt;p&gt;&lt;p&gt;VIDEOCAST 2: How to Secure and Manage Virtual Servers&lt;p&gt;View this Videocast and join Dwayne Melancon, VP of Corporate and&lt;br&gt;Business Development at Tripwire and Andy Briney, VP and Group&lt;br&gt;Publisher at TechTarget as they discuss virtualization security and&lt;br&gt;its implications. &lt;p&gt;Click here to watch this Videocast:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958292/6582435"&gt;http://go.techtarget.com/r/2958292/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;VIDEOCAST 3: Practical Steps to Improving Your Compliance Process&lt;p&gt;Watch this Videocast and learn more about processes for security pros&lt;br&gt;to achieve compliance, how to automate compliance processes, best&lt;br&gt;practices for compliance improvement, and much more.&lt;p&gt;Click here to watch this Videocast:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958293/6582435"&gt;http://go.techtarget.com/r/2958293/6582435&lt;/a&gt;&lt;p&gt;VIDEOCAST 4: How to Improve Your IT Risk Management Operations&lt;p&gt;View this Videocast and discover essential IT processes and&lt;br&gt;operations that your company should examine to get better at managing&lt;br&gt;risks and steps you can take to become best in class for IT risk&lt;br&gt;management. &lt;p&gt;Click here to watch this Videocast:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2958294/6582435"&gt;http://go.techtarget.com/r/2958294/6582435&lt;/a&gt;&lt;p&gt;====================================================================&lt;br&gt;NOTE: To access these Online Events, you must: Disable pop up&lt;br&gt;blockers; Disable firewalls blocking streaming media/audio.&lt;br&gt;====================================================================&lt;p&gt;___________________________________________________________________&lt;br&gt;ABOUT THIS E-NEWSLETTER&lt;br&gt;This e-newsletter is published by SearchSecurity.com, a targeted Web&lt;br&gt;site from TechTarget, the IT Media ROI Experts.  TechTarget offers&lt;br&gt;magazines, Web sites, e-newsletters, Webcasts and conferences for&lt;br&gt;enterprise IT professionals. &lt;p&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;_____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Webcast Alert&amp;quot;:&lt;br&gt; &lt;br&gt;Go to unsubscribe: &lt;a href="http://SearchSecurity.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622456&amp;amp;"&gt;http://SearchSecurity.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622456&amp;amp;&lt;/a&gt;&lt;p&gt;&lt;br&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;br&gt; &lt;br&gt;Contact us:&lt;br&gt;SearchSecurity&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-2330272721028792279?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/2330272721028792279/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=2330272721028792279' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/2330272721028792279'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/2330272721028792279'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/first-glance-webcast-videocasts-know.html' title='First Glance Webcast &amp; Videocasts: Know Your Roles: Log Monitoring at the Application Level and more'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-4527009506979682255</id><published>2008-01-28T21:36:00.001+05:30</published><updated>2009-11-21T06:52:56.832+05:30</updated><title type='text'>This Week: Calling all middleware users</title><content type='html'>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;SearchOracle.com This Week - January 28, 2008&lt;br&gt;A newsletter from TechTarget&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;p&gt;&lt;p&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;IN THIS ISSUE:&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;&amp;gt; From the Editor: Calling all middleware users&lt;br&gt;&amp;gt; Site Highlights: Oracle may put a price on business processes&lt;br&gt;&amp;gt; More From SearchOracle: Oracle buys content management vendor&lt;p&gt;&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;FROM THE EDITOR&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Calling all middleware users&lt;br&gt;by Mark Brunelli - mbrunelli@techtarget.&lt;p&gt;The results of a new Oracle Applications Users Group (OAUG) survey&lt;br&gt;suggest that the majority of Oracle-based enterprises intend to&lt;br&gt;upgrade to Oracle&amp;#39;s Fusion middleware infrastructure within the next&lt;br&gt;two years. &lt;p&gt;Now, that&amp;#39;s not particularly surprising. But this is:&lt;p&gt;The survey, which generated 449 responses from OAUG members, also&lt;br&gt;found that two out of every five Oracle-based enterprises will&lt;br&gt;increase spending on middleware in 2008, despite the fact that many&lt;br&gt;enterprises still aren&amp;#39;t sure of middleware&amp;#39;s true value to their&lt;br&gt;operations.&lt;p&gt;Taken together, the results suggest to me that at least some&lt;br&gt;companies out there are spending money on middleware without fully&lt;br&gt;understanding the reasons for doing so. I think the issue deserves&lt;br&gt;further examination, especially with Oracle&amp;#39;s major acquisition of&lt;br&gt;middleware giant BEA Systems Inc. still fresh on our minds:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2957830/6582435"&gt;http://go.techtarget.com/r/2957830/6582435&lt;/a&gt;&lt;p&gt;I&amp;#39;m researching a new article on the OAUG survey for publication&lt;br&gt;later this week and really need to rally the SearchOracle.com troops&lt;br&gt;in an attempt to understand this potential phenomenon. Do the results&lt;br&gt;make sense to you? Why or why not? And why is middleware important,&lt;br&gt;or unimportant, at your organization? &lt;p&gt;Maybe it&amp;#39;s simply a matter of business folks getting ahead of the IT&lt;br&gt;groups, or vice versa. Or maybe the survey results simply don&amp;#39;t hold&lt;br&gt;water. Whatever it is, if you&amp;#39;re a real Oracle end user, then I want&lt;br&gt;to hear from you. Please send your comments directly to&lt;br&gt;mbrunelli@techtarget.com and we&amp;#39;ll set up a time to get on the phone.&lt;p&gt;Mark Brunelli&lt;br&gt;News Editor&lt;p&gt; &lt;br&gt; &lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;SITE HIGHLIGHTS&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Oracle may put a price on business processes&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2957831/6582435"&gt;http://go.techtarget.com/r/2957831/6582435&lt;/a&gt;&lt;br&gt;Find out why large software vendors creating more dynamic&lt;br&gt;applications with a strong focus on cross-functional business&lt;br&gt;processes is likely to mean new business process-based software&lt;br&gt;pricing options.&lt;p&gt;Data warehouse appliances demand diligence&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2957832/6582435"&gt;http://go.techtarget.com/r/2957832/6582435&lt;/a&gt;&lt;br&gt;Finding the right data warehouse appliance is largely a matter of due&lt;br&gt;diligence and proper testing. However, there are some other important&lt;br&gt;things to keep in mind, so SearchOracle.com caught up with two&lt;br&gt;instructors from The Data Warehousing Institute (TDWI) to keep you&lt;br&gt;informed.&lt;p&gt;   &lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;MORE FROM SEARCHORACLE&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Oracle buys content management vendor&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2957833/6582435"&gt;http://go.techtarget.com/r/2957833/6582435&lt;/a&gt;&lt;br&gt;Oracle will add Captovation -- a Minnesota-based vendor of enterprise&lt;br&gt;content management (ECM) strategies -- to its ever-growing list of&lt;br&gt;acquired software companies.&lt;p&gt;Data retention policy for Oracle DBAs: When to &amp;quot;trash&amp;quot; your data&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2957834/6582435"&gt;http://go.techtarget.com/r/2957834/6582435&lt;/a&gt;&lt;br&gt;Oracle DBA Donald K. Burleson discusses data archiving, including&lt;br&gt;legal requirements, how to avoid stale data, and why it is important&lt;br&gt;to &amp;quot;trash&amp;quot; data rather than store it forever.&lt;p&gt;Tech pundit thinks Oracle had a hand in MySQL deal&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2957835/6582435"&gt;http://go.techtarget.com/r/2957835/6582435&lt;/a&gt;&lt;br&gt;Tech industry columnist John Dvorak says he believes that Oracle&lt;br&gt;founder Larry Ellison had a hand in Sun Microsystems&amp;#39; $1 billion&lt;br&gt;MySQL acquisition.&lt;p&gt;&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;CONTACT US:&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Sales&lt;br&gt;For sales inquiries, please contact us at:&lt;br&gt;mailto:mbolduc@techtarget.com&lt;br /&gt;&lt;br /&gt;Editorial&lt;br&gt;For feedback about any of our articles or to send us your article&lt;br&gt;ideas, please contact us at:&lt;br&gt;mailto:kglance@techtarget.com&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;p&gt;::::::::::::::::::::: ABOUT THIS E NEWSLETTER ::::::::::::::::::::::&lt;br&gt;This e-newsletter is published by SearchOracle.com, a targeted Web&lt;br&gt;site from TechTarget, The IT Media ROI Experts and events company.&lt;br&gt;TechTarget offers magazines, Web sites, e-newsletters, Webcasts and&lt;br&gt;conferences for enterprise IT professionals. &lt;br&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;_____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Updates on new site content&amp;quot;:&lt;br&gt; &lt;br&gt;Go to unsubscribe: &lt;a href="http://SearchOracle.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622460&amp;amp;"&gt;http://SearchOracle.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622460&amp;amp;&lt;/a&gt;&lt;p&gt;&lt;br&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;br&gt; &lt;br&gt;Contact us:&lt;br&gt;SearchOracle&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-4527009506979682255?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/4527009506979682255/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=4527009506979682255' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4527009506979682255'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4527009506979682255'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/this-week-calling-all-middleware-users.html' title='This Week: Calling all middleware users'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-5977149216999753432</id><published>2008-01-28T21:09:00.001+05:30</published><updated>2009-11-21T06:52:56.837+05:30</updated><title type='text'>First Glance: Webcast on Exploring Various Data Protection Scenarios for Better Disaster Preparedness</title><content type='html'>Dear SearchStorage.com member,&lt;p&gt;Register for this Webcast on SearchStorage.com:&lt;p&gt;** Exploring Various Data Protection Scenarios for Better Disaster   &lt;br&gt;   Preparedness&lt;p&gt;====================================================================&lt;br&gt;VENDOR WEBCAST: Exploring Various Data Protection Scenarios for      &lt;br&gt;                Better Disaster Preparedness&lt;br&gt;====================================================================&lt;br&gt;WHEN:    AVAILABLE ON DEMAND&lt;br&gt;SPEAKER: Jerome Wendt, President &amp;amp; Lead Analyst of DCIG, Inc.&lt;br&gt;SPONSOR: CA&lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2957602/6582435"&gt;http://go.techtarget.com/r/2957602/6582435&lt;/a&gt;&lt;p&gt;        &lt;p&gt;ABOUT THIS VENDOR WEBCAST: &lt;p&gt;Disaster recovery processes have fundamentally changed over the&lt;br&gt;years. They now require faster data recovery times, little&lt;br&gt;administrative burdens and must be more reliable than ever.&lt;br&gt;Fortunately, using CDP for DR can help you meet these requirements&lt;br&gt;and provide a number of other benefits.&lt;p&gt;View this Webcast, featuring Jerome Wendt, noted technologist and&lt;br&gt;lead analyst at DCIG Inc, to learn more about how using CDP for DR&lt;br&gt;works and the benefits it offer, such as:&lt;p&gt;* Lower DR costs and risks &lt;br&gt;* Improved RPOs and RTOs&lt;br&gt;* Provides automated failovers&lt;br&gt;* Allows for minimal administrative overhead &lt;br&gt;* And more&lt;p&gt;View this Webcast to learn more.&lt;p&gt;PRE-REGISTER TODAY:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2957603/6582435"&gt;http://go.techtarget.com/r/2957603/6582435&lt;/a&gt;&lt;p&gt;====================================================================&lt;br&gt;NOTE: To access this Webcast, you must: Disable pop up blockers;&lt;br&gt;Disable firewalls blocking streaming media/audio.&lt;br&gt;====================================================================&lt;p&gt;___________________________________________________________________&lt;br&gt;ABOUT THIS E-NEWSLETTER&lt;br&gt;This e-newsletter is published by SearchStorage.com, a targeted Web&lt;br&gt;site from TechTarget, the IT Media ROI Experts.  TechTarget offers&lt;br&gt;magazines, Web sites, e-newsletters, Webcasts and conferences for&lt;br&gt;enterprise IT professionals. &lt;p&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;_____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Webcast Alert&amp;quot;:&lt;br&gt; &lt;br&gt;Go to unsubscribe: &lt;a href="http://SearchStorage.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622469&amp;amp;"&gt;http://SearchStorage.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622469&amp;amp;&lt;/a&gt;&lt;p&gt;&lt;br&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;br&gt; &lt;br&gt;Contact us:&lt;br&gt;SearchStorage&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-5977149216999753432?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/5977149216999753432/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=5977149216999753432' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/5977149216999753432'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/5977149216999753432'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/first-glance-webcast-on-exploring.html' title='First Glance: Webcast on Exploring Various Data Protection Scenarios for Better Disaster Preparedness'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-2069887682406290299</id><published>2008-01-28T21:05:00.001+05:30</published><updated>2009-11-21T06:52:56.840+05:30</updated><title type='text'>First Glance: Webcast on SOA Online Summit - From Implementation to Governance</title><content type='html'>Dear SearchSOA.com member,&lt;p&gt;Pre-register for this upcoming Webcast on SearchSOA.com:&lt;p&gt;** SOA Online Summit - From Implementation to Governance&lt;p&gt;====================================================================&lt;br&gt;VENDOR WEBCAST: SOA Online Summit - From Implementation to           &lt;br&gt;                Governance&lt;br&gt;====================================================================&lt;br&gt;WHEN:    LIVE! February 12, 2008 at 11:30 AM EST (1630 GMT)&lt;br&gt;SPEAKER: John R. Rymer, Analyst, Forrester Research&lt;br&gt;SPEAKER: Paul Allen, Principal Consultant, Everware-CBDI             &lt;br&gt;         International&lt;br&gt;SPEAKER: Paul Brown, Principal Software Architect, TIBCO Software    &lt;br&gt;         Inc.&lt;br&gt;SPONSOR: TIBCO Software Inc. &lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2957558/6582435"&gt;http://go.techtarget.com/r/2957558/6582435&lt;/a&gt;&lt;p&gt;               &lt;p&gt;ABOUT THIS VENDOR WEBCAST: &lt;p&gt;This Webcast explores the latest architecture, technology and&lt;br&gt;organizational best practices necessary for SOA success. Interact&lt;br&gt;with a global community or architects, developers, and leading SOA&lt;br&gt;practitioners, to discover how to:&lt;p&gt;* Coordinate Service and Solution Development &lt;br&gt;* Simplify Heterogeneous SOA with Service Virtualization&lt;br&gt;* Implement Mission-Critical SOA &lt;p&gt;&lt;br&gt;PRE-REGISTER TODAY:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2957559/6582435"&gt;http://go.techtarget.com/r/2957559/6582435&lt;/a&gt;&lt;p&gt;====================================================================&lt;br&gt;NOTE: To access this Webcast, you must: Disable pop up blockers;&lt;br&gt;Disable firewalls blocking streaming media/audio.&lt;br&gt;====================================================================&lt;p&gt;___________________________________________________________________&lt;br&gt;ABOUT THIS E-NEWSLETTER&lt;br&gt;This e-newsletter is published by SearchSOA.com, a targeted Web site&lt;br&gt;from TechTarget, the IT Media ROI Experts.  TechTarget offers&lt;br&gt;magazines, Web sites, e-newsletters, Webcasts and conferences for&lt;br&gt;enterprise IT professionals. &lt;p&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;_____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Webcast Alert&amp;quot;:&lt;br&gt; &lt;br&gt;Go to unsubscribe: &lt;a href="http://SearchSOA.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622452&amp;amp;"&gt;http://SearchSOA.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622452&amp;amp;&lt;/a&gt;&lt;p&gt;&lt;br&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;br&gt; &lt;br&gt;Contact us:&lt;br&gt;SearchSOA&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-2069887682406290299?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/2069887682406290299/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=2069887682406290299' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/2069887682406290299'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/2069887682406290299'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/first-glance-webcast-on-soa-online.html' title='First Glance: Webcast on SOA Online Summit - From Implementation to Governance'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-207260784612809598</id><published>2008-01-28T19:55:00.001+05:30</published><updated>2009-11-21T06:52:56.845+05:30</updated><title type='text'>This Week: Virtual server backup FAQ; WAN backup</title><content type='html'>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;SearchStorage.com This Week - January 28, 2008&lt;br&gt;A newsletter from TechTarget&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;p&gt;&lt;p&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;IN THIS ISSUE:&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;&amp;gt; FAQ Guide: Virtual server backup&lt;br&gt;&amp;gt; Wide Area Network Guide: WAN backup, archives and disaster recovery&lt;br&gt;&amp;gt; ITKnowledge Exchange: Consult your peers about your storage issues&lt;p&gt;&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;FAQ GUIDE&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Virtual server backup&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956862/6582435"&gt;http://go.techtarget.com/r/2956862/6582435&lt;/a&gt;&lt;br&gt;[Mark Bowker]&lt;p&gt;How has the deployment of server virtualization impacted the backup&lt;br&gt;process? Mark Bowker, an analyst with the Enterprise Strategy Group,&lt;br&gt;answers the most common questions about virtual server backup that&lt;br&gt;storage administrators are asking today. His answers to these&lt;br&gt;questions are also available as an MP3 file to download.&lt;p&gt;&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;WIDE AREA NETWORK GUIDE&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;WAN backup, archives and disaster recovery&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956863/6582435"&gt;http://go.techtarget.com/r/2956863/6582435&lt;/a&gt;&lt;br&gt;Stephen J. Bigelow - sbigelow@techtarget.com&lt;p&gt;Backups, archives and disaster recovery serve different storage&lt;br&gt;purposes, but all three disciplines have the same basic objective of&lt;br&gt;data protection: preserving data in accordance with regulatory&lt;br&gt;compliance requirements and guarding data against loss.&lt;p&gt; &lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;ITKNOWLEDGE EXCHANGE&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Consult your peers about your storage issues&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956864/6582435"&gt;http://go.techtarget.com/r/2956864/6582435&lt;/a&gt;&lt;br&gt;Check out our all-new ITKnowledge Exchange and get advice from your&lt;br&gt;peers.&lt;p&gt;ITKnowledge Exchange is a service designed to give you full access to&lt;br&gt;peer know-how and expert advice on your toughest technical issues.&lt;br&gt;You can ask your questions to other ITKnowledge Exchange members with&lt;br&gt;specific sets of skills and expertise that you determine. Sign up&lt;br&gt;now.&lt;p&gt;&lt;br&gt;  &lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;PODCASTS &amp;amp; WEBCASTS&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Data Deduplication FAQ Podcast&lt;br&gt;When: Available on demand&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956865/6582435"&gt;http://go.techtarget.com/r/2956865/6582435&lt;/a&gt;&lt;br&gt;Speaker: Jerome Wendt, president and lead analyst, DCIG Inc.&lt;br&gt;Sponsor: Quantum Corp., &lt;a href="http://go.techtarget.com/r/2956866/6582435"&gt;http://go.techtarget.com/r/2956866/6582435&lt;/a&gt;&lt;p&gt;Webcast: Who&amp;#39;s Reading Your Old Disk Drives?&lt;br&gt;When: Tuesday, Jan. 29, 2008, 14:00 EST (19:00 GMT)&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956867/6582435"&gt;http://go.techtarget.com/r/2956867/6582435&lt;/a&gt;&lt;br&gt;Speaker: Glenn Jacobsen, vice president, data management group,&lt;br&gt;PeakData&lt;br&gt;Sponsor: Avnet Technology Solutions, &lt;a href="http://go.techtarget.com/r/2956868/6582435"&gt;http://go.techtarget.com/r/2956868/6582435&lt;/a&gt;&lt;p&gt;ISCSI SANs -- The Reality and the Vision&lt;br&gt;When: Available on demand&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956869/6582435"&gt;http://go.techtarget.com/r/2956869/6582435&lt;/a&gt;&lt;br&gt;Speaker: Tony Asaro, senior analyst, Enterprise Strategy Group&lt;br&gt;Sponsor: Fujitsu, &lt;a href="http://go.techtarget.com/r/2956870/6582435"&gt;http://go.techtarget.com/r/2956870/6582435&lt;/a&gt;&lt;p&gt;Webcast: Windows File Server and Storage Consolidation -- Optimizing&lt;br&gt;Data Efficiency&lt;br&gt;When: Available on demand&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956871/6582435"&gt;http://go.techtarget.com/r/2956871/6582435&lt;/a&gt;&lt;br&gt;Speaker: Stan Gibson, principal, Stan Gibson Communications&lt;br&gt;Sponsor: HP, &lt;a href="http://go.techtarget.com/r/2956872/6582435"&gt;http://go.techtarget.com/r/2956872/6582435&lt;/a&gt;&lt;p&gt;Podcast: Windows File Server and Storage Consolidation -- Optimizing&lt;br&gt;Data Efficiency&lt;br&gt;When: Available on demand&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956873/6582435"&gt;http://go.techtarget.com/r/2956873/6582435&lt;/a&gt;&lt;br&gt;Speakers: Stan Gibson, principal, Stan Gibson Communications&lt;br&gt;   Jeff Day, senior marketing manager, HP StorageWorks NAS Group,&lt;br&gt;Hewlett-Packard Co.&lt;br&gt;Sponsor: HP, &lt;a href="http://go.techtarget.com/r/2956874/6582435"&gt;http://go.techtarget.com/r/2956874/6582435&lt;/a&gt;&lt;p&gt;View All Podcasts &amp;amp; Webcasts at:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956875/6582435"&gt;http://go.techtarget.com/r/2956875/6582435&lt;/a&gt;&lt;p&gt; &lt;br&gt; &lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;SITE HIGHLIGHTS&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Storage Soup: A SearchStorage.com Blog&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956876/6582435"&gt;http://go.techtarget.com/r/2956876/6582435&lt;/a&gt;&lt;br&gt;A data storage blog offering commentary on the storage industry, as&lt;br&gt;well as a behind-the-scenes look at developments in storage&lt;br&gt;management, SAN, NAS, backup, disaster recovery and storage strategy.&lt;p&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;CONTACT US:&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Sales&lt;br&gt;For sales inquiries, please contact us at:&lt;br&gt;mailto:mcotoia@techtarget.com&lt;br /&gt;&lt;br /&gt;Editorial&lt;br&gt;For feedback about any of our articles or to send us your article&lt;br&gt;ideas, please contact us at:&lt;br&gt;mailto:editor@searchstorage.com&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;p&gt;::::::::::::::::::::: ABOUT THIS E NEWSLETTER ::::::::::::::::::::::&lt;br&gt;This e-newsletter is published by SearchStorage.com, a targeted Web&lt;br&gt;site from TechTarget, The IT Media ROI Experts and events company.&lt;br&gt;TechTarget offers magazines, Web sites, e-newsletters, Webcasts and&lt;br&gt;conferences for enterprise IT professionals. &lt;br&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Updates on new site content&amp;quot;:&lt;br&gt; &lt;br&gt;Go to unsubscribe: &lt;a href="http://SearchStorage.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622387&amp;amp;"&gt;http://SearchStorage.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622387&amp;amp;&lt;/a&gt;&lt;p&gt;&lt;br&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;br&gt; &lt;br&gt;Contact us:&lt;br&gt;SearchStorage&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-207260784612809598?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/207260784612809598/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=207260784612809598' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/207260784612809598'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/207260784612809598'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/this-week-virtual-server-backup-faq-wan.html' title='This Week: Virtual server backup FAQ; WAN backup'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-5313795068582205299</id><published>2008-01-28T18:33:00.001+05:30</published><updated>2009-11-21T06:52:56.850+05:30</updated><title type='text'>This week: Is operational BI a reality?</title><content type='html'>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;SearchDataManagement.com This Week - January 28, 2008&lt;br&gt;A newsletter from TechTarget&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;p&gt;&lt;p&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;IN THIS ISSUE:&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;&amp;gt; From the Editor: Is operational BI a reality?&lt;br&gt;&amp;gt; Ask the Experts: Data warehouse testing&lt;br&gt;&amp;gt; Site Highlights: 2007 Data Management Products of the Year&lt;br&gt;&amp;gt; More From SearchDataManagement: Data governance: Top five headlines&lt;p&gt;&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;FROM THE EDITOR&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Is operational BI a reality?&lt;br&gt;by Hannah Smalltree - hsmalltree@techtarget.&lt;p&gt;Industry-types have long used phrases like &amp;quot;pervasive BI&amp;quot; or &amp;quot;the&lt;br&gt;democratization of BI&amp;quot; or &amp;quot;operational BI&amp;quot; to describe the concept of&lt;br&gt;deploying BI to many, many people in an enterprise -- not just to&lt;br&gt;managers, but to front line operational workers, too. But, for years,&lt;br&gt;I&amp;#39;ve heard from people that broad BI deployments are easier said than&lt;br&gt;done -- with political, technical and financial challenges to&lt;br&gt;overcome. So in many companies, BI has still only been deployed&lt;br&gt;departmentally or to small groups of users. But, with respect to&lt;br&gt;musician Bob Dylan, a few articles we posted last week indicate that&lt;br&gt;&amp;quot;times, they are a-changin&amp;#39;.&amp;quot;&lt;p&gt;The article &amp;quot;Operational business intelligence making its way in the&lt;br&gt;enterprise&amp;quot;&lt;br&gt;(&lt;a href="http://go.techtarget.com/r/2956347/6582435"&gt;http://go.techtarget.com/r/2956347/6582435&lt;/a&gt; reports that, according to a Ventana Research survey, two-thirds of organizations polled are using or have taken initial steps to deploy operational BI -- and almost one third are at the highest level of operational BI maturity. I know from some of the initial results of our reader survey that many organizations still aren&amp;#39;t there yet. So, you may be interested in the article&amp;#39;s analyst advice for planning operational BI programs, as well as the other business intelligence resources available on SearchDataManagement.com: &lt;a href="http://go.techtarget.com/r/2956348/6582435"&gt;http://go.techtarget.com/r/2956348/6582435&lt;/a&gt;&lt;p&gt;There are also technical advances helping companies effectively&lt;br&gt;deploy operational BI. Expert contributor Mark Whitehorn&amp;#39;s latest&lt;br&gt;article, &amp;quot;Active data warehousing explained and examined,&amp;quot;&lt;br&gt;(&lt;a href="http://go.techtarget.com/r/2956349/6582435"&gt;http://go.techtarget.com/r/2956349/6582435&lt;/a&gt; demystifies the latest technology that&amp;#39;s helping to enable broad BI deployments. Read that article to find out why one analyst thinks this technology will change the competitive landscape for enterprise database and data warehouse products.&lt;p&gt;Have you deployed BI broadly at your organization? Why or why not?&lt;br&gt;What other resources or articles can we provide to help you get&lt;br&gt;there? Please send me an email at hsmalltree@techtarget.com and let&lt;br&gt;me know. And, as always, have a wonderful week!&lt;p&gt;Hannah&lt;p&gt;&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;ASK THE EXPERT&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Data warehouse testing&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956350/6582435"&gt;http://go.techtarget.com/r/2956350/6582435&lt;/a&gt;&lt;br&gt;[Mark Whitehorn]&lt;p&gt;Learn why data warehouse testing may not be that different from&lt;br&gt;testing software and hardware, according to a data warehouse expert.&lt;p&gt; &lt;br&gt; &lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;SITE HIGHLIGHTS&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;2007 Data Management Products of the Year&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956351/6582435"&gt;http://go.techtarget.com/r/2956351/6582435&lt;/a&gt;&lt;br&gt;IT departments have more choices than ever when it comes to&lt;br&gt;technologies, tools and strategies for business intelligence and data&lt;br&gt;management. So SearchDataManagement.com has narrowed down the field&lt;br&gt;with a panel of experts who went over 31 leading products to&lt;br&gt;determine the &amp;quot;best of the best&amp;quot; in 2007.&lt;p&gt;AIIM International exposition and conference&lt;br&gt;&lt;a href="http://www.aiimexpo.com"&gt;www.aiimexpo.com&lt;/a&gt;&lt;br&gt;This content and information management event is being held March&lt;br&gt;3-6, 2008. Learn about the latest innovations in information&lt;br&gt;management with 120 practitioner-delivered conference sessions and&lt;br&gt;200+ leading vendors at the expo.&lt;p&gt;Data quality, data warehousing and data integration info center&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956352/6582435"&gt;http://go.techtarget.com/r/2956352/6582435&lt;/a&gt;&lt;br&gt;Explore this info center for expert tips, articles, industry news,&lt;br&gt;best practices and information on data quality, data warehousing, and&lt;br&gt;data integration.&lt;p&gt;   &lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;MORE FROM SEARCHDATAMANAGEMENT&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;RESOURCE: Data governance: Top five headlines&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956353/6582435"&gt;http://go.techtarget.com/r/2956353/6582435&lt;/a&gt;&lt;br&gt;Get the top five data governance articles and resources to learn how&lt;br&gt;to make your data governance project successful.&lt;p&gt;PODCAST: Business intelligence applications: Secrets for success&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956354/6582435"&gt;http://go.techtarget.com/r/2956354/6582435&lt;/a&gt;&lt;br&gt;Learn three secrets to developing and optimizing successful business&lt;br&gt;intelligence applications. Get best practices for structuring BI&lt;br&gt;teams and managing business-IT communication.&lt;p&gt;QUIZ: IBM DB2 9 Fundamentals certification: Sample questions about&lt;br&gt;tables, Part 3&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2956355/6582435"&gt;http://go.techtarget.com/r/2956355/6582435&lt;/a&gt;&lt;br&gt;Answer 10 sample questions from the IBM DB2 9 Fundamentals&lt;br&gt;certification exam study guide to test your knowledge of DB2 tables.&lt;p&gt;&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;CONTACT US:&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Sales&lt;br&gt;For sales inquiries, please contact us at:&lt;br&gt;mailto:mbolduc@techtarget.com&lt;br /&gt;&lt;br /&gt;Editorial&lt;br&gt;For feedback about any of our articles or to send us your article&lt;br&gt;ideas, please contact us at:&lt;br&gt;mailto:hsmalltree@techtarget.com&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;p&gt;::::::::::::::::::::: ABOUT THIS E NEWSLETTER ::::::::::::::::::::::&lt;br&gt;This e-newsletter is published by SearchDataManagement.com, a&lt;br&gt;targeted Web site from TechTarget, The IT Media ROI Experts and&lt;br&gt;events company. TechTarget offers magazines, Web sites,&lt;br&gt;e-newsletters, Webcasts and conferences for enterprise IT&lt;br&gt;professionals. &lt;br&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Updates on new site content&amp;quot;:&lt;p&gt;Go to unsubscribe: &lt;a href="http://SearchDataManagement.techtarget.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622355&amp;amp;track=NL-520"&gt;http://SearchDataManagement.techtarget.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622355&amp;amp;track=NL-520&lt;/a&gt;&lt;p&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;p&gt;Contact us:&lt;br&gt;SearchDataManagement&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-5313795068582205299?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/5313795068582205299/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=5313795068582205299' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/5313795068582205299'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/5313795068582205299'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/this-week-is-operational-bi-reality.html' title='This week: Is operational BI a reality?'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-3601506297248010574</id><published>2008-01-26T02:49:00.001+05:30</published><updated>2009-11-21T06:52:56.857+05:30</updated><title type='text'>Senthil Rajendran's Blog</title><content type='html'>&lt;style type="text/css"&gt;  			h1 a:hover {background-color:#888;color:#fff ! important;}  			div#emailbody table#itemcontentlist tr td div ul { 					list-style-type:square; 					padding-left:1em; 			} 	 			div#emailbody table#itemcontentlist tr td div blockquote { 				padding-left:6px; 				border-left: 6px solid #dadada; 				margin-left:1em; 			} 	 			div#emailbody table#itemcontentlist tr td div li { 				margin-bottom:1em; 				margin-left:1em; 			}   			table#itemcontentlist tr td a:link, table#itemcontentlist tr td a:visited, table#itemcontentlist tr td a:active { 				color:#000099; 				font-weight:bold; 				text-decoration:none; 			}	  			img {border:none;}   		&lt;/style&gt; &lt;div xmlns="http://www.w3.org/1999/xhtml" id="emailbody" style="margin:0 2em;font-family:Georgia,Helvetica,Arial,Sans-Serif;line-height:140%;font-size:13px;color:#000000;"&gt; &lt;table style="border:0;padding:0;margin:0;width:100%"&gt; &lt;tr&gt; &lt;td width="99%" style="vertical-align:top"&gt; &lt;h1 style="margin:0;padding-bottom:6px;"&gt; &lt;a style="color:#888;font-size:22px;font-family:Arial,Helvetica,Sans-Serif;font-weight:normal;text-decoration:none;" href="http://skrajend.blogspot.com/" title="(http://skrajend.blogspot.com/)"&gt;Senthil Rajendran's Blog&lt;/a&gt; &lt;/h1&gt; &lt;/td&gt;&lt;td width="1%"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table id="itemcontentlist" style="clear:both;padding-top:.5em;border-top:1px solid #999;"&gt; &lt;tr&gt; &lt;td style=" margin-bottom:0;line-height:1.4em;"&gt; &lt;p xmlns="" style="margin:1em 0 3px 0;line-height:115%;"&gt; &lt;a style="font-family:Arial,Helvetica,Sans-Serif;font-size:18px;" href="http://feeds.feedburner.com/~r/SenthilRajendransBlog/~3/223076142/worlds-fastest-growing-free-market.html"&gt;The world's fastest growing free market democracy&lt;/a&gt; &lt;/p&gt; &lt;p style="font-size:13px;color:#555;margin:9px 0 3px 0;font-family:Georgia,Helvetica,Arial,Sans-Serif;line-height:140%;font-size:13px;"&gt; &lt;span&gt;Posted:&lt;/span&gt; 25 Jan 2008 11:35 AM CST&lt;/p&gt; &lt;div style="margin:0;font-family:Georgia,Helvetica,Arial,Sans-Serif;line-height:140%;font-size:13px;color:#000000;"&gt;&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/WrTjbJcNPdk&amp;rel=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/WrTjbJcNPdk&amp;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table id="footer" style="border-top:1px solid #999;padding-top:4px;margin-top:1.5em;width:100%" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;tr&gt; &lt;td style="text-align:left;font-family:Helvetica,Arial,Sans-Serif;font-size:11px;margin:0 6px 1.2em 0;color:#333;"&gt;You are subscribed to email updates from &lt;a href="http://skrajend.blogspot.com/"&gt;Senthil Rajendran's Blog&lt;/a&gt; &lt;br&gt;To stop receiving these emails, you may &lt;a href="http://www.feedburner.com/fb/a/emailunsub?id=4200876&amp;key=GqHM6HHSRb"&gt;unsubscribe now&lt;/a&gt;.&lt;/td&gt;&lt;td style="font-family:Helvetica,Arial,Sans-Serif;font-size:11px;margin:0 6px 1.2em 0;color:#333;text-align:right;vertical-align:top"&gt;Email Delivery powered by FeedBurner&lt;/td&gt; &lt;/tr&gt; &lt;tr xmlns:atom10="http://www.w3.org/2005/Atom"&gt; &lt;td colspan="2" style="text-align:left;font-family:Helvetica,Arial,Sans-Serif;font-size:11px;margin:0 6px 1.2em 0;color:#333;"&gt;Inbox too full? &lt;a href="http://feeds.feedburner.com/SenthilRajendransBlog"&gt;&lt;img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle" alt="(feed)"&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/SenthilRajendransBlog"&gt;Subscribe&lt;/a&gt; to the feed version of Senthil Rajendran's Blog in a feed reader.&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style="text-align:left;font-family:Helvetica,Arial,Sans-Serif;font-size:11px;margin:0 6px 1.2em 0;color:#333;" colspan="2"&gt;If you prefer to unsubscribe via postal mail, write to: Senthil Rajendran's Blog, c/o FeedBurner, 20 W Kinzie, 9th Floor, Chicago IL USA 60610&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-3601506297248010574?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/3601506297248010574/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=3601506297248010574' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/3601506297248010574'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/3601506297248010574'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/senthil-rajendrans-blog.html' title='Senthil Rajendran&apos;s Blog'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-3944264606852008293</id><published>2008-01-25T23:56:00.001+05:30</published><updated>2009-11-21T06:52:56.862+05:30</updated><title type='text'>A new addition to the SearchSecurity.com family</title><content type='html'>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;SearchSecurity.com This Week - January 25, 2008&lt;br&gt;A newsletter from TechTarget&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;p&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;IN THIS ISSUE:&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;p&gt;&amp;gt; From the Editor: Introducing SearchFinancialSecurity.com&lt;br&gt;&amp;gt; Site Highlights: Missing backup tape prompts identity theft fears &lt;br&gt;&amp;gt; Webcast: Know your roles -- Log monitoring at the application level&lt;p&gt;&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;FROM THE EDITOR&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;p&gt;Introducing SearchFinancialSecurity.com&lt;br&gt;Sarah Lourie, Site Editor, SearchFinancialSecurity.com&lt;p&gt;Calling all security pros who work in the financial sector. We are&lt;br&gt;pleased to announce a Web site specifically for you,&lt;br&gt;SearchFinancialSecurity.com.&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950651/6582435"&gt;http://go.techtarget.com/r/2950651/6582435&lt;/a&gt;&lt;p&gt;Information security for banks and other financial institutions can&lt;br&gt;be a complex and daunting task. To help you find what you&amp;#39;re looking&lt;br&gt;for on the site, we have divided our content into four categories:&lt;br&gt;compliance and governance, technology, management and strategy and&lt;br&gt;business process security. We will update these categories often,&lt;br&gt;keeping you abreast of the latest on regulations, management best&lt;br&gt;practices and technologies.&lt;p&gt;In addition, we have three weekly e-newsletters to deliver the latest&lt;br&gt;expert advice on compliance, data protection and network security to&lt;br&gt;your inbox.&lt;p&gt;&lt;a href="http://go.techtarget.com/r/2950652/6582435"&gt;http://go.techtarget.com/r/2950652/6582435&lt;/a&gt;&lt;p&gt;Take a moment to update your profile and register for our Compliance&lt;br&gt;and Governance Digest, Security Architecture Insider and Data&lt;br&gt;Protection Essentials e-newsletters.&lt;p&gt;&lt;a href="http://go.techtarget.com/r/2950653/6582435"&gt;http://go.techtarget.com/r/2950653/6582435&lt;/a&gt;&lt;p&gt;This is just the beginning. Within the next few months we will&lt;br&gt;introduce new features to help serve you even more. &lt;br&gt; &lt;br&gt;We hope our site becomes an invaluable resource for you and your&lt;br&gt;peers. Take a look around and you won&amp;#39;t be disappointed.&lt;p&gt;So that&amp;#39;s enough from me. I&amp;#39;d love to hear from you. If you have a&lt;br&gt;story to tell, a resource you&amp;#39;re looking for, or just a question,&lt;br&gt;comment or idea, please do not hesitate to contact me!&lt;br&gt;mailto:slourie@techtarget.com?subject=SearchFinancialSecurity%20feedback&lt;br /&gt;&lt;br /&gt;Until next time,&lt;p&gt;Sarah Lourie&lt;p&gt; &lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;SITE HIGHLIGHTS&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;p&gt;Missing backup tape prompts identity theft fears for JC Penney&lt;br&gt;customers&lt;br&gt;GE Money, the firm hired by JC Penney to run its credit card&lt;br&gt;operations, just announced that it is missing a backup tape&lt;br&gt;containing the personal information of about 650,000 shoppers of JC&lt;br&gt;Penney. Visit SearchFinancialSecurity.com to find out more about this&lt;br&gt;potential security breach.&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950654/6582435"&gt;http://go.techtarget.com/r/2950654/6582435&lt;/a&gt;&lt;p&gt;  &lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;PODCASTS &amp;amp; WEBCASTS&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Webcast: Know your roles -- Log monitoring at the application level&lt;br&gt;When: Jan 30th, 2008, 2:00 p.m. (19:00 GMT)&lt;br&gt;Speaker: Rick Caccia, VP of Product Marketing, ArcSight&lt;br&gt;Sponsor: ArcSight, Inc., &lt;a href="http://go.techtarget.com/r/2950655/6582435"&gt;http://go.techtarget.com/r/2950655/6582435&lt;/a&gt;&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950656/6582435"&gt;http://go.techtarget.com/r/2950656/6582435&lt;/a&gt;&lt;p&gt;View all podcasts &amp;amp; webcasts at:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950657/6582435"&gt;http://go.techtarget.com/r/2950657/6582435&lt;/a&gt;&lt;p&gt; &lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;CONTACT US:&lt;br&gt;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;br&gt;Sales&lt;br&gt;For sales inquiries, please contact us at:&lt;br&gt;mailto:jcoffin@techtarget.com&lt;br /&gt;&lt;br /&gt;Editorial&lt;br&gt;For feedback about any of our articles or to send us your article&lt;br&gt;ideas, please contact us at:&lt;br&gt;mailto:eparizo@techtarget.com&lt;br /&gt;&lt;br /&gt;&lt;br&gt;:::::::::::::::::::::::: GET EMAIL UPDATES ::::::::::::::::::::::::&lt;br&gt;Receive Security-related news, tech tips and more delivered directly&lt;br&gt;to your Inbox.&lt;br&gt;SearchSecurity: Security Management&lt;br&gt;SearchSecurity: Platform Security&lt;br&gt;SearchSecurity: Current Threats&lt;p&gt;Click here to subscribe:&lt;p&gt;&lt;a href="http://searchSecurity.techtarget.com/tieredRegPage?track=NL-105&amp;amp;ad=617957&amp;amp;val=0&amp;amp;fmt=text&amp;amp;newsletters=1175317&amp;amp;newsletters=1175315&amp;amp;newsletters=1175313&amp;amp;listIDS=1013128+1013130+1013132&amp;amp;email=naveencl.1978@blogger.com"&gt;http://searchSecurity.techtarget.com/tieredRegPage?track=NL-105&amp;amp;ad=617957&amp;amp;val=0&amp;amp;fmt=text&amp;amp;newsletters=1175317&amp;amp;newsletters=1175315&amp;amp;newsletters=1175313&amp;amp;listIDS=1013128+1013130+1013132&amp;amp;email=naveencl.1978@blogger.com&lt;/a&gt;&lt;p&gt;&lt;br&gt;::::::::::::::::::::: ABOUT THIS E NEWSLETTER ::::::::::::::::::::::&lt;br&gt;This e-newsletter is published by SearchSecurity.com, a targeted Web&lt;br&gt;site from TechTarget, The IT Media ROI Experts and events company.&lt;br&gt;TechTarget offers magazines, Web sites, e-newsletters, Webcasts and&lt;br&gt;conferences for enterprise IT professionals. &lt;br&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Updates on new site content&amp;quot;:&lt;br&gt; &lt;br&gt;Go to unsubscribe: &lt;a href="http://SearchSecurity.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=617957&amp;amp;"&gt;http://SearchSecurity.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=617957&amp;amp;&lt;/a&gt;&lt;p&gt;&lt;br&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;br&gt; &lt;br&gt;Contact us:&lt;br&gt;SearchSecurity&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-3944264606852008293?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/3944264606852008293/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=3944264606852008293' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/3944264606852008293'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/3944264606852008293'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/new-addition-to-searchsecuritycom.html' title='A new addition to the SearchSecurity.com family'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-645972811258641084</id><published>2008-01-25T23:52:00.001+05:30</published><updated>2009-11-21T06:52:56.867+05:30</updated><title type='text'>Webcast &amp; Podcast Roundup: Steps to Improving Your Security Management and more</title><content type='html'>Dear SearchSecurity.com member,&lt;p&gt;View these Online Events recently held on SearchSecurity.com:&lt;p&gt;1. WEBCAST: Steps to Improving Your Security Management&lt;br&gt;2. PODCASTS: Snyder on making the most of your NAC investment &lt;p&gt;====================================================================&lt;br&gt;WEBCAST #1: Steps to Improving Your Security Management&lt;br&gt;====================================================================&lt;br&gt;WHEN:    AVAILABLE NOW ON DEMAND&lt;br&gt;SPEAKER: Matt Deering, McAfee Sales Engineer&lt;br&gt;SPONSOR: CDW&lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2950632/6582435"&gt;http://go.techtarget.com/r/2950632/6582435&lt;/a&gt;&lt;p&gt;        &lt;p&gt;ABOUT THIS VENDOR WEBCAST: &lt;p&gt;View this webcast today and learn about an integrated approach to&lt;br&gt;security that can help your company:&lt;p&gt;* Identify and plug the gaps in your endpoint protection&lt;br&gt;* Reduce down time caused by non-compliant or infected endpoints     &lt;br&gt;  connecting to your network&lt;br&gt;* Effectively reduce the time required to respond to threats&lt;br&gt;* And much more&lt;p&gt;&lt;br&gt;VIEW TODAY:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950633/6582435"&gt;http://go.techtarget.com/r/2950633/6582435&lt;/a&gt;&lt;p&gt;====================================================================&lt;br&gt;PODCASTS #2: Snyder on making the most of your NAC investment&lt;br&gt;====================================================================&lt;br&gt;WHEN:    AVAILABLE NOW ON DEMAND&lt;br&gt;SPEAKER: Joel Snyder, Ph.D.&lt;br&gt;SPONSOR: Symantec &lt;p&gt;&lt;br&gt;ABOUT THESE EXPERT PODCASTS:&lt;p&gt;PODCASTS: Cost Justification of NAC Parts I &amp;amp; II&lt;p&gt;In this Podcast series, Joel Snyder, Senior Partner, Opus One, tells&lt;br&gt;you how to make the most of your NAC investments and gives you tips&lt;br&gt;on how to incorporate NAC into your company&amp;#39;s security strategy.  He&lt;br&gt;will also outline how NAC works with Intrusion Detection and&lt;br&gt;Intrusion Prevention Systems.&lt;p&gt;Listen to these insightful Podcasts here:&lt;p&gt;PODCAST: Cost Justification of NAC Part I&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950634/6582435"&gt;http://go.techtarget.com/r/2950634/6582435&lt;/a&gt;&lt;p&gt;PODCAST: Cost Justification of NAC Part II&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950635/6582435"&gt;http://go.techtarget.com/r/2950635/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;====================================================================&lt;br&gt;NOTE: To access these Online Events, you must: Disable pop up&lt;br&gt;blockers; Disable firewalls blocking streaming media/audio.&lt;br&gt;====================================================================&lt;p&gt;___________________________________________________________________&lt;br&gt;ABOUT THIS E-NEWSLETTER&lt;br&gt;This e-newsletter is published by SearchSecurity.com, a targeted Web&lt;br&gt;site from TechTarget, the IT Media ROI Experts.  TechTarget offers&lt;br&gt;magazines, Web sites, e-newsletters, Webcasts and conferences for&lt;br&gt;enterprise IT professionals. &lt;p&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;_____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Webcast Alert&amp;quot;:&lt;br&gt; &lt;br&gt;Go to unsubscribe: &lt;a href="http://SearchSecurity.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622299&amp;amp;"&gt;http://SearchSecurity.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622299&amp;amp;&lt;/a&gt;&lt;p&gt;&lt;br&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;br&gt; &lt;br&gt;Contact us:&lt;br&gt;SearchSecurity&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-645972811258641084?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/645972811258641084/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=645972811258641084' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/645972811258641084'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/645972811258641084'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/webcast-podcast-roundup-steps-to.html' title='Webcast &amp; Podcast Roundup: Steps to Improving Your Security Management and more'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-4768037322347211334</id><published>2008-01-25T23:21:00.001+05:30</published><updated>2009-11-21T06:52:56.877+05:30</updated><title type='text'>Webcast Roundup: Disk-Based Backup &amp; Recovery and more</title><content type='html'>Dear SearchStorage.com member,&lt;p&gt;View these Webcasts recently held on SearchStorage.com:&lt;p&gt;1. Disk-Based Backup &amp;amp; Recovery&lt;br&gt;2. Exploring Various Data Protection Scenarios for Better Disaster   &lt;br&gt;   Preparedness&lt;br&gt;3. Disaster Recovery -- It&amp;#39;s All About the Data!&lt;p&gt;====================================================================&lt;br&gt;WEBCAST #1: Disk-Based Backup &amp;amp; Recovery&lt;br&gt;====================================================================&lt;br&gt;WHEN:    AVAILABLE NOW ON DEMAND&lt;br&gt;SPEAKER: Jason Anderson, Storage Architect, Datalink&lt;br&gt;SPEAKER: Andy Nelson, Storage Architect, Datalink&lt;br&gt;SPONSOR: Datalink/NetApp&lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2950446/6582435"&gt;http://go.techtarget.com/r/2950446/6582435&lt;/a&gt;&lt;p&gt;        &lt;p&gt;ABOUT THIS VENDOR WEBCAST: &lt;p&gt;Disk-based backup has become a viable option in organizations large&lt;br&gt;and small. However, you don&amp;#39;t want to just implement disk into your&lt;br&gt;infrastructure because it&amp;#39;s &amp;quot;the latest thing to do.&amp;quot; Disk-based&lt;br&gt;backup should be utilized for the RIGHT reasons and this Webcast will&lt;br&gt;explain what those reasons are.&lt;p&gt;Featuring seasoned experts in the field, this Webcast covers&lt;br&gt;important topics, such as:&lt;p&gt;* How to eliminate the hassles of tape and shorten RPOs and RTOs&lt;br&gt;* Ways you can better manage backup and recovery processes&lt;br&gt;* Which disk-based backup architectures work best under various      &lt;br&gt;  conditions&lt;br&gt;* How deduplication factors into a disk-based backup strategy &lt;br&gt;* And more&lt;p&gt;View this Webcast to discover more.&lt;p&gt;VIEW TODAY:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950447/6582435"&gt;http://go.techtarget.com/r/2950447/6582435&lt;/a&gt;&lt;p&gt;====================================================================&lt;br&gt;WEBCAST #2: Exploring Various Data Protection Scenarios for Better   &lt;br&gt;            Disaster Preparedness&lt;br&gt;====================================================================&lt;br&gt;WHEN:    AVAILABLE NOW ON DEMAND&lt;br&gt;SPEAKER: Jerome Wendt, President &amp;amp; Lead Analyst of DCIG, Inc.&lt;br&gt;SPONSOR: CA&lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2950448/6582435"&gt;http://go.techtarget.com/r/2950448/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;ABOUT THIS VENDOR WEBCAST:&lt;p&gt;Disaster recovery processes have fundamentally changed over the&lt;br&gt;years. They now require faster data recovery times, little&lt;br&gt;administrative burdens and must be more reliable than ever.&lt;br&gt;Fortunately, using CDP for DR can help you meet these requirements&lt;br&gt;and provide a number of other benefits.&lt;p&gt;View this Webcast, featuring Jerome Wendt, noted technologist and&lt;br&gt;lead analyst at DCIG Inc, to learn more about how using CDP for DR&lt;br&gt;works and the benefits it offer, such as:&lt;p&gt;* Lower DR costs and risks &lt;br&gt;* Improved RPOs and RTOs&lt;br&gt;* Provides automated failovers&lt;br&gt;* Allows for minimal administrative overhead &lt;br&gt;* And more&lt;p&gt;View this Webcast to learn more.&lt;p&gt;VIEW TODAY:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950449/6582435"&gt;http://go.techtarget.com/r/2950449/6582435&lt;/a&gt;&lt;p&gt;====================================================================&lt;br&gt;WEBCAST #3: Disaster Recovery -- It&amp;#39;s All About the Data!&lt;br&gt;====================================================================&lt;br&gt;WHEN:    AVAILABLE NOW ON DEMAND&lt;br&gt;SPEAKER: Bill Peldzus, Director, Business Continuity/Disaster        &lt;br&gt;         Recovery &amp;amp; Data Center, GlassHouse Technologies, Inc. &lt;br&gt;SPONSOR: Fujitsu Computer Systems&lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2950450/6582435"&gt;http://go.techtarget.com/r/2950450/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;ABOUT THIS EXPERT WEBCAST:&lt;p&gt;In this Webcast, storage expert Bill Peldzus from GlassHouse&lt;br&gt;Technologies, covers the major concepts of disaster recovery -&lt;br&gt;including definitions of key terms. He also explores the concepts and&lt;br&gt;architecture behind storage, infrastructure, and the data center. &lt;p&gt;&lt;br&gt;VIEW TODAY:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950451/6582435"&gt;http://go.techtarget.com/r/2950451/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;====================================================================&lt;br&gt;NOTE: To access these Webcasts, you must: Disable pop up blockers;&lt;br&gt;Disable firewalls blocking streaming media/audio.&lt;br&gt;====================================================================&lt;p&gt;___________________________________________________________________&lt;br&gt;ABOUT THIS E-NEWSLETTER&lt;br&gt;This e-newsletter is published by SearchStorage.com, a targeted Web&lt;br&gt;site from TechTarget, the IT Media ROI Experts.  TechTarget offers&lt;br&gt;magazines, Web sites, e-newsletters, Webcasts and conferences for&lt;br&gt;enterprise IT professionals. &lt;p&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;_____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Webcast Alert&amp;quot;:&lt;br&gt; &lt;br&gt;Go to unsubscribe: &lt;a href="http://SearchStorage.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622305&amp;amp;"&gt;http://SearchStorage.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622305&amp;amp;&lt;/a&gt;&lt;p&gt;&lt;br&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;br&gt; &lt;br&gt;Contact us:&lt;br&gt;SearchStorage&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-4768037322347211334?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/4768037322347211334/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=4768037322347211334' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4768037322347211334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4768037322347211334'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/webcast-roundup-disk-based-backup.html' title='Webcast Roundup: Disk-Based Backup &amp; Recovery and more'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-9183648143865410329</id><published>2008-01-25T22:35:00.001+05:30</published><updated>2009-11-21T06:52:56.882+05:30</updated><title type='text'>Webcast Roundup: Enabling Your Strategic Investment in SOA with Governance and Organizational Change and more</title><content type='html'>Dear SearchSOA.com member,&lt;p&gt;View these Webcasts recently held on SearchSOA.com:&lt;p&gt;1. Enabling Your Strategic Investment in SOA with Governance and     &lt;br&gt;   Organizational Change&lt;br&gt;2. Creating Value with BPM that works in the &amp;quot;Real World&amp;quot; &lt;p&gt;====================================================================&lt;br&gt;WEBCAST #1: Enabling Your Strategic Investment in SOA with           &lt;br&gt;            Governance and Organizational Change&lt;br&gt;====================================================================&lt;br&gt;WHEN:    AVAILABLE NOW ON DEMAND&lt;br&gt;SPEAKER: Bruce Guptill, Managing Director, Saugatuck Technology&lt;br&gt;SPEAKER: Sandy Poi, Associate Partner and Global SOA Governance      &lt;br&gt;         Offerings Lead, IBM&lt;br&gt;SPONSOR: IBM&lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2950056/6582435"&gt;http://go.techtarget.com/r/2950056/6582435&lt;/a&gt;&lt;p&gt;        &lt;br&gt;ABOUT THIS VENDOR WEBCAST: &lt;p&gt;The strategic business value of SOA will be critical for your&lt;br&gt;organization in 2008. This Web Seminar will highlight the importance&lt;br&gt;of SOA governance and organizational change, and give you actual case&lt;br&gt;studies illustrating the benefits and challenges based on recent&lt;br&gt;customer experience. &lt;p&gt;Join our expert panel featuring Bruce Guptill of Saugatuck&lt;br&gt;Technology, a leading SOA analyst group, and Sandy Poi, Associate&lt;br&gt;Partner and Global SOA Governance Offerings Lead from IBM as they&lt;br&gt;discuss: &lt;p&gt;* SOA&amp;#39;s direction for 2008 &lt;br&gt;* The value of good SOA governance for your company &lt;br&gt;* The challenges of SOA implementation &lt;br&gt;* The critical role and tangible benefits of governance and          &lt;br&gt;  organization change in supporting SOA in 2008 &lt;p&gt;Have your questions answered in a live question and answer session&lt;br&gt;with our special featured speakers.&lt;p&gt;All registrants that attend the live Web Seminar will receive a copy&lt;br&gt;of the recent IBM white paper on Enabling SOA through organizational&lt;br&gt;change and governance authored by Sandy Poi, and the Saugatuck white&lt;br&gt;paper SOA Governance: Necessary Protection for a Strategic Business&lt;br&gt;Investment.&lt;p&gt;&lt;br&gt;VIEW TODAY:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950057/6582435"&gt;http://go.techtarget.com/r/2950057/6582435&lt;/a&gt;&lt;p&gt;====================================================================&lt;br&gt;WEBCAST #2: Creating Value with BPM that works in the &amp;quot;Real World&amp;quot;&lt;br&gt;====================================================================&lt;br&gt;WHEN:    AVAILABLE NOW ON DEMAND&lt;br&gt;SPEAKER: Daryl Plummer, Managing VP &amp;amp; Gartner Fellow, Gartner        &lt;br&gt;         Research&lt;br&gt;SPEAKER: Jeff Beusse, Sr. Director, Front Office Application         &lt;br&gt;         Development, XM Satellite Radio&lt;br&gt;SPEAKER: Dale Skeen, CTO and Founder, Vitria Technology&lt;br&gt;SPONSOR: Vitria&lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2950058/6582435"&gt;http://go.techtarget.com/r/2950058/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;ABOUT THIS VENDOR WEBCAST:&lt;p&gt;This Webcast details the best practices for optimizing business&lt;br&gt;process management and flexibility. In this Webcast, you will explore&lt;br&gt;the common pitfalls organizations experience with BPM and the&lt;br&gt;complimentary relationship that exists between SOA and BPM. Through&lt;br&gt;actual customer experiences, you will discover how selecting the most&lt;br&gt;appropriate BPM technology and instilling a natural collaboration&lt;br&gt;between business and technology can enhance process flexibility.&lt;p&gt;VIEW TODAY:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950059/6582435"&gt;http://go.techtarget.com/r/2950059/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;====================================================================&lt;br&gt;NOTE: To access these Webcasts, you must: Disable pop up blockers;&lt;br&gt;Disable firewalls blocking streaming media/audio.&lt;br&gt;====================================================================&lt;p&gt;___________________________________________________________________&lt;br&gt;ABOUT THIS E-NEWSLETTER&lt;br&gt;This e-newsletter is published by SearchSOA.com, a targeted Web site&lt;br&gt;from TechTarget, the IT Media ROI Experts.  TechTarget offers&lt;br&gt;magazines, Web sites, e-newsletters, Webcasts and conferences for&lt;br&gt;enterprise IT professionals. &lt;p&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;_____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Webcast Alert&amp;quot;:&lt;br&gt; &lt;br&gt;Go to unsubscribe: &lt;a href="http://SearchSOA.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622336&amp;amp;"&gt;http://SearchSOA.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622336&amp;amp;&lt;/a&gt;&lt;p&gt;&lt;br&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;br&gt; &lt;br&gt;Contact us:&lt;br&gt;SearchSOA&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-9183648143865410329?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/9183648143865410329/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=9183648143865410329' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/9183648143865410329'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/9183648143865410329'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/webcast-roundup-enabling-your-strategic.html' title='Webcast Roundup: Enabling Your Strategic Investment in SOA with Governance and Organizational Change and more'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-4036733601423424054</id><published>2008-01-25T22:32:00.001+05:30</published><updated>2009-11-21T06:52:56.885+05:30</updated><title type='text'>Webcast &amp; Podcast Roundup: Data Warehousing Software Update: Bill Inmon Makes the Case for DW 2.0</title><content type='html'>Dear SearchDataManagement.com member,&lt;p&gt;View these Online Events recently held on SearchDataManagement.com:&lt;p&gt;1. WEBCAST: Legal Discovery: Identifying the CIO&amp;#39;s Role in &lt;br&gt;            Safeguarding the Business&lt;br&gt;2. PODCAST: Data warehousing software update: Bill Inmon makes the &lt;br&gt;            case for DW 2.0&lt;br&gt;3. WEBCAST: Ensure Product Data Quality with Advanced Data Cleansing&lt;p&gt;====================================================================&lt;br&gt;WEBCAST #1: Legal Discovery: Identifying the CIO&amp;#39;s Role in &lt;br&gt;            Safeguarding the Business&lt;br&gt;====================================================================&lt;br&gt;WHEN:    AVAILABLE ON DEMAND&lt;br&gt;SPEAKER: Michael Rasmussen, Founder, Corp-Integrity&lt;br&gt;SPONSOR: Pitney Bowes Group 1 Software&lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2949999/6582435"&gt;http://go.techtarget.com/r/2949999/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;ABOUT THIS EXPERT WEBCAST: &lt;br&gt;Prioritizing compliance and risk mitigation is challenging when faced&lt;br&gt;with limitless scenario and legal requirements. Current laws prohibit&lt;br&gt;organizations from doing business with other companies or countries&lt;br&gt;who are involved with unethical labor or business practices. &lt;p&gt;Attend this Webcast to learn how to safeguard your company from&lt;br&gt;threats and avoid problems in terms of business impact, compliance&lt;br&gt;and business relationships. Explore how you can mitigate risks and&lt;br&gt;meet compliance requirements as well as:&lt;p&gt;* Design processes and IT for requirements and resiliency. &lt;br&gt;* Create a state of total situational awareness.&lt;br&gt;* Integrate holistic security measures.&lt;p&gt;VIEW WEBCAST:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950001/6582435"&gt;http://go.techtarget.com/r/2950001/6582435&lt;/a&gt;&lt;p&gt;====================================================================&lt;br&gt;PODCAST #2: Data warehousing software update: Bill Inmon makes the &lt;br&gt;            case for DW 2.0&lt;br&gt;====================================================================&lt;br&gt;WHEN:    AVAILABLE ON DEMAND&lt;br&gt;SPEAKER: Bill Inmon, Founder, President and Chief Technology &lt;br&gt;         Officer, Inmon Data Systems&lt;br&gt;SPONSOR: Kalido&lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2950003/6582435"&gt;http://go.techtarget.com/r/2950003/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;ABOUT THIS EXPERT PODCAST:&lt;br&gt;Many data warehouses are missing some key architectural elements.&lt;br&gt;Data warehouses with the DW 2.0 certification differ greatly from&lt;br&gt;first-generation products. Hear this expert podcast with Bill Inmon&lt;br&gt;to learn four main components of the DW 2.0 architecture and how they&lt;br&gt;support enhance performance and organizational agility. Learn how the&lt;br&gt;DW 2.0 architecture can allow you to:&lt;p&gt;* The main differences between a DW 2.0 data warehouse and a first &lt;br&gt;  generation data warehouse.&lt;br&gt;* Lower data warehousing costs.&lt;br&gt;* Make better use of structured and unstructured data.&lt;br&gt;* Develop and agile data warehousing foundation that can evolve and &lt;br&gt;  change over time.&lt;p&gt;DOWNLOAD PODCAST:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950005/6582435"&gt;http://go.techtarget.com/r/2950005/6582435&lt;/a&gt;&lt;p&gt;====================================================================&lt;br&gt;WEBCAST #3: Ensure Product Data Quality with Advanced Data Cleansing&lt;br&gt;====================================================================&lt;br&gt;WHEN:    AVAILABLE ON DEMAND&lt;br&gt;SPEAKER: Bill Rojas, Product Marketing Manager, Business Objects&lt;br&gt;SPEAKER: Ina Mutschelknaus, Product Manager, Business Objects&lt;br&gt;SPONSOR: Business Objects &lt;br&gt;       &lt;p&gt;&lt;a href="http://go.techtarget.com/r/2950007/6582435"&gt;http://go.techtarget.com/r/2950007/6582435&lt;/a&gt;&lt;p&gt;&lt;br&gt;ABOUT THIS VENDOR WEBCAST:&lt;br&gt;View this Webcast to learn how you can uncover and fix data problems&lt;br&gt;to ensure quality data. Increase operational performance through&lt;br&gt;improved product data quality and reliability with the ability to:&lt;p&gt;* Standardize data to manage spend analysis.&lt;br&gt;* Identify overlapping product attributes and increase visibility &lt;br&gt;  into inventory.&lt;br&gt;* Centralize storage of product-specific data in a repository.&lt;p&gt;Bring product experts and data quality developers together through a&lt;br&gt;collaborative workflow.&lt;p&gt;VIEW WEBCAST:&lt;br&gt;&lt;a href="http://go.techtarget.com/r/2950009/6582435"&gt;http://go.techtarget.com/r/2950009/6582435&lt;/a&gt;&lt;p&gt;====================================================================&lt;br&gt;NOTE: To access these Online Events, you must: Disable pop up&lt;br&gt;blockers; Disable firewalls blocking streaming media/audio.&lt;br&gt;====================================================================&lt;p&gt;___________________________________________________________________&lt;br&gt;ABOUT THIS E-NEWSLETTER&lt;br&gt;This e-newsletter is published by SearchDataManagement.com, a&lt;br&gt;targeted Web site from TechTarget, the IT Media ROI Experts. &lt;br&gt;TechTarget offers magazines, Web sites, e-newsletters, Webcasts and&lt;br&gt;conferences for enterprise IT professionals. &lt;p&gt;Copyright 2008 TechTarget. All rights reserved.&lt;p&gt;____________________________________________________________________&lt;p&gt;To unsubscribe from &amp;quot;Webcast Alert&amp;quot;:&lt;p&gt;Go to unsubscribe: &lt;a href="http://SearchDataManagement.techtarget.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622343&amp;amp;track=NL-546"&gt;http://SearchDataManagement.techtarget.com/u?em=naveencl.1978%40blogger.com&amp;amp;uid=6582435&amp;amp;cid=622343&amp;amp;track=NL-546&lt;/a&gt;&lt;p&gt;Please note, unsubscribe requests may take up to 24 hours to process;&lt;br&gt;you may receive additional mailings during that time. A confirmation&lt;br&gt;e-mail will be sent when your request has been successfully&lt;br&gt;processed.&lt;p&gt;Contact us:&lt;br&gt;SearchDataManagement&lt;br&gt;Member Services&lt;br&gt;117 Kendrick Street, Suite 800&lt;br&gt;Needham, MA 02494&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-4036733601423424054?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/4036733601423424054/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=4036733601423424054' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4036733601423424054'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4036733601423424054'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2008/01/webcast-podcast-roundup-data.html' title='Webcast &amp; Podcast Roundup: Data Warehousing Software Update: Bill Inmon Makes the Case for DW 2.0'/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-6624717387007075070</id><published>2007-07-05T13:04:00.000+05:30</published><updated>2007-07-05T13:08:04.728+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='unexpected exception'/><category scheme='http://www.blogger.com/atom/ns#' term='ORACLE Jinitiator'/><category scheme='http://www.blogger.com/atom/ns#' term='I.E. 7'/><category scheme='http://www.blogger.com/atom/ns#' term='EXCEPTION_ACCESS_VIOLATION'/><title type='text'></title><content type='html'>I.E. 7 and ORACLE Jinitiator&lt;br /&gt;Many of you might have faced errors for Jinitiator in I.E. 7 &lt;br /&gt;1. An unexpected exception has been detected in native code outside the VM.&lt;br /&gt;Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x77EA2242&lt;br /&gt;&lt;br /&gt;or &lt;br /&gt;2. abrupt crash of I.E. 7 etc &lt;br /&gt;&lt;br /&gt;This is due to some IE7 addons &lt;br /&gt;&lt;br /&gt;I happen to fix these issues in the following way . &lt;br /&gt;&lt;br /&gt;Open I.E. 7 &gt; Tools &gt; Manager Add-ons  &gt; Enable or Disable Add-ons &lt;br /&gt;Take add-ons currently loaded in I.E.  in drop down. &lt;br /&gt;&lt;br /&gt;Disable all those which not really required. &lt;br /&gt;You may have to try enable disable combinations to find out which is causing the problem. &lt;br /&gt;For me,  I found Skype plugins were the issue.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Disable Windows Live Sign-in Helper  - This will solve the 2nd Error. &lt;br /&gt;&lt;br /&gt;You may do update this blog with further findings,&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-6624717387007075070?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/6624717387007075070/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=6624717387007075070' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/6624717387007075070'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/6624717387007075070'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2007/07/i.html' title=''/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31087744.post-4687396515758383994</id><published>2007-05-25T15:48:00.001+05:30</published><updated>2007-05-25T17:30:44.955+05:30</updated><title type='text'></title><content type='html'>Few ORACLE Thoughts &lt;br /&gt;=====================================&lt;br /&gt;For ORACLE Applications 11i - Custom objects &lt;br /&gt;Oracle recommends you use at least four characters , &lt;br /&gt; then followed by an underscore in your naming convention for your custom application objects. (e.g. XBOL_ or a four letter code for your complay name e.g ORCL_)  &lt;br /&gt; Oracle usually uses any two or three characters followed by an underscore for standard Oracle  objects. &lt;br /&gt; So to be on safer side the best practice is to create a custom scheam for all custom objects, &lt;br /&gt; and then give access right to apps and other required scheams. &lt;br /&gt; Then create synonyms in Apps for these custom objects. &lt;br /&gt;=====================================&lt;br /&gt;&lt;br /&gt;If you are a Apps DBA ,&lt;br /&gt;it can can be dubious  which database you are connected to - e.g. Prod, Test, Dev.  &lt;br /&gt;To Avoid this confusion  go to your Systems Administrator responsibility and change the  Profile option called 'Site Name'.  &lt;br /&gt;Set this to SID / Instance / or a user friendly name. &lt;br /&gt;This will be shown as the title of the forms window. and as well as  Help &gt; About Oracle Applications  will display this. &lt;br /&gt;=====================================&lt;br /&gt;&lt;br /&gt;If a column contains no NULLs then create a NOT NULL constraint &lt;br /&gt;in cases where it will improve the quality of information available to the Cost Based Optimizer&lt;br /&gt;The CBO makes different decisions based on whether it is possible for a column to contains NULLs&lt;br /&gt;&lt;br /&gt;=====================================&lt;br /&gt;&lt;br /&gt;Few things to look at long running import &lt;br /&gt;&lt;br /&gt;Free MB from dba_free_space---  Should be reducing in a timly manner &lt;br /&gt;&gt; select sum(bytes)/1024/1024  Free_MB from dba_free_space;&lt;br /&gt;&lt;br /&gt;Last DDL Time---There should not be too much diff between sysdate and last_ddl &lt;br /&gt;&gt; select TO_CHAR((MAX(LAST_DDL_TIME)),'"'DD-MON-YYYY HH24:MI:SS'"') LAST_DDL, &lt;br /&gt;TO_CHAR(sysdate,'"'DD-MON-YYYY HH24:MI:SS'"') sys_date from dba_objects; &lt;br /&gt;&lt;br /&gt;Tablespace where 80% is Full---  Add space to the tablespaces listed in the result. &lt;br /&gt;&gt; select a.TABLESPACE_NAME, a.MAX, b.USED, round((b.USED/a.MAX)*100,2) PCT &lt;br /&gt;from (select TABLESPACE_NAME, sum(MAXBYTES/1024/1024) MAX from dba_Data_files group by TABLESPACE_NAME) a,&lt;br /&gt;(select tablespace_name, sum(bytes/1024/1024) USED from dba_segments group by tablespace_name) b&lt;br /&gt;where a.TABLESPACE_NAME=b.TABLESPACE_NAME and b.USED &gt; a.MAX *(80/100);&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31087744-4687396515758383994?l=naveencl.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://naveencl.blogspot.com/feeds/4687396515758383994/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31087744&amp;postID=4687396515758383994' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4687396515758383994'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31087744/posts/default/4687396515758383994'/><link rel='alternate' type='text/html' href='http://naveencl.blogspot.com/2007/05/few-oracle-thoughts-oracle-recommends.html' title=''/><author><name>Naveen</name><uri>http://www.blogger.com/profile/08671427179840755765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry></feed>
