<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.6" -->
<rss version="0.92">
<channel>
	<title>Development Standards</title>
	<link>http://www.devstandards.net</link>
	<description>Thinking Beyond Programming</description>
	<lastBuildDate>Thu, 14 Aug 2008 06:41:01 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Javascript getElementById Issue in Firefox</title>
		<description><![CDATA[I'm working on an Javascript code. This web application is retrieving value from a couple of textbox fields and concatenate in result textbox field.  I tested the web application in Internet Explorer and it work fine. But when I'm testing in Firefox, the value is not passed to the textbox field.
Here is the original [...]]]></description>
		<link>http://www.devstandards.net/web/javascript/javascript-getelementbyid-issue-in-firefox.html</link>
			</item>
	<item>
		<title>Oracle Enterprise 2.0 Bootcamp</title>
		<description><![CDATA[Companies are using Web 2.0 technologies such as blogs, wiki and social networking.  However, there are top issues that need to be considered before implementing such technologies. They are cultural change, privacy, best practices and internal collaboration. Assessment of the impact of implementation to the organization is needed. 
Oracle organized Oracle Enterprise 2.0 Bootcamp [...]]]></description>
		<link>http://www.devstandards.net/oracle/oracle-enterprise-20-bootcamp.html</link>
			</item>
	<item>
		<title>Oracle Architecture Centers</title>
		<description><![CDATA[To support Oracle's investment to Service Oriented Architecture and acquisition of various SOA related products, Oracle created Architect Centers for SOA, Virtualization, Enterprise 2.0 and Extreme Transaction Processing in OTN website.

OTN is adding an "Architect" focus to the community, with new centers covering expanded SOA (including governance), Extreme Transaction Processing, Virtualization (Oracle VM + JRockit [...]]]></description>
		<link>http://www.devstandards.net/oracle/oracle-architecture-centers.html</link>
			</item>
	<item>
		<title>Wehmeyer Choosed Oracle Retail Optimization</title>
		<description><![CDATA[Wehmeyer, a German fashion house, selected Oracle Retail Optimization to avail the efficiency in improving the inventory management.  Oracle Retail Application introduced Wehmeyer an advanced approach in managing in-season inventory, assortment and pricing strategies across its 40 stores across Germany.
Wehmeyer is expected to enjoy the following benefits of Oracle Retail Optimization.
Oracle Retail Price Optimization [...]]]></description>
		<link>http://www.devstandards.net/oracle/wehmeyer-choosed-oracle-retail-optimization.html</link>
			</item>
	<item>
		<title>Reading CSV File Using C Program</title>
		<description><![CDATA[Since I'm on an integration project, I'm mostly dealing with transferring of data from two or more systems whether it's from the legacy system or newly implemented system. Most of the type of data movement is sending CSV files to and from the different system. Here is a simple tutorial on how to read CSV. [...]]]></description>
		<link>http://www.devstandards.net/software-development/integration/reading-csv-file-using-c-program.html</link>
			</item>
	<item>
		<title>Validating Numeric and Non-Numeric Values</title>
		<description><![CDATA[To check if numeric and non-numeric values, the following syntax can be use.
Syntax
PLAIN TEXT
CODE:




select DECODE&#40; TRANSLATE&#40;&#60;value here&#62;,'0123456789',' '&#41;, NULL, 'Numeric','Character'&#41; 


&#160;from dual; 






Example
PLAIN TEXT
CODE:




select DECODE&#40; TRANSLATE&#40;'12345Z','0123456789',' '&#41;, NULL, 'Numeric','Character'&#41; 


&#160;from dual; 






The example above will return 'Character' because the value has non-numeric characters.
Random Posts

Oracle 10g Regular Expressions (0)
How to display newline in Excel? (0)
NoSpam! - [...]]]></description>
		<link>http://www.devstandards.net/oracle/validating-numeric-and-non-numeric-values.html</link>
			</item>
	<item>
		<title>Determine the File Count in Unix Directory</title>
		<description><![CDATA[To determine the number of files in the Unix directory, use the following command.
PLAIN TEXT
CODE:




ls -l &#124; grep -c "^-.*" 






Related Posts

Writing Files in Unix (0)
Merging Files in Unix (0)

]]></description>
		<link>http://www.devstandards.net/software-development/unix/determine-the-file-count-in-unix-directory.html</link>
			</item>
	<item>
		<title>Merging Files in Unix</title>
		<description><![CDATA[You have multiple files in containing data in similar format and wanted to consolidate in a single file.  This is usually the case if you have a daily log that you want to place an archive copy in a single file in weekly or in monthly, yearly.
The basic syntax of merging file is 
PLAIN [...]]]></description>
		<link>http://www.devstandards.net/software-development/unix/merging-files-in-unix.html</link>
			</item>
	<item>
		<title>Writing Files in Unix</title>
		<description><![CDATA[To write files in Unix, the syntax is
PLAIN TEXT
CODE:




echo &#60;text&#62; &#62; &#60;filename&#62; 






Example
PLAIN TEXT
CODE:




echo "This is my message." &#62; myfile.txt 






To add another line in the myfile.txt, use the following syntax.
PLAIN TEXT
CODE:




echo "This is my second message." &#62;&#62;&#160; myfile.txt 






You may notice that double greater than sign (>>) is used instead of single greater than [...]]]></description>
		<link>http://www.devstandards.net/software-development/unix/writing-files-in-unix.html</link>
			</item>
	<item>
		<title>Loading CSV in Oracle Forms</title>
		<description><![CDATA[Yesterday, I and my team mates conducted a brownbag session about a functionality that allows loading of CSV files to a database table. The general overview of this functionality is to call a Unix shell script that invokes SQL Loader to load the CSV to the table.
The first stage is uploading the CSV file from [...]]]></description>
		<link>http://www.devstandards.net/oracle/loading-csv-in-oracle-forms.html</link>
			</item>
</channel>
</rss>
