<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;DUQARHc4fyp7ImA9WhRWGUU.&quot;"><id>tag:blogger.com,1999:blog-13815523</id><updated>2012-01-07T20:49:05.937-05:00</updated><title>TechieTraits</title><subtitle type="html">For all the traits of the TECHIES!</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://techietraits.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>49</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/Techietraits" /><feedburner:info uri="techietraits" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;C0MMQ3czcSp7ImA9WhRWFE4.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-1777468301189080199</id><published>2012-01-01T10:11:00.039-05:00</published><updated>2012-01-01T10:24:42.989-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-01T10:24:42.989-05:00</app:edited><title>Tuning &amp; Strengthening SSL  - Apache web server</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size: x-large;"&gt;&lt;u&gt;&lt;span style="font-size: large;"&gt;Importance of SSL&lt;/span&gt;&amp;nbsp;&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size: large;"&gt;S&lt;/span&gt;SL - Secure Socket Layer is enabled via a series of communications and encryption/decrypting routines that already exit on browser programs and servers. The function of SSL certificates is to provide authentication of the identity of the server and to allow access to the security functionality of the web server itself.&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;During an SSL transaction, the client browser sends a list of algorithms that it is willing to support to the server. The server chooses one of these algorithms and sends it back to the client browser along with a certificate containing the server’s public key. The certificate serves the purpose of authenticating the server to the client. It then provides the public key that the client can then use to encrypt a pre-master-secret that is ultimately used to help create a symmetric key that is shared by both the client and server to encrypt traffic between themselves. The key item of note here is that the SSL encryption strength is not determined by the certificate, but is a function of the algorithms supported by the browser and server software.&lt;br /&gt;
&lt;br /&gt;
During this SSL “handshake” - the browser and web agree to use the supporting cipher suite that meets the minimum requirements set-up on the application server -- whether it be 40-bit, 128-bit or even 256-bit. &lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size: large;"&gt;&lt;u&gt;Strengthening SSLCipher&lt;/u&gt;&lt;/span&gt; &lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size: large;"&gt;C&lt;/span&gt;onsidering the importance of SSL communications between the browser &amp;amp; web, its very vital to remove the low level bit cipher from Web-Server configuration. We can achieve this by adding in httpd.conf:&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #274e13;"&gt;SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:!MEDIUM:!LOW:!SSLv2:!EXPORT&lt;br /&gt;
SSLProtocol -ALL +SSLv3 +TLSv1&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: black; font-size: large;"&gt;&lt;u&gt;Enabling SSLCache for High Performance&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: black;"&gt;&lt;span style="font-size: large;"&gt;B&lt;/span&gt;y adding &lt;/span&gt;&lt;span style="color: #274e13;"&gt;SSLSessionCache shm:/etc/httpd/logs/ssl_gcache_data(512000) &lt;/span&gt;&lt;span style="color: black;"&gt;to httpd.conf file, we can boost performance with SSL Cache which enables SSL-delivered downloads faster and reduce the network requests - if any requests are repeated from any network/client machine.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size: large;"&gt;&lt;u&gt;Tool to check SSL Vulnerabilities&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size: large;"&gt;S&lt;/span&gt;SLScan - a fast SSL vulnerability scanner for ports,ciphers &amp;amp; their strengths on the existing SSL on any webserver. It provides very good insight&amp;nbsp;of all&amp;nbsp;details of current SSL installed on a website. Its can be downloaded from &amp;nbsp;&lt;a href="http://sourceforge.net/projects/sslscan/"&gt;http://sourceforge.net/projects/sslscan/&lt;/a&gt;&amp;nbsp;or using yum in linux:&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #274e13;"&gt;# yum list sslscan &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: black;"&gt;The above command can be used to see the available versions in the current repos of that particular Linux flavour Operating system. Once satisfied with the availability, one can install sslscan using:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #274e13;"&gt;# yum install sslscan&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: black;"&gt;once the Installation completed, you can test the SSL on any given website using:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #274e13;"&gt;# sslscan --no-failed &lt;/span&gt;&lt;a href="http://www.example.com/"&gt;&lt;span style="color: #274e13;"&gt;www.example.com&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: black;"&gt;This will provide a clean report of&amp;nbsp;all accepted ciphers only. For further usage of the SSLScan, one can use:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #274e13;"&gt;# man sslscan&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: black;"&gt;Once the above SSLCipher &amp;amp; SSLCache added to httpd.conf file, please make sure you restart the Apache server and then execute:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #274e13;"&gt;# sslscan --no-failed &lt;/span&gt;&lt;a href="http://www.example.com/"&gt;&lt;span style="color: #274e13;"&gt;www.example.com&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #274e13;"&gt;&lt;/span&gt;&amp;nbsp;&lt;span style="color: black;"&gt;to confirm the changes.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Good Luck. &lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-1777468301189080199?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ZO5ewUDPsnOjVeRWm1DsC2BnxLM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ZO5ewUDPsnOjVeRWm1DsC2BnxLM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ZO5ewUDPsnOjVeRWm1DsC2BnxLM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ZO5ewUDPsnOjVeRWm1DsC2BnxLM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/am01seCf7R4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/1777468301189080199/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2012/01/tuning-strengthening-ssl-apache-web.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/1777468301189080199?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/1777468301189080199?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/am01seCf7R4/tuning-strengthening-ssl-apache-web.html" title="Tuning &amp; Strengthening SSL  - Apache web server" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2012/01/tuning-strengthening-ssl-apache-web.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkYCQX08eip7ImA9WhRWFE8.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-8281806453354306108</id><published>2012-01-01T08:09:00.006-05:00</published><updated>2012-01-01T08:22:40.372-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-01T08:22:40.372-05:00</app:edited><title>Setting up Secure FTP w/wo SSH connectivity - CentOS 5</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;Hello folks - today I will be sharing about SFTP. &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;SFTP is an acronym for Secure File Transfer Protocol. SFTP, or secure FTP, is a program that uses SSH to transfer files. Unlike standard FTP, it encrypts both commands and data, preventing passwords and sensitive information from being transmitted in the clear over the network. It is functionally similar to FTP, but because it uses a different protocol, you can't use a standard FTP client to talk to an SFTP server, nor can you connect to an FTP server with a client that supports only SFTP. &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;Now, in this article I&amp;nbsp; will be providing necessary configuration details for configuring SFTP server to transfer files &amp;amp; with / with out SSH access by a SFTP user account. &lt;/span&gt;We will be using OpenSSH 5.8 for this configuration. First we need to install the necessary dependencies for the OpenSSH package. &lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;span style="background-color: white; color: #38761d;"&gt;# yum install gcc&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #38761d; text-align: justify;"&gt;# yum install openssl-devel&lt;/div&gt;&lt;div style="color: #38761d; text-align: justify;"&gt;# yum install pam-devel&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #38761d;"&gt; # yum install rpm-build &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Now, downloading the OpenSSH package:-&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #274e13;"&gt;# wget http://openbsd.org.ar/pub/OpenBSD/OpenSSH/portable/openssh-5.8p2.tar.gz &lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #274e13;"&gt;# wget http://openbsd.org.ar/pub/OpenBSD/OpenSSH/portable/openssh-5.8p2.tar.gz.asc&lt;/span&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Now that we have the gunzip file, we need to unzip the package, then build the RPM file and install the RPM. We can disable the building of GUI components in the spec file as we don’t need this GUI on a server:&amp;nbsp;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="color: #274e13; text-align: justify;"&gt;# tar –xvzf openssh-5.8p2.tar.gz&amp;nbsp;&lt;/div&gt;&lt;div style="color: #274e13; text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;pre&gt;&lt;span style="color: #274e13;"&gt;# cp openssh-5.8p2/contrib/redhat/openssh.spec /usr/src/redhat/SPECS/
# cp openssh-5.8p2.tar.gz /usr/src/redhat/SOURCES/
# cd /usr/src/redhat/SPECS
# perl -i.bak -pe 's/^(%define no_(gnome|x11)_askpass)\s+0$/$1 1/' openssh.spec
# rpmbuild -bb openssh.spec
# cd /usr/src/redhat/RPMS/`uname -i`
# rpm -Uvh openssh*rpm&lt;/span&gt;&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;&amp;nbsp;&lt;/pre&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Once the rpm installation is done, lets restart the ssh daemon &amp;amp; closely watch for errors if any. &lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;pre style="color: #274e13;"&gt;# service sshd restart&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;&amp;nbsp;&lt;/pre&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Next will be to change few settings in ssd-config file: [here i've provided a sample configuration file for better understanding with the available options and modified ones]&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;div style="color: #274e13;"&gt;# vi /etc/ssh/sshd-config &lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# This is the sshd server system-wide configuration file. See&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# sshd_config(5) for more information.&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin:/opt/bin&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# The strategy used for options in the default sshd_config shipped with&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# OpenSSH is to specify options with their default value where&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# possible, but leave them commented. Uncommented options change a&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# default value.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;Port 22&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#AddressFamily any&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#ListenAddress 0.0.0.0&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#ListenAddress ::&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# The default requires explicit activation of protocol 1&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;Protocol 2&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# HostKey for protocol version 1&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#HostKey /etc/ssh/ssh_host_key&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# HostKeys for protocol version 2&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;HostKey /etc/ssh/ssh_host_rsa_key&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;HostKey /etc/ssh/ssh_host_dsa_key&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#HostKey /etc/ssh/ssh_host_ecdsa_key&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# Lifetime and size of ephemeral version 1 server key&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#KeyRegenerationInterval 1h&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#ServerKeyBits 1024&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# Logging&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# obsoletes QuietMode and FascistLogging&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;SyslogFacility AUTH&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;LogLevel INFO&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# Authentication:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#LoginGraceTime 2m&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#PermitRootLogin yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#StrictModes yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#MaxAuthTries 6&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#MaxSessions 10&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;RSAAuthentication yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;PubkeyAuthentication yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;AuthorizedKeysFile .ssh/authorized_keys&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#RhostsRSAAuthentication no&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# similar for protocol version 2&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#HostbasedAuthentication no&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# Change to yes if you don't trust ~/.ssh/known_hosts for&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# RhostsRSAAuthentication and HostbasedAuthentication&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#IgnoreUserKnownHosts no&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# Don't read the user's ~/.rhosts and ~/.shosts files&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#IgnoreRhosts yes&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# To disable tunneled clear text passwords, change to no here!&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#PasswordAuthentication yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#PermitEmptyPasswords no&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# Change to no to disable s/key passwords&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;ChallengeResponseAuthentication yes&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# Kerberos options&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#KerberosAuthentication no&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#KerberosOrLocalPasswd yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#KerberosTicketCleanup yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#KerberosGetAFSToken no&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# GSSAPI options&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#GSSAPIAuthentication no&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#GSSAPICleanupCredentials yes&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# Set this to 'yes' to enable PAM authentication, account processing,&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# and session processing. If this is enabled, PAM authentication will&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# be allowed through the ChallengeResponseAuthentication and&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# PasswordAuthentication. Depending on your PAM configuration,&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# PAM authentication via ChallengeResponseAuthentication may bypass&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# the setting of "PermitRootLogin without-password".&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# If you just want the PAM account and session checks to run without&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# PAM authentication, then enable this but set PasswordAuthentication&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# and ChallengeResponseAuthentication to 'no'.&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#UsePAM no&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#AllowAgentForwarding yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#AllowTcpForwarding yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#GatewayPorts no&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#X11Forwarding no&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#X11DisplayOffset 10&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#X11UseLocalhost yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#PrintMotd yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#PrintLastLog yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#TCPKeepAlive yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#UseLogin no&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#UsePrivilegeSeparation yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#PermitUserEnvironment no&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#Compression delayed&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;ClientAliveInterval 60&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#ClientAliveCountMax 3&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#UseDNS yes&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#PidFile /var/run/sshd.pid&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#MaxStartups 10&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#PermitTunnel no&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#ChrootDirectory none&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# no default banner path&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#Banner none&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;# override default of no subsystems&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#Subsystem sftp /opt/libexec/sftp-server&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;Subsystem sftp internal-sftp&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;DenyUsers root wuser&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;DenyGroups root nossh&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#DenyGroups nossh&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#Manual configuration&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;Match Group sftp&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;#ChrootDirectory %h&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;ChrootDirectory /ftpdir/%u&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;X11Forwarding no&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;AllowTcpForwarding no&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;ForceCommand internal-sftp&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: #cccccc; color: #cc0000;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div&gt;Third Step will be creating SFTP group, SFTP users &amp;amp; directory permissions. So lets create a group for SFTP.&lt;br /&gt;
&lt;div style="color: #274e13;"&gt;# /usr/sbin/groupadd sftp &lt;/div&gt;&lt;br /&gt;
Next, lets create a directory for file transfers, name it as ftpdir under /.&lt;br /&gt;
&lt;div style="color: #274e13;"&gt;# mkdir /ftpdir&lt;/div&gt;&lt;br /&gt;
Next create a sftp user called sftpuser1 with default home diretory as /ftpdir&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="color: #274e13;"&gt;#/usr/sbin/useradd -g sftp -s /usr/libexec/openssh/sftp-server -d /ftpdir sftpuser1&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Then change ownership of /ftpdir as it will be the Chroot Directory and it should be owned by root but group of sftp&amp;nbsp;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="color: #274e13;"&gt;#chown root:sftp /ftpdir&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Then setting permissions for the user, read and execute for the group and others&lt;br /&gt;
&lt;div style="color: #274e13;"&gt;#chmod 755 /ftpdir&lt;/div&gt;&lt;br /&gt;
Now, directory specific to sftpuser1&amp;nbsp;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="color: #274e13;"&gt;#mkdir /ftpdir/sftpuser1&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Next, changing the ownership of /ftpdir/sftpuser1 to the user sftpuser1 belongs to sftp group&amp;nbsp;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="color: #274e13;"&gt;#chown sftpuser1:sftp /ftpdir/sftpuser1&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Next is changing the permissions for /ftpdir/sftpuser1, Read,write,execute for sftpuser1 user, read &amp;amp; execute for the group users of sftp and others.&amp;nbsp;&lt;/div&gt;&lt;div style="color: #274e13; text-align: justify;"&gt;#chmod 755 /ftpdir/sftpuser1&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Now,create a password for sftpuser1&amp;nbsp;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="color: #274e13;"&gt;#passwd sftpuser1&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;In the end, restart the sshd service to commit all the changes&amp;nbsp;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="color: #274e13;"&gt;#/sbin/service sshd restart&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Now, test the sftp user using a sftp client such as Bit Tunnelier - &lt;a href="http://www.bitvise.com/tunnelier"&gt;http://www.bitvise.com/tunnelier&lt;/a&gt; , Private Shell - &lt;a href="http://www.privateshell.com/"&gt;http://www.privateshell.com/&lt;/a&gt; or FileZilla - &lt;a href="http://www.upenn.edu/computing/help/doc/ftp/filezillasftp.html"&gt;http://www.upenn.edu/computing/help/doc/ftp/filezillasftp.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Once the connectivity is tested now, follow these next steps only if SSH connectivity has to be disabled for the sftpuser1 and thus providing connectivity only through a GUI client tool, then&lt;br /&gt;
&lt;br /&gt;
&lt;div style="color: #274e13;"&gt;# vi /etc/passwd&lt;/div&gt;&lt;br /&gt;
modify the last line as /dev/null in the last section only&lt;br /&gt;
&lt;br /&gt;
sftpuser1:x:508:514::/ftpdir:&lt;span style="color: red;"&gt;/dev/null&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Save the file and then restart SSH Daemon for the changes to be effective. And that's it folks, we are all set for the Secure File Transfer.&lt;br /&gt;
&lt;br /&gt;
Keep rocking fellows, see ya next time with one another challenging topic.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-8281806453354306108?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/l7cksEjjLw1OkFKPQ4nOBxcYMV8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/l7cksEjjLw1OkFKPQ4nOBxcYMV8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/l7cksEjjLw1OkFKPQ4nOBxcYMV8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/l7cksEjjLw1OkFKPQ4nOBxcYMV8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/v9k4LVKnpUk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/8281806453354306108/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2012/01/setting-up-secure-ftp-wwo-ssh.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/8281806453354306108?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/8281806453354306108?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/v9k4LVKnpUk/setting-up-secure-ftp-wwo-ssh.html" title="Setting up Secure FTP w/wo SSH connectivity - CentOS 5" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2012/01/setting-up-secure-ftp-wwo-ssh.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck4DSXg9eCp7ImA9WhRSFEQ.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-2003301895763671917</id><published>2011-11-16T19:49:00.000-05:00</published><updated>2011-11-16T19:49:38.660-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-11-16T19:49:38.660-05:00</app:edited><title>Interesting..........................</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;An Atheist &lt;span class="IL_AD" id="IL_AD3"&gt;Professor&lt;/span&gt; of &lt;span class="IL_AD" id="IL_AD12"&gt;Philosophy&lt;/span&gt; speaks to his &lt;span class="IL_AD" id="IL_AD9"&gt;Class&lt;/span&gt; on the Problem Science has with GOD, the ALMIGHTY.&lt;br /&gt;
He asks one of his New Christian &lt;span class="IL_AD" id="IL_AD2"&gt;Students&lt;/span&gt; to stand and . . .&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Professor : &lt;/b&gt;You are a Christian, aren't you, son ?&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Yes, sir.&lt;br /&gt;
&lt;b&gt;Professor &lt;/b&gt;: So you Believe in GOD ?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-5NOtMMaym6U/TsRZzg8VuqI/AAAAAAAAACc/NFG0db5Wo8E/s1600/einstein_4.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" height="320" src="http://3.bp.blogspot.com/-5NOtMMaym6U/TsRZzg8VuqI/AAAAAAAAACc/NFG0db5Wo8E/s320/einstein_4.jpg" width="229" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;b&gt;Student :&lt;/b&gt; Absolutely, sir.&lt;br /&gt;
&lt;b&gt;Professor :&lt;/b&gt; Is GOD Good ?&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Sure.&lt;br /&gt;
&lt;b&gt;Professor :&lt;/b&gt; Is GOD ALL - POWERFUL ?&lt;br /&gt;
&lt;b&gt;Student : &lt;/b&gt;Yes.&lt;br /&gt;
&lt;b&gt;Professor &lt;/b&gt;: My Brother died of Cancer even though he Prayed to GOD to Heal him.&lt;br /&gt;
Most of us would attempt to help others who are ill.&lt;br /&gt;
But GOD didn't.&lt;br /&gt;
How is this GOD good then? Hmm?&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.blogger.com/post-create.g?blogID=13815523" name="more"&gt;&lt;/a&gt;&lt;br /&gt;
( &lt;span class="IL_AD" id="IL_AD6"&gt;Student&lt;/span&gt; is silent )&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Professor &lt;/b&gt;: You can't answer, can you ?&lt;br /&gt;
Let's start again, Young Fella.&lt;br /&gt;
Is GOD Good?&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Yes.&lt;br /&gt;
&lt;b&gt;Professor &lt;/b&gt;: Is Satan good ?&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; No.&lt;br /&gt;
&lt;b&gt;Professor :&lt;/b&gt; Where does Satan come from ?&lt;br /&gt;
&lt;b&gt;Student : &lt;/b&gt;From . . . GOD . . .&lt;br /&gt;
&lt;b&gt;Professor : &lt;/b&gt;That's right.&lt;br /&gt;
Tell me son, is there evil in this World?&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Yes.&lt;br /&gt;
&lt;b&gt;Professor :&lt;/b&gt; Evil is everywhere, isn't it ?&lt;br /&gt;
And GOD did make everything. Correct?&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Yes.&lt;br /&gt;
&lt;b&gt;Professor : &lt;/b&gt;So who created evil ?&lt;br /&gt;
&lt;br /&gt;
(Student does not answer)&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Professor :&lt;/b&gt; Is there Sickness? Immorality? Hatred? Ugliness?&lt;br /&gt;
All these terrible things exist in the World, don't they?&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Yes, sir.&lt;br /&gt;
&lt;b&gt;Professor : &lt;/b&gt;So, who Created them ?&lt;br /&gt;
&lt;br /&gt;
( Student has no answer )&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Professor :&lt;/b&gt; Science says you have 5 Senses you use to Identify and Observe the World around you.&lt;br /&gt;
Tell me, son . . . Have you ever Seen GOD?&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; No, sir.&lt;br /&gt;
&lt;b&gt;Professor : &lt;/b&gt;Tell us if you have ever Heard your GOD?&lt;br /&gt;
&lt;b&gt;Student : &lt;/b&gt;No , sir.&lt;br /&gt;
&lt;b&gt;Professor : &lt;/b&gt;Have you ever Felt your GOD, Tasted your GOD, Smelt your GOD?&lt;br /&gt;
Have you ever had any Sensory Perception of GOD for that matter?&lt;br /&gt;
&lt;b&gt;Student : &lt;/b&gt;No, sir. I'm afraid I haven't.&lt;br /&gt;
&lt;b&gt;Professor :&lt;/b&gt; Yet you still Believe in HIM?&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Yes.&lt;br /&gt;
&lt;b&gt;Professor &lt;/b&gt;: According to Empirical, Testable, Demonstrable Protocol, Science says your GOD doesn't exist.&lt;br /&gt;
What do you say to that, son?&lt;br /&gt;
&lt;b&gt;Student : &lt;/b&gt;Nothing. I only have my Faith.&lt;br /&gt;
&lt;b&gt;Professor :&lt;/b&gt; Yes, Faith. And that is the Problem Science has.&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Professor, is there such a thing as Heat?&lt;br /&gt;
&lt;b&gt;Professor :&lt;/b&gt; Yes.&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; And is there such a thing as Cold?&lt;br /&gt;
&lt;b&gt;Professor &lt;/b&gt;: Yes.&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; No sir. There isn't.&lt;br /&gt;
&lt;br /&gt;
( The Lecture Theatre becomes very quiet with this turn of events )&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Sir, you can have Lots of Heat, even More Heat, Superheat, Mega Heat, White Heat,&lt;br /&gt;
a Little Heat or No Heat.&lt;br /&gt;
But we don't have anything called Cold.&lt;br /&gt;
We can hit 458 &lt;span class="IL_AD" id="IL_AD1"&gt;Degrees&lt;/span&gt; below Zero which is No Heat, but we can't go any further after that.&lt;br /&gt;
There is no such thing as Cold.&lt;br /&gt;
Cold is only a Word we use to describe the Absence of Heat.&lt;br /&gt;
We cannot Measure Cold.&lt;br /&gt;
Heat is Energy.&lt;br /&gt;
Cold is Not the Opposite of Heat, sir, just the Absence of it.&lt;br /&gt;
&lt;br /&gt;
( There is Pin - Drop Silence in the Lecture Theatre )&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; What about Darkness, Professor? Is there such a thing as Darkness?&lt;br /&gt;
&lt;b&gt;Professor : &lt;/b&gt;Yes. What is Night if there isn't Darkness?&lt;br /&gt;
&lt;b&gt;Student : &lt;/b&gt;You're wrong again, sir.&lt;br /&gt;
Darkness is the Absence of Something…&lt;br /&gt;
You can have Low Light, Normal Light, Bright Light, Flashing Light . . .&lt;br /&gt;
But if you have No Light constantly, you have nothing and its called Darkness, isn't it?&lt;br /&gt;
In reality, Darkness isn't.&lt;br /&gt;
If it is, were you would be able to make Darkness Darker, wouldn't you?&lt;br /&gt;
&lt;b&gt;Professor :&lt;/b&gt; So what is the &lt;span class="IL_AD" id="IL_AD10"&gt;point&lt;/span&gt; you are making, Young Man ?&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Sir, my point is your Philosophical Premise is flawed.&lt;br /&gt;
&lt;b&gt;Professor :&lt;/b&gt; Flawed ? Can you explain how?&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Sir, you are working on the Premise of Duality.&lt;br /&gt;
You argue there is Life and then there is Death, a Good GOD and a Bad GOD.&lt;br /&gt;
You are viewing the Concept of GOD as something finite, something we can measure.&lt;br /&gt;
Sir, Science can't even explain a Thought.&lt;br /&gt;
It uses Electricity and Magnetism, but has never seen, much less fully understood either one.&lt;br /&gt;
To view Death as the Opposite of Life is to be ignorant of the fact that&lt;br /&gt;
Death cannot exist as a Substantive Thing.&lt;br /&gt;
Death is Not the Opposite of Life: just the Absence of it.&lt;br /&gt;
Now tell me, Professor, do you teach your Students that they evolved from a Monkey?&lt;br /&gt;
&lt;b&gt;Professor :&lt;/b&gt; If you are referring to the Natural Evolutionary Process, yes, of &lt;span class="IL_AD" id="IL_AD4"&gt;course&lt;/span&gt;, I do.&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Have you ever observed Evolution with your own eyes, sir?&lt;br /&gt;
&lt;br /&gt;
( The Professor shakes his head with a Smile, beginning to realize where the Argument is going )&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Since no one has ever observed the Process of Evolution at &lt;span class="IL_AD" id="IL_AD11"&gt;work and&lt;/span&gt;&lt;br /&gt;
Cannot even prove that this Process is an On - Going Endeavor,&lt;br /&gt;
Are you not teaching your Opinion, sir?&lt;br /&gt;
Are you not a Scientist but a Preacher?&lt;br /&gt;
&lt;br /&gt;
( &lt;span class="IL_AD" id="IL_AD7"&gt;The Class&lt;/span&gt; is in Uproar )&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Student :&lt;/b&gt; Is there anyone in the Class who has ever seen the Professor's Brain?&lt;br /&gt;
&lt;br /&gt;
( The Class breaks out into Laughter )&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Student : &lt;/b&gt;Is there anyone here who has ever heard the Professor's Brain, Felt it, touched or Smelt it? . . .&lt;br /&gt;
No one appears to have done so.&lt;br /&gt;
So, according to the Established Rules of Empirical, Stable, Demonstrable Protocol, Science says that&lt;br /&gt;
You have No Brain, sir.&lt;br /&gt;
With all due respect, sir, how do we then Trust your Lectures, sir?&lt;br /&gt;
&lt;br /&gt;
(&lt;span class="IL_AD" id="IL_AD5"&gt;The Room&lt;/span&gt; is Silent. The Professor stares at the Student, his face unfathomable)&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Professor :&lt;/b&gt; I guess you'll have to take them on Faith, son.&lt;br /&gt;
&lt;b&gt;Student : &lt;/b&gt;That is it sir . . .&lt;br /&gt;
The Link between Man and GOD is FAITH.&lt;br /&gt;
That is all that Keeps Things Moving and Alive.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;It turned out later that the student is Albert Einstein&lt;/b&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-2003301895763671917?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ohQ2keUMToxeRUwTID6Yd7Qq1wc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ohQ2keUMToxeRUwTID6Yd7Qq1wc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ohQ2keUMToxeRUwTID6Yd7Qq1wc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ohQ2keUMToxeRUwTID6Yd7Qq1wc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/aVrLOeWrezM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/2003301895763671917/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2011/11/interesting.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/2003301895763671917?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/2003301895763671917?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/aVrLOeWrezM/interesting.html" title="Interesting.........................." /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-5NOtMMaym6U/TsRZzg8VuqI/AAAAAAAAACc/NFG0db5Wo8E/s72-c/einstein_4.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2011/11/interesting.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE8BSX4-fyp7ImA9Wx9QFkU.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-1956017806611586037</id><published>2010-12-29T23:50:00.003-05:00</published><updated>2010-12-30T00:27:38.057-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-12-30T00:27:38.057-05:00</app:edited><title>Downgrading from Oracle Database11g to Oracle Database 10g at CLI [Command Line Interface]</title><content type="html">I would like to share the downgrade process of Oracle Database 11gR2 to 10gR2.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11GR2 ORACLE_HOME = /u01/app/oracle/product/11.2.0/dbhome_1&lt;br /&gt;&lt;p&gt;10GR2 ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Step: Checking the current instance details on  current database&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;SYS@OTRANS 29-DEC-10&gt; select instance_name from v$instance;&lt;br /&gt;&lt;/p&gt;INSTANCE_NAME&lt;br /&gt;----------------&lt;br /&gt;otrans&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Step: This is important, make sure you have set the compatible parameter to the version in which you would like to downgrade to, in this example its 10.2.0.3.0&lt;br /&gt;&lt;p&gt;SYS@OTRANS 29-DEC-10&gt; show parameter compatible&lt;br /&gt;&lt;/p&gt;NAME TYPE VALUE&lt;br /&gt;------------------------------------ ----------- ------------------------------&lt;br /&gt;compatible string 10.2.0.3.0&lt;br /&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; select * from v$version;&lt;br /&gt;&lt;br /&gt;BANNER&lt;br /&gt;--------------------------------------------------------------------------------&lt;br /&gt;Oracle Database 11g Enterprise Edition Release 11.2.0.1.0&lt;br /&gt;PL/SQL Release 11.2.0.1.0 - Production&lt;br /&gt;CORE 11.2.0.1.0 Production&lt;br /&gt;TNS for Linux: Version 11.2.0.1.0 - Production&lt;br /&gt;NLSRTL Version 11.2.0.1.0 - Production&lt;br /&gt;&lt;br /&gt;Step: Prepare Oracle database for downgrade (11g Home)&lt;br /&gt;&lt;p&gt;SYS@OTRANS 29-DEC-10&gt; shutdown immediate&lt;br /&gt;&lt;/p&gt;Database closed.&lt;br /&gt;Database dismounted.&lt;br /&gt;ORACLE instance shut down.&lt;br /&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; STARTUP DOWNGRADE&lt;br /&gt;ORACLE instance started.&lt;br /&gt;&lt;br /&gt;Total System Global Area 939495424 bytes&lt;br /&gt;Fixed Size 2232088 bytes&lt;br /&gt;Variable Size 251658472 bytes&lt;br /&gt;Database Buffers 679477248 bytes&lt;br /&gt;Redo Buffers 6127616 bytes&lt;br /&gt;Database mounted.&lt;br /&gt;Database opened.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Step: Run catdwgrd.sql to downgrade --- this script is used from downgrading from the current release you have installed to the release in which you have upgraded from.&lt;br /&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; SPOOL downgrade-1023g.log&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; @?/rdbms/admin/catdwgrd.sql&lt;br /&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; Rem ***********************************************************************&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; Rem END catdwgrd.sql&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; Rem ***********************************************************************&lt;br /&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; shutdown immediate&lt;br /&gt;Database closed.&lt;br /&gt;Database dismounted.&lt;br /&gt;ORACLE instance shut down.&lt;br /&gt;&lt;br /&gt;Step: Define the ORACLE_HOME environment variable for SQLPLUS usage&lt;br /&gt;&lt;br /&gt;$ export ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1&lt;br /&gt;$ /u01/app/oracle/product/10.2.0/db_1/bin/sqlplus /nolog&lt;br /&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; connect / as sysdba&lt;br /&gt;Connected to an idle instance.&lt;br /&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; STARTUP UPGRADE&lt;br /&gt;ORACLE instance started.&lt;br /&gt;&lt;br /&gt;Total System Global Area 734003200 bytes&lt;br /&gt;Fixed Size 2099136 bytes&lt;br /&gt;Variable Size 192940096 bytes&lt;br /&gt;Database Buffers 532676608 bytes&lt;br /&gt;Redo Buffers 6287360 bytes&lt;br /&gt;Database mounted.&lt;br /&gt;Database opened.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Step: Execute catrelod.sql to reload all of the database components with their current versions  in the downgraded database&lt;br /&gt;&lt;p&gt;SYS@OTRANS 29-DEC-10&gt; SPOOL reload1023.log&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; @?/rdbms/admin/catrelod.sql&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;COMP_NAME STATUS VERSION&lt;br /&gt;----------------------------------- ----------- ----------&lt;br /&gt;Oracle Database Packages and Types VALID 10.2.0.3.0&lt;br /&gt;Oracle Database Catalog Views VALID 10.2.0.3.0&lt;br /&gt;JServer JAVA Virtual Machine VALID 10.2.0.3.0&lt;br /&gt;Oracle XDK VALID 10.2.0.3.0&lt;br /&gt;Oracle Database Java Packages VALID 10.2.0.3.0&lt;br /&gt;Oracle Text VALID 10.2.0.3.0&lt;br /&gt;Oracle XML Database VALID 10.2.0.3.0&lt;br /&gt;Oracle Workspace Manager VALID 10.2.0.3.0&lt;br /&gt;Oracle Data Mining VALID 10.2.0.3.0&lt;br /&gt;OLAP Analytic Workspace VALID 10.2.0.3.0&lt;br /&gt;OLAP Catalog VALID 10.2.0.3.0&lt;br /&gt;Oracle OLAP API VALID 10.2.0.3.0&lt;br /&gt;Oracle interMedia VALID 10.2.0.3.0&lt;br /&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; SPOOL OFF&lt;br /&gt;&lt;br /&gt;Step: You have to make sure to Shutdown and Startup database then recompile all objects of the Database&lt;br /&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; shutdown immediate&lt;br /&gt;Database closed.&lt;br /&gt;Database dismounted.&lt;br /&gt;ORACLE instance shut down.&lt;br /&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; startup&lt;br /&gt;ORACLE instance started.&lt;br /&gt;&lt;br /&gt;Total System Global Area 734003200 bytes&lt;br /&gt;Fixed Size 2099136 bytes&lt;br /&gt;Variable Size 247466048 bytes&lt;br /&gt;Database Buffers 478150656 bytes&lt;br /&gt;Redo Buffers 6287360 bytes&lt;br /&gt;Database mounted.&lt;br /&gt;Database opened.&lt;br /&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; @?/rdbms/admin/utlrp.sql&lt;br /&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; select * from v$version;&lt;br /&gt;&lt;br /&gt;BANNER&lt;br /&gt;----------------------------------------------------------------&lt;br /&gt;Oracle Database 10g Enterprise Edition Release 10.2.0.3.0&lt;br /&gt;PL/SQL Release 10.2.0.3.0 - Production&lt;br /&gt;CORE 10.2.0.3.0 Production&lt;br /&gt;TNS for Linux: Version 10.2.0.3.0 - Production&lt;br /&gt;NLSRTL Version 10.2.0.3.0 - Production&lt;br /&gt;&lt;br /&gt;SYS@OTRANS 29-DEC-10&gt; show parameter compatible&lt;br /&gt;&lt;br /&gt;NAME TYPE VALUE&lt;br /&gt;------------------------------------ ----------- ------------------------------&lt;br /&gt;compatible string 10.2.0.3.0&lt;br /&gt;&lt;br /&gt;Now, my database was downgraded to 10.2.0.3, Please correct me if am missing something above. Looking forward for your views.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-1956017806611586037?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/YlOR5s7WWn0m7ENwzleErLNs3so/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YlOR5s7WWn0m7ENwzleErLNs3so/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/YlOR5s7WWn0m7ENwzleErLNs3so/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YlOR5s7WWn0m7ENwzleErLNs3so/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/HNSpQGbSLVo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/1956017806611586037/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2010/12/downgrading-from-oracle-database11g-to.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/1956017806611586037?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/1956017806611586037?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/HNSpQGbSLVo/downgrading-from-oracle-database11g-to.html" title="Downgrading from Oracle Database11g to Oracle Database 10g at CLI [Command Line Interface]" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2010/12/downgrading-from-oracle-database11g-to.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkIBRHsyfCp7ImA9Wx5RF0g.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-53280429836906726</id><published>2010-08-25T12:26:00.004-04:00</published><updated>2010-08-25T12:42:35.594-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-25T12:42:35.594-04:00</app:edited><title>వాట్ ఐ హవె లేఅర్నేడ్ సో ఫార్ ....................</title><content type="html">I’ve learned..........&lt;br /&gt;&lt;br /&gt;- that it’s taking me a long time to become the person I want to be.&lt;br /&gt;&lt;br /&gt;- that you cannot make someone love you. All you can do is be someone who can be loved. The rest is up to them.&lt;br /&gt;&lt;br /&gt;- that no matter how much I care, some people just don’t care back.&lt;br /&gt;&lt;br /&gt;- that it takes years to build up trust, and only seconds to destroy it.&lt;br /&gt;&lt;br /&gt;- that no matter how good a friend is, they’re going to hurt you every once in a while and you must forgive them for - that.&lt;br /&gt;&lt;br /&gt;- that my best friend and I can do anything or nothing and have the best time.&lt;br /&gt;&lt;br /&gt;- that sometimes the people you expect to kick you when you’re down will be the ones to help you get back up.&lt;br /&gt;&lt;br /&gt;- that just because someone doesn’t love you the way you want them to doesn’t mean they don’t love you with all they have.&lt;br /&gt;&lt;br /&gt;- that we don’t have to change friends if we understand - that friends change.&lt;br /&gt;&lt;br /&gt;- that it’s not what you have in your life but who you have in your life - that counts.&lt;br /&gt;&lt;br /&gt;- that you should never ruin an apology with an excuse.&lt;br /&gt;&lt;br /&gt;- that you shouldn’t compare yourself to the best others can do.&lt;br /&gt;&lt;br /&gt;- that you can do something in an instant - that will give you heartache for life.&lt;br /&gt;&lt;br /&gt;- that you should always leave loved ones with loving words. It may be the last time you see them.&lt;br /&gt;&lt;br /&gt;- that we are responsible for what we do, no matter how we feel.&lt;br /&gt;&lt;br /&gt;- that either you control your attitude or it controls you.&lt;br /&gt;&lt;br /&gt;- that heroes are the people who do what has to be done when it needs to be done, regardless of the consequences.&lt;br /&gt;&lt;br /&gt;- that maturity has more to do with what types of experiences you’ve had and what you’ve learned from them and less to do with number of birthdays.&lt;br /&gt;&lt;br /&gt;- that your family won’t always be there for you. It may seem funny, but people you aren’t related to can take care of you and teach you to trust people again.&lt;br /&gt;&lt;br /&gt;- that it isn’t always enough to be forgiven by others. Sometimes you are to learn to forgive yourself.&lt;br /&gt;&lt;br /&gt;- that no matter how bad your heart is broken the world doesn’t stop for your grief.&lt;br /&gt;&lt;br /&gt;- that our background and circumstances may have influenced who we are, but we are responsible for who we become.&lt;br /&gt;&lt;br /&gt;- that a rich person is not the one who has the most, but is one who needs the least.&lt;br /&gt;&lt;br /&gt;- that you shouldn’t be so eager to find out a secret. It could change your life forever.&lt;br /&gt;&lt;br /&gt;- that two people can look at the exact same thing and see something totally different.&lt;br /&gt;&lt;br /&gt;- that even when you think you have no more to give, when a friend cries out to you, you will find the strength to help.&lt;br /&gt;&lt;br /&gt;- that credentials on the wall do not make a decent human being.&lt;br /&gt;&lt;br /&gt;- that the people you care about most in life are taken from you too soon.&lt;br /&gt;&lt;br /&gt;- that it’s hard to determine where to draw the line between being nice and not hurting people’s feelings, and standing up for what you believe.&lt;br /&gt;&lt;br /&gt;- that people will forget the good you said, and people will forget the good you did, but people will never forget how you made them feel bad even just once.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-53280429836906726?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/jvOKx-brYqdUjzwFCTtCqXb6fXk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jvOKx-brYqdUjzwFCTtCqXb6fXk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/jvOKx-brYqdUjzwFCTtCqXb6fXk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jvOKx-brYqdUjzwFCTtCqXb6fXk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/DCa_xn-CdLo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/53280429836906726/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2010/08/blog-post.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/53280429836906726?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/53280429836906726?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/DCa_xn-CdLo/blog-post.html" title="వాట్ ఐ హవె లేఅర్నేడ్ సో ఫార్ ...................." /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2010/08/blog-post.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUcNQXk7fyp7ImA9WxVaFEs.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-6912469884202957550</id><published>2009-04-11T11:14:00.002-04:00</published><updated>2009-04-11T11:18:10.707-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-04-11T11:18:10.707-04:00</app:edited><title>a small inspiration for all techies out dere.....</title><content type="html">&lt;span style="font-size:180%;"&gt;O&lt;/span&gt;nce Upon a time a very strong woodcutter asked for a job from a timber merchant, and he got it. The pay was really good and so were the working conditions. For that reason, the woodcutter was determined to do his best.&lt;br /&gt;&lt;br /&gt;His boss gave him an axe and showed him the area where he was supposed to work.&lt;br /&gt;The first day, the woodcutter brought 18 trees.&lt;br /&gt;“Congratulations,” the boss said. “Go on that way!”&lt;br /&gt;&lt;br /&gt;Very motivated for the boss’ words, the woodcutter tried harder next day, but he could bring 15 trees. The third day he tried even harder, but only could bring 10 trees. Day after day he was bringing less and less trees.&lt;br /&gt;&lt;br /&gt;“I must be losing my strength”, the woodcutter thought. He went to the boss and apologized, saying that he could not understand what was going on.&lt;br /&gt;&lt;br /&gt;“When was the last time you sharpened you axe? The boss asked.&lt;br /&gt;&lt;br /&gt;“Sharpen ? I had no time to sharpen my axe. I have been very busy trying to cut trees…”&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Morale:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#009900;"&gt;&lt;strong&gt;WORK SMARTER THAN HARDER. TAKE BEST CARE OF YOUR RESOURCES THAT HELP YOU ACHIEVE THE SUCCESS.&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-6912469884202957550?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/n0dTqU7SBhd3IdgbdRSbY2F3B4M/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/n0dTqU7SBhd3IdgbdRSbY2F3B4M/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/n0dTqU7SBhd3IdgbdRSbY2F3B4M/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/n0dTqU7SBhd3IdgbdRSbY2F3B4M/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/D03b1E2Rpos" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/6912469884202957550/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2009/04/small-inspiration-for-all-techies-out.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/6912469884202957550?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/6912469884202957550?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/D03b1E2Rpos/small-inspiration-for-all-techies-out.html" title="a small inspiration for all techies out dere....." /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2009/04/small-inspiration-for-all-techies-out.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUMARX44cCp7ImA9WxVaE04.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-468283322729399870</id><published>2009-04-09T22:51:00.005-04:00</published><updated>2009-04-09T23:17:24.038-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-04-09T23:17:24.038-04:00</app:edited><title>OCR &amp; Voting Disks - Oracle RAC</title><content type="html">&lt;p&gt;&lt;span style="font-size:100%;"&gt;A long weekend is always a good thing.  When you combine that with the ability to literally “get away from it all”, they are even better :)  &lt;/span&gt;&lt;span style="font-size:100%;"&gt;After so many days,  am able to publish my work am glad about it. Here I present one of my recent works :-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:100%;"&gt;O&lt;/span&gt;&lt;span style="font-size:100%;"&gt;racle Clusterware includes two important components: the voting disk and the Oracle Cluster Registry (OCR). The voting disk is a file that manages information about node membership and the OCR is a file that manages cluster and RAC database configuration information.&lt;/span&gt;&lt;/p&gt;Oracle recommends that you select the option to configure multiple voting disks during Oracle Clusterware installation to improve availability.&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;strong&gt;&lt;em&gt;Backing up Voting Disks&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Run the following command to back up a voting disk. Perform this operation on every voting disk as needed where voting_disk_name is the name of the active voting disk and backup_file_name is the name of the file to which you want to back up the voting disk contents:&lt;br /&gt;&lt;br /&gt;dd if=voting_disk_name of=backup_file_name&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;Recovering Voting Disks&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Run the following command to recover a voting disk where backup_file_name is the name of the voting disk backup file and voting_disk_name is the name of the active voting disk:&lt;br /&gt;&lt;br /&gt;dd if=backup_file_name of=voting_disk_name&lt;br /&gt;&lt;br /&gt;Note: If you have multiple voting disks, then you can remove the voting disks and add them back into your environment using the crsctl delete css votedisk path and crsctl add css votedisk path commands respectively, where path is the complete path of the location on which the voting disk resides.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;Changing the Voting Disk Configuration after Installing Real Application Clusters&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;You can dynamically add and remove voting disks after installing Real Application Clusters. Do this using the following commands where path is the fully qualified path for the additional voting disk. Run the following command as the root user to add a voting disk:&lt;br /&gt;&lt;br /&gt;crsctl add css votedisk path&lt;br /&gt;&lt;br /&gt;Run the following command as the root user to remove a voting disk:&lt;br /&gt;&lt;p&gt;crsctl delete css votedisk path&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;em&gt;Ch&lt;/em&gt;&lt;/strong&gt;&lt;strong&gt;&lt;em&gt;anging the location of Voting disks&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Login as root, group dba&lt;br /&gt;&lt;br /&gt;Shutdown CRS on all nodes:&lt;br /&gt; ./crsctl stop crs&lt;br /&gt;&lt;br /&gt;cross checking the status:&lt;br /&gt; ./crsctl check crs&lt;br /&gt;&lt;br /&gt;Check the the location of the voting disk:&lt;br /&gt; ./crsctl query css votedisk&lt;br /&gt;&lt;br /&gt;Copy the voting disk to the new location:&lt;br /&gt;&lt;br /&gt;Change the location in CRS:&lt;br /&gt; ./crsctl add css votedisk &lt;path&gt;&lt;br /&gt;[Repeat step if more voting disks need to be added]&lt;br /&gt;&lt;br /&gt;Delete the old Voting Disks:&lt;br /&gt;crsctl delete css votedisk &lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;em&gt;Changing the location of OCR&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Login as root, group dba&lt;br /&gt;&lt;br /&gt;Start CRS on all nodes:&lt;br /&gt;&lt;br /&gt; ./crsctl start crs&lt;br /&gt;&lt;br /&gt; ./crsctl check crs&lt;br /&gt;&lt;br /&gt;Check OCR configuration/backups:&lt;br /&gt;&lt;br /&gt; ocrcheck&lt;br /&gt;&lt;br /&gt; ocrconfig -showbackup&lt;br /&gt;&lt;br /&gt;Copy the OCR mirror to the new location:&lt;br /&gt;&lt;br /&gt;Check the files in the new location:&lt;br /&gt;&lt;br /&gt; ls -rlt&lt;br /&gt;&lt;br /&gt; cp crs_mirror /mnt/prdaudit_crs_mirror1&lt;br /&gt;&lt;br /&gt;Change the OCR location in the CRS:&lt;br /&gt;&lt;br /&gt; ./ocrconfig -replace ocrmirror [path for ocrmirror]&lt;br /&gt;&lt;br /&gt;Same way to move the ocr:&lt;br /&gt;&lt;br /&gt;oraconfig -replace ocr &lt;br /&gt;&lt;br /&gt;then run the check command:&lt;br /&gt;&lt;br /&gt; ocrcheck&lt;br /&gt;&lt;br /&gt;if everything seems right:&lt;br /&gt;&lt;br /&gt; exit &lt;br /&gt;&lt;br /&gt;These are the vital tasks which are associated with Voting Disks &amp;amp; OCR of Oracle Clusterware. use the article for your references to save lot of time :)&lt;br /&gt;&lt;/p&gt;&lt;p&gt;See you next time......&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-468283322729399870?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Ncy7BFjtjbGSPcL9UvEuqKB9ma4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Ncy7BFjtjbGSPcL9UvEuqKB9ma4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Ncy7BFjtjbGSPcL9UvEuqKB9ma4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Ncy7BFjtjbGSPcL9UvEuqKB9ma4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/pk6SQ7xCzaU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/468283322729399870/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2009/04/ocr-voting-disks-oracle-rac.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/468283322729399870?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/468283322729399870?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/pk6SQ7xCzaU/ocr-voting-disks-oracle-rac.html" title="OCR &amp; Voting Disks - Oracle RAC" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2009/04/ocr-voting-disks-oracle-rac.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkICRHozeSp7ImA9WB9VGE8.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-1630075082917216097</id><published>2007-12-04T21:07:00.000-05:00</published><updated>2007-12-04T21:09:25.481-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-12-04T21:09:25.481-05:00</app:edited><title>MySQL - Oracle Comparison in a week-end :)</title><content type="html">&lt;div align="justify"&gt;As I have been working on MySQL and Oracle quite a bit in these days, thought to put down point-to-point comparison so that it would quite easy for many of us to compare and contrast and get the glimpse of the two most popular databases. so here are few points:-&lt;br /&gt;&lt;br /&gt;MySQL is a database fit for some types of applications. These tend to be smaller applications, or those which integrate applications with less sophisticated needs than those running Oracle on the backend.&lt;br /&gt;&lt;br /&gt;MySQL shares with Oracle good support for database access including ODBC and JDBC drivers, as well as access libraries for Perl, Python and PHP. MySQL and Oracle both support binary large objects, character, numeric, and date datatypes. They both have primary and unique keys, and as of 4.x with InnoDB, MySQL has foreign keys, and transactions including READ UNCOMMITED, READ COMMITED, REPEATABLE READ, and SERIALIZABLE. Both databases have sophisticated language and character set support. MySQL can do table locking, and recently improved to include row-level locking.&lt;br /&gt;&lt;br /&gt;However, quite a number of features we find in Oracle as standard, which remain missing in MySQL. Until recently that included row-level locking, true transactions, and subqueries although as of 4.x those seem to be present. However, those have been present, and core technologies in Oracle for years, with very stable and solid implementation, you're sure to achieve dramatic performance . Views are still absent in MySQL, though they may be around the corner with subqueries available now.&lt;br /&gt;&lt;br /&gt;Of course a lot of the high end Oracle features remain completely absent from MySQL, and may never be added. Features such as parallel query, and partitioned tables, which include a whole host of special features such as the ability to take one partition offline without impacting queries on the rest of the table. The indexing on partition tables is sophisticated too, allowing partition elimination, and range scans on indexes of specific partitions. There are other large database features such as special functions for star queries. Oracle has terabyte databases in production, so this fact speaks for itself.&lt;br /&gt;&lt;br /&gt;MySQL has somewhat limited set of index types. For instance Oracle has reverse key, bitmap, and function based indexes, as well as index organized tables. These are all very powerful features for developers who are trying squeeze that last bit of performance out of complex SQL queries against large tables. Although MySQL does provide some index statistic collection, Oracle provides the full set of statistics, including histograms, and makes great use of it inside the Cost Based Optimizer.&lt;br /&gt;&lt;br /&gt;MySQL still does not have privilege groups, called ROLES in Oracle. Oracle can also provide column level.&lt;br /&gt;&lt;br /&gt;MySQL does not have good procedure to handle backups which have been an integral part of Oracle for years. In addition, Oracle's RMAN has become a sophisticated piece of software, and grown to be very stable, providing block level backups so only the data that changed can be included in subsequent backups. This makes nightly backups smaller overall. It also aids tremendously during recovery, providing a lot of automation, and assistence, during those times when you need it most. MySQL's method is to dump data, and further if you want to guarentee a point in time dump of your data, you have to lock all the tables in the database, potentially slowing down your application tremendously. Lastly MySQL does not have automatic or point in time recovery, a real limitation on heavy use production databases.&lt;br /&gt;&lt;br /&gt;MySQL also has some limitations on row sizes. MyISAM tables for instance, can have a maximum 64k of data per row, and InnoDB tables 8k per row. This does not include BLOB and TEXT types.&lt;br /&gt;&lt;br /&gt;Lastly, MySQL does not include database links such as those found in Oracle allowing you to query a table from an external database inside a query in a local database. This can be useful for moving data between databases, and is key to implementing advanced replication in Oracle.&lt;br /&gt;&lt;br /&gt;P.S:- Some of the above features / numbers are taken from different sources available in the Internet, including MySQL documentation&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-1630075082917216097?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/DT6AlPs1n1rATLKS6MYEZJMSFMk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DT6AlPs1n1rATLKS6MYEZJMSFMk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/DT6AlPs1n1rATLKS6MYEZJMSFMk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DT6AlPs1n1rATLKS6MYEZJMSFMk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/uoyTvL6kX6g" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/1630075082917216097/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2007/12/mysql-oracle-comparison-in-week-end.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/1630075082917216097?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/1630075082917216097?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/uoyTvL6kX6g/mysql-oracle-comparison-in-week-end.html" title="MySQL - Oracle Comparison in a week-end :)" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2007/12/mysql-oracle-comparison-in-week-end.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0YMRH87fyp7ImA9WBFUGU4.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-8932304814537570484</id><published>2007-04-30T09:08:00.001-04:00</published><updated>2007-04-30T09:19:45.107-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-04-30T09:19:45.107-04:00</app:edited><title>Relationships 'R' Us</title><content type="html">&lt;div align="justify"&gt;&lt;span style="font-family:arial;font-size:130%;"&gt;W&lt;/span&gt;e all conduct our relationships with other people using our personality. Our personality, however, is made up of various parts, which can be called self(s). When we relate with others there are quite a few different self(s) involved in our relationships and thats the reason, relationships are never simple. It is rather like there are two groups relating, and not just two people. This is why sometimes we feel caring towards our partner and at other times we want to be cared for; it is why sometimes we admire a quality in our partner tremendously and at other times we see that same quality as a fault; and why sometimes something our partner amuses us and at other times that same action irritates.&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;br&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;Relationships thrive on good communication. When people know exactly what is in the other's mind, a relationship proceeds smoothly.Once people understand the hidden signs and the precise meaning of what is being said, they can develop a very healthy relationship. People feel good if some body understands them. They get irritated if somebody does not understand them. Irrespective of their own bad communication, they want people to understand them. Here lies the clue to communication and relationships.And all our modern technology such as email, cell phones, and text messaging and tiny music players and portable videos seem to distract our attention from the present moment more and more.Even though all the new technological toys we have today were supposed to free up our time and make us more connected, it can have an opposite effect. When we do spend time with our families or friends, many of us are also tied to the computer, or our cell phone or we’re busy sending and receiving text messages. &lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;br&gt;&lt;div align="justify"&gt;How often have we speaking to a friend on the telephone, and heard the clacking of keyboard in the background? Our friend may be typing up email messages to someone else at the same time he or she is talking to us. So we’re not getting his full attention, and neither is the other person.Many of us are used to not just multi-tasking with our jobs, but also with our friends. Why give our attention to the person in front of us, when there might be a message on our computer at the same time? A better, more exciting offer might come in any minute, on our cell phone, or in our email.Our attention is never really where we are. Our mind is split. We’re never really committed to working when we are at work, and we’re never really present with the people we care about, because someone else is on the line, Or something else is on our mind.&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;br&gt;&lt;div align="justify"&gt;So I would say we have to compare it with our real values and priorities in life. Is our hectic lifestyle really bringing us the quality of life that we want? Examine whether the way we are currently spending our time accurately reflects our deepest values and priorities. Make sure that we schedule adequate time for the things that are truly most important to us. If we really want to keep friends in our life, we need to make a space in our schedule and a space in our heart for them. And most importantly we need to practice the art of being fully present with the important people in our life.&lt;/div&gt;&lt;br&gt;&lt;div align="justify"&gt;&lt;br /&gt;"Remember, we all stumble, every one of us. That's why it's a comfort to go hand in hand."&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-8932304814537570484?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/i3lBhaGI1LBNYNuEtSPpeKXcsik/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/i3lBhaGI1LBNYNuEtSPpeKXcsik/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/i3lBhaGI1LBNYNuEtSPpeKXcsik/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/i3lBhaGI1LBNYNuEtSPpeKXcsik/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/yCeYBPU0DCo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/8932304814537570484/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2007/04/relationships-r-us.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/8932304814537570484?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/8932304814537570484?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/yCeYBPU0DCo/relationships-r-us.html" title="Relationships 'R' Us" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2007/04/relationships-r-us.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DU4HRnk6eyp7ImA9WBBQEk0.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-116320774378187099</id><published>2006-11-10T20:03:00.000-05:00</published><updated>2006-11-10T20:18:57.713-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2006-11-10T20:18:57.713-05:00</app:edited><title>Humor</title><content type="html">&lt;div align="justify"&gt;&lt;a href="http://photos1.blogger.com/blogger/8005/1229/1600/Or.jpg"&gt;&lt;img style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/8005/1229/400/Or.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Here is the age-old argument about the importance of academics in Oracle technology. &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;One side of the argument says that the dedication, hard work and perseverance required to graduate from college graduate (not to mention computer science skills), makes the "college-educated" DBA more productive.&lt;br /&gt;&lt;br /&gt;Engineers must have a degree (and a license), and lawyers must have a JD degree. So, what the value of a technology degree to an Oracle professional?&lt;br /&gt;&lt;br /&gt;The other side of the coin says that experience-alone can be the best predictor of Oracle DBA job performance.&lt;br /&gt;&lt;br /&gt;"I can't help but wonder if Bill Gates had taken a Data Structures, Algorithms and Operating System Design course in Harvard, that Windows might be a more reliable platform." - DB&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-116320774378187099?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/nE_oEtjl16LK8JglE-JTbLo2eJU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/nE_oEtjl16LK8JglE-JTbLo2eJU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/nE_oEtjl16LK8JglE-JTbLo2eJU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/nE_oEtjl16LK8JglE-JTbLo2eJU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/RtiEZaXlYM8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/116320774378187099/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2006/11/humor.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/116320774378187099?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/116320774378187099?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/RtiEZaXlYM8/humor.html" title="Humor" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2006/11/humor.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0cCQnc8eCp7ImA9WBFTFE4.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-115774388307146686</id><published>2006-09-08T15:30:00.000-04:00</published><updated>2007-02-02T10:44:23.970-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-02-02T10:44:23.970-05:00</app:edited><title>R u a RockStar @ Work?</title><content type="html">&lt;div align="justify"&gt;Last week I read an article on GOOGLE guys and all their business success. It made me to think about the importance of giving fully at work. Being wildly passionate, being breathtalkingly committed about things to do in the Organization. Being a rock star in whatever we do, to put things on the right table.&lt;/div&gt;&lt;br&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;Work gives meaning to our techie lives. It influence our selfworth and the way we perceive our place under the Organization. Being great at what we do isnt just something we do for the organization we work for --- its a gift we give ourself. Being spectaculary great at work promotes personal respect, excitement &amp;amp; makes our life a lot more interesting.&lt;/div&gt;&lt;br&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;How do you feel after each day at work? How do you feel when you've given your best. had fun with your teammates? How do you feel when you reached for your greatest goals and grabbed them? It feels pretty good, doesnt it ? &lt;/div&gt;&lt;br&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;So be a rock star at work today. Give the best performance of your life every day at work. And see how you feel at the end of the day, you feel just amazing. And am sure you can have best sleep as well. So can you be one among the rock stars @ work?&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-115774388307146686?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/-C94kuXw9QeSxk-NSfoauH58uHw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-C94kuXw9QeSxk-NSfoauH58uHw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/-C94kuXw9QeSxk-NSfoauH58uHw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-C94kuXw9QeSxk-NSfoauH58uHw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/0ERDhyOmPs8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/115774388307146686/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2006/09/r-u-rockstar-work.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/115774388307146686?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/115774388307146686?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/0ERDhyOmPs8/r-u-rockstar-work.html" title="R u a RockStar @ Work?" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2006/09/r-u-rockstar-work.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkEBQ3s_eCp7ImA9WBNUF0k.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-115772543649768918</id><published>2006-09-08T10:18:00.000-04:00</published><updated>2006-09-08T15:44:12.540-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2006-09-08T15:44:12.540-04:00</app:edited><title>About Oracle Fusion</title><content type="html">&lt;div align="justify"&gt;&lt;span &gt;Fusion is an application expected to be released by Oracle in 2008. It is a response to the hostile takeover of PeopleSoft January 2005. Initially, it was expected to be a "fusion" of Oracle Enterprise Resource Planning (ERP) applications and PeopleSoft ERP applications. However upon clarification from Oracle 1st Quarter 2006, the Fusion product will be new applications products based on an E-Business Suite (EBS) data model, EBS processes, and user interface expertise obtained in the PeopleSoft takeover. More simply put, the Fusion product is redesigning EBS using SOA concepts and adding expertise from its PeopleSoft/JD Edwards&lt;/span&gt;&lt;span style="font-family:arial;font-size:130%;"&gt;&lt;span style="font-size:100%;"&gt; takeovers.&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-115772543649768918?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/sCbdGntmkpDO9HHrj__pAFnZOLg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sCbdGntmkpDO9HHrj__pAFnZOLg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/sCbdGntmkpDO9HHrj__pAFnZOLg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sCbdGntmkpDO9HHrj__pAFnZOLg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/PdeuYNtiIYE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/115772543649768918/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2006/09/about-oracle-fusion.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/115772543649768918?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/115772543649768918?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/PdeuYNtiIYE/about-oracle-fusion.html" title="About Oracle Fusion" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2006/09/about-oracle-fusion.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUINSHg7fip7ImA9WBJbE0o.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-114837294851065246</id><published>2006-05-23T04:20:00.000-04:00</published><updated>2006-05-23T04:39:59.606-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2006-05-23T04:39:59.606-04:00</app:edited><title>Gr8'er Competency is EQUALS 2 Smoother Sailing !</title><content type="html">&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:180%;"&gt;W&lt;/span&gt;e&lt;/strong&gt; have probably heard that most accidents occur as a result of drivers' error. It's a fact. And it's also true about sailing. The vast majority of marine accidents happen because of mistakes made by captain and crew.And it's no different in our quest for success.&lt;br /&gt;&lt;br /&gt;Certainly there are times when things outside of our control cause us problems and even result in failure. But most of these can be overcome with greater knowledge and better skills.You see, piloting a boat is not really very difficult. Getting from point A to point B under fair skies and friendly winds is something most anyone with a modicum oftraining can do. But what we prepare for, what we really need to study, is how to handle things when circumstances are less than ideal. When the weather deteriorates, when equipment breaks, when things start to unravel, THAT'S when your competence becomes critical. That's when our ability, our knowledge and our experience can make the difference between people living and dying.&lt;br /&gt;&lt;br /&gt;Our preparedness--or un-preparedness--for our personal and professional success may not seem quite so critical. It's not a matter of life and death, but it's important nonetheless.In order for us to fulfill our potential, we owe it to ourselves as well as those we care about and those we serve to be constantly improving our skills. We must always be learning. We must be preparing for unexpected economic squalls. We should consistently be honing our abilities.In doing so, we bring out the best that's in us and we raise the expectations of those around us. Our confidence begets more confidence. It attracts people to us. Every crew member wants to be part of a competent team with a skilled captain.&lt;br /&gt;&lt;br /&gt;Our industry is worthy of our study. Enhancing our skills makes our job easier and makes us more valuable in the marketplace. Knowing enough to get by just won't cut it. We must challenge ourselves. It makes our life more fun and more interesting. And it can make all the difference in not only the quality of the journey but the wealth of the destinations.&lt;br /&gt;&lt;br /&gt;Question to Ponder: What skills, knowledge and experience do we need to develop?In addition to setting goals about what we want to achieve, we should also set goals as to what we want to learn. What skills do we want to acquire in the next three months? What bodies of knowledge do we want to master? What do we want to add to our experience? What courses will we take? Who will we study under? What books will we read? How much will we invest in our quest for competence?&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:180%;"&gt;Because EVERYTHING COUNTS !&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-114837294851065246?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/LJvgz88r6djezjDh205DA8Q1m3s/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/LJvgz88r6djezjDh205DA8Q1m3s/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/LJvgz88r6djezjDh205DA8Q1m3s/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/LJvgz88r6djezjDh205DA8Q1m3s/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/4RaPb5fLW9M" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/114837294851065246?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/114837294851065246?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/4RaPb5fLW9M/gr8er-competency-is-equals-2-smoother.html" title="Gr8'er Competency is EQUALS 2 Smoother Sailing !" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><feedburner:origLink>http://techietraits.blogspot.com/2006/05/gr8er-competency-is-equals-2-smoother.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUMMSHs5eCp7ImA9WBJUEUs.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-114716748870101486</id><published>2006-05-09T04:24:00.000-04:00</published><updated>2006-05-09T05:38:09.520-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2006-05-09T05:38:09.520-04:00</app:edited><title>Newsss!</title><content type="html">&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-family:lucida grande;"&gt;New mobile application allows you to build and run database queries from your handheld.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;strong&gt;&lt;/strong&gt;&lt;div align="justify"&gt;&lt;br /&gt;Tiny Query Writer is a mobile application that allows you to write and run database queries and stored procedures from your BlackBerry device. &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Tiny Query Writer helps database administrators, developers, help-desk technicians, consultants and other information workers, be more efficient and productive while they are away from their workstations.Tiny Query Writer is easy to use and affordable. Using it is as easy as entering your credentials, typing your query and viewing the results. Watch the demo movie and see for yourself!Tiny Query Writer runs on any BlackBerry device and only requires a standard Windows workstation for its Gateway piece. You don't need to buy additional hardware. You don't need to install software on any of the database servers. You don't need to navigate through many screens to get the job done.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Database servers currently supported are Microsoft SQL Server and MySQL. Coming soon is support for Oracle databases.&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-114716748870101486?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/DIM_yY_rThQjNjwguyHwNUgPGXI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DIM_yY_rThQjNjwguyHwNUgPGXI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/DIM_yY_rThQjNjwguyHwNUgPGXI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DIM_yY_rThQjNjwguyHwNUgPGXI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/ZChzQ4gv-AI" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/114716748870101486?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/114716748870101486?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/ZChzQ4gv-AI/newsss.html" title="Newsss!" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><feedburner:origLink>http://techietraits.blogspot.com/2006/05/newsss.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0IBQ3Y6eyp7ImA9WBJXE08.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-114432138184171993</id><published>2006-04-06T06:54:00.000-04:00</published><updated>2006-04-06T07:05:52.813-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2006-04-06T07:05:52.813-04:00</app:edited><title>Taking Charge of Life</title><content type="html">&lt;div align="justify"&gt;&lt;span style="font-family:verdana;"&gt;How do you live your life? At cause or at effect? It is important to be aware of this distinction. It is the rare individual who always lives his or her life at cause; however, far too many of us live a large portion of our lives at effect - responding to the whims, desires or emotional states of others. &lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Being at cause means that you are decisive in creating what you want in life and take responsibility for whatever you achieve. You see the world as a place of opportunity and you move toward achieving what you desire. If things are not unfolding as you would like, you take action and explore other possibilities. Above all, you know you have choice in what you do and how you react to people and events. &lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;If you are at effect, you may blame others or circumstances for your bad moods, for what you have not achieved or for the disarray of your life in general. You may feel powerless or depend on others in order for you to feel good about yourself or about life. You may think, "If only my wife, my boss, my co-workers, my parents, my children understood me and helped me achieve my dreams or did what I wanted or what is best for me, then life would be great." If you wait and hope for things to be different or for others to provide you with results or happiness, you are at effect, or a victim of circumstances. And really, how satisfying is that? How satisfying do you think it is for others to be around you? Believing that someone else is responsible for your happiness or your different moods is very limiting and gives this person mystical powers over you, which can cause both you and the other person a great deal of anguish. &lt;/span&gt;&lt;/div&gt;&lt;span style="font-family:verdana;"&gt;&lt;div align="justify"&gt;&lt;br /&gt;Being at cause means you have choices in your life - you can choose what is best for you while ensuring the choice is ecological for those around you, in your community and your society. That is, you consider the consequences of your actions on others, while not taking responsibility for their emotional well-being. Believing you are responsible for the emotional well-being of someone else places a heavy burden upon you and can cause a great deal of stress. &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Those who live their lives at effect often see themselves as victims with no choices whatsoever. The truth is that they do have choices but have chosen not to take action. They are simply reactive to whatever is thrust upon them. &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Emotions such as guilt, fear, anxiety and resentment are the result of being at effect. People at effect tend to blame others and do not take responsibility for their actions. Emotions such as these can wear heavily on a person's body and life, and can be the root cause of many physical and personal issues. &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Do I always live my life at cause? No, not a chance; the great majority of the time I do live at cause. When I don't, one of the following usually comes to mind: ‘There is no failure only feedback' or ‘There are no unresourceful people, only unresourceful states'. Then using various personal growth techniques, I am able to explore other ways to achieve my outcomes or ask others for help, without being a victim to their answers. &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Each morning when you get up, you can either ask yourself, "I wonder what my day will bring," or "What do I choose to bring to my day?" The choice is yours.&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-114432138184171993?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/LIUPYnEhrF1yHRJn7_7w1MUmKfQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/LIUPYnEhrF1yHRJn7_7w1MUmKfQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/LIUPYnEhrF1yHRJn7_7w1MUmKfQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/LIUPYnEhrF1yHRJn7_7w1MUmKfQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/zsbbssz1ov0" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/114432138184171993?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/114432138184171993?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/zsbbssz1ov0/taking-charge-of-life.html" title="Taking Charge of Life" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><feedburner:origLink>http://techietraits.blogspot.com/2006/04/taking-charge-of-life.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkYNQX8_fip7ImA9WBJTFEw.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-114041742082953371</id><published>2006-02-20T01:28:00.000-05:00</published><updated>2006-02-20T01:49:50.146-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2006-02-20T01:49:50.146-05:00</app:edited><title>Seriously Humor</title><content type="html">&lt;div align="justify"&gt;How serious can we be about humor in the workplace, and how humorous can we be about the seriousness we often find there? According to a survey only 15% of workers are fired because of lack of competence. The remaining 85% are let go because of their inability to get along with fellow employees. When asked about the qualities of an effective employee, senior administrators and human relations personnel check humor as one of the choice attributes of a desired employee.&lt;br /&gt;&lt;br /&gt;Now a days humor became a recognized asset in the workplace! Humor facilitates communication, builds relationships, reduces stress, provides perspective, and promotes attending and energizes. &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;Humor provides a non-threatening medium through which an employee or employer can communicate with others without intensifying the emotional temperature of the relationship. The development of staff cohesion and a sense of team effort in the workplace can be effectively facilitated by the use of humor. Bulletin boards, electronic mail, intra-office memos, voice mail, etc. all offer mediums through which we can share humor with co-workers.Work is often associated with stress, and we know that stress is one of the main causes of illness, absenteeism, employee burn-out, etc. Humor is a great stress reliever because it makes us feel good, and we can't feel good and feel stress simultaneously.&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;We know that all good lecturers have many jokes, stories, and anecdotes that are shared in order to command attention and energize the audience. Humor wakes us up and increases our attending. A few moments of humor at work can lead to increased productivity as the newly energized employee returns to his or her task. In working environments where humor is supported there develops a culture that utilizes the humor to reduce stress and provide perspective.&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Humor is a &lt;strong&gt;major career asset&lt;/strong&gt;, so let's be &lt;strong&gt;seriou&lt;/strong&gt;s about humor and use &lt;strong&gt;humor&lt;/strong&gt; to lighten our seriousness in the workplace.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-114041742082953371?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/peqtN2PgcJH4K_HbAznRZzsp6aE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/peqtN2PgcJH4K_HbAznRZzsp6aE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/peqtN2PgcJH4K_HbAznRZzsp6aE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/peqtN2PgcJH4K_HbAznRZzsp6aE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/-Nvz9gAaKwQ" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/114041742082953371?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/114041742082953371?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/-Nvz9gAaKwQ/seriously-humor.html" title="Seriously Humor" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><feedburner:origLink>http://techietraits.blogspot.com/2006/02/seriously-humor.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkcCQ386fip7ImA9WBVbGUw.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-113875311948784336</id><published>2006-01-31T17:13:00.000-05:00</published><updated>2006-02-02T17:07:42.116-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2006-02-02T17:07:42.116-05:00</app:edited><title>An (Idle / Idol) Patriot</title><content type="html">&lt;div align="justify"&gt;&lt;strong&gt;Patriotism&lt;/strong&gt; is being a responsible and understanding part of the community. Patriotism denotes positive attitudes by individuals to their own civic or political community, to its culture, its members, and to its interests. Where each morning flourishes with it a bunch of vibrant rays empowering a flurry of new hopes, exuberance of confidence, and a feeling of oneness in its people. The word is derived from the Latin patria, &lt;strong&gt;fatherland&lt;/strong&gt;, which has a much broader meaning than a geographical territory. &lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;div align="justify"&gt;To some, patriotism has connotations of self-sacrifice, implying that the individual should place the interests of the community above their personal interests, and in extreme cases their lives. Others, however, associate patriotism with the common good, with the aim of responding to conflicts in ways which ensure that everyone benefits. As such, patriotism has ethical connotations: it implies that the political community is in some way a moral standard or moral value in itself. The primary implication of patriotism in ethics is that a person has more moral duties to fellow members of the political community, as distinct from non-members.&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;div align="justify"&gt;The people of India were indeed blessed in the galaxy of great men who led the country’s struggle for independence – Mahatma Gandhi, Jawaharlal Nehru, Sardar Patel, C. Rajagopalachari, Maulana Abul Kalam Azad and many others. Foremost among these was Mahatma Gandhi, the Father of our nation. Albert Einstein said of him “Generations to come will scarce believe that such a man as this ever in flesh and blood walked this earth”. Using against the British rulers in India the techniques of non-violent civil disobedience that he had forged, from 1893 to 1914, in his anti-apartheid struggle in South Africa, Mahatma Gandhi waged a unique battle with unique weapons. It ended with a victory – independence for India – that was free of the hatred, the bitterness, the smouldering resentment that so often marks the end of such struggles elsewhere in the world.&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;As we already got the 'Independence' and so now its all of our responsibility to maintain that! So, my dear fellow Indians, according to me, we need not do self-sacrifice, need not change others, need not give any dhamaka ( as in the Movie Rang-De-Basanti). We just need to maintain the moral standard or moral value in ourselves. We just need to be honest to ourselves, honest in the things we do, trustworty towards the people surrounded by us. Let all of us try to be an "Idol Patriot" inspite of idle patriot! &lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;div align="justify"&gt;"&lt;strong&gt;The day we take complete responsibility for ourself, the day we stop making any excuses, that's the day we start to the top&lt;/strong&gt;." &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-113875311948784336?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/F2bOVbkxzhuWNGObHlRDGGMa0kc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/F2bOVbkxzhuWNGObHlRDGGMa0kc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/F2bOVbkxzhuWNGObHlRDGGMa0kc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/F2bOVbkxzhuWNGObHlRDGGMa0kc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/YFadmr-KVvU" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113875311948784336?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113875311948784336?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/YFadmr-KVvU/idle-idol-patriot.html" title="An (Idle / Idol) Patriot" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><feedburner:origLink>http://techietraits.blogspot.com/2006/02/idle-idol-patriot.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0cMQXg9fip7ImA9WBVUFk4.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-113763107644155266</id><published>2006-01-18T19:34:00.000-05:00</published><updated>2006-01-18T19:38:00.666-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2006-01-18T19:38:00.666-05:00</app:edited><title>Most Often Used Networking Terminology in Business Objects Product Suite</title><content type="html">&lt;div align="justify"&gt;Some of the Networking terminology which is used in the "Business Objects" Product Suite:-&lt;br /&gt;&lt;br /&gt;1) Apache is generally recognized as the world's most popular Web server (HTTP server). Originally designed for Unix servers, Apache has been ported to Windows and other network operating systems (NOS). The name "Apache" derives from the word "patchy" that the Apache developers used to describe early versions of their software.&lt;br /&gt;&lt;br /&gt;Apache provides a full range of Web server features, including CGI, SSL, and virtual domains. Apache also supports plug-in modules for extensibility. Apache is reliable, free, and relatively easy to configure.&lt;br /&gt;&lt;br /&gt;The Apache HTTP server is free software distributed by the Apache Software Foundation. The Apache Software Foundation promotes various free and open source advanced Web technologies.&lt;br /&gt;&lt;br /&gt;2) An API (Appilication Programming Interface) allows computer programmers to access the functionality of pre-built software modules. An API defines data structures and subroutine calls. Networking APIs are entry points to libraries that implement network and data communication protocols.&lt;br /&gt;&lt;br /&gt;3) The word "cluster" is used broadly in computer networking to refer to a number of different implementations of shared computing resources. Typically, a cluster integrates the resources of two or more computing devices (that could otherwise function separately) together for some common purpose.&lt;br /&gt;&lt;br /&gt;A Web server farm (a collection of networked Web servers, each with access to content on the same site) function as a cluster conceptually. However, purists may debate the classification of a server farm as a cluster, depending on the details of the hardware and software configuration. It is important to recognize that network clustering involves a long past history of research and development with many offshoots and variations.&lt;br /&gt;&lt;br /&gt;4) The term "crash" refers to a critical failure in a computer, network device, or software. Crashes often occur with little or no warning. As evidenced by the number of different synonyms employed over the years, crashes have a long and colorful history in computer networking.&lt;br /&gt;&lt;br /&gt;5) DMZ (De-Militarized Zone) is a firewall configuration for securing local area networks (LANs). &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;In a DMZ configuration, most computers on the LAN run behind a firewall connected to a public network like the Internet. One or more computers also run outside the firewall, in the DMZ. Those computers on the outside intercept traffic and broker requests for the rest of the LAN, adding an extra layer of protection for computers behind the firewall.&lt;br /&gt;&lt;br /&gt;Traditional DMZs allow computers behind the firewall to initiate requests outbound to the DMZ. Computers in the DMZ in turn respond, forward or re-issue requests out to the Internet or other public network, as proxy servers do. The LAN firewall, though, prevents computers in the DMZ from initiating inbound requests.&lt;br /&gt;&lt;br /&gt;6) The DNS (Domain Name Server) translates Internet domain and host names to IP addresses. DNS automatically converts the names we type in our Web browser address bar to the IP addresses of Web servers hosting those sites.&lt;br /&gt;&lt;br /&gt;DNS implements a distributed database to store this name and address information for all public hosts on the Internet. DNS assumes IP addresses do not change (are statically assigned rather than dynamically assigned).&lt;br /&gt;&lt;br /&gt;7) An extranet is a computer network that allows controlled access from the outside for specific business or educational purposes. Extranets are extensions to, or segments of, private intranet networks that have been built in many corporations for information sharing and ecommerce.&lt;br /&gt;&lt;br /&gt;8) Filesharing in computer networking involves copying files from one computer to another using a live network connection. Filesharing is sometimes called "file swapping."&lt;br /&gt;&lt;br /&gt;9) A network firewall protects a computer network from unauthorized access. Network firewalls may be hardware devices, software programs, or a combination of the two.&lt;br /&gt;&lt;br /&gt;Network firewalls guard an internal computer network (home, school, business intranet) against malicious access from the outside. Network firewalls may also be configured to limit access to the outside from internal users.&lt;br /&gt;&lt;br /&gt;10) FTP allows one to transfer files between computers on the Internet. Technically, FTP is a simple network protocol based on IP, but many also use the term "FTP" to refer to this type of file sharing service.&lt;br /&gt;&lt;br /&gt;The FTP service is based on a client/server architecture. An FTP client program initiates a connection to a remote computer running FTP server software. After the connection is established, the client can choose to send and/or receive copies of files, singly or in groups. To connect to an FTP server, a client generally requires a username and password as set by the administrator of the server.&lt;br /&gt;&lt;br /&gt;11) HTTP (Hyper Text Transfer Protocol) is an application layer network protocol built on top of TCP. HTTP allows Web browsers and Web servers to communicate. HTTP clients and servers communicate via request and response messages.&lt;br /&gt;&lt;br /&gt;HTTP utilizes TCP port 80 by default, though other ports such as 8080 are also used.&lt;br /&gt;&lt;br /&gt;12) A hub is a small, simple, inexpensive network device that joins multiple computers together.&lt;br /&gt;&lt;br /&gt;13) IIS (Internet Information Server) is Microsoft's business-class Web server. Although Apache boasts more total worldwide installations than IIS, many corporations choose IIS as their Web server because it is supported by a commercial organization.&lt;br /&gt;&lt;br /&gt;14) Intranet is the generic term for a collection of private computer networks within an organization. Intranets are communication tools designed to enable easy information sharing within workgroups.&lt;br /&gt;&lt;br /&gt;15) Ping (Packet Internet Gopher) is the name of a standard network utility packaged with popular network operating systems. The utility can be used to determine if a remote device (such as Web or game server) can be reached on the network and, if so, roughly how fast the current connection is.&lt;br /&gt;&lt;br /&gt;16) A port number represents an endpoint or "channel" for network communications. Port numbers allow different applications on the same computer to utilize network resources without interfering with each other.&lt;br /&gt;&lt;br /&gt;17) A VPN (Virtual Private Network) utilizes public telecommunications networks to conduct private data communications. Most VPN implementations use the Internet as the public infrastructure and a variety of specialized protocols to support private communications through the Internet.&lt;br /&gt;&lt;br /&gt;18) A WAN (Wide Area Networks) spans a large geographic area, such as a state, province or country. WANs often connect multiple smaller networks, such as local area networks (LANs) or metro area networks (MANs).&lt;br /&gt;&lt;br /&gt;19) In computer networking, a workgroup is a collection of computers on a local area network (LAN) that share common resources and responsibilities. Workgroups provide easy sharing of files, printers and other network resources. Being a peer-to-peer (P2P) network design, each workgroup computer may both share and access resources if configured to do so.&lt;br /&gt;&lt;br /&gt;20) Authentication is a procedure that establishes the legitimacy of users and defines the parameters of the sessions they establish. As such, authentication can be thought of as a security measure that controls and defines network access. It is always the first part of a session; the range of authentication parameters that can be set depend upon the specific authentication system employed.&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-113763107644155266?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/KYCzulYujX2iNSu7SRht0abMGDc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KYCzulYujX2iNSu7SRht0abMGDc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/KYCzulYujX2iNSu7SRht0abMGDc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KYCzulYujX2iNSu7SRht0abMGDc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/g99VwMmFxKg" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113763107644155266?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113763107644155266?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/g99VwMmFxKg/most-often-used-networking-terminology.html" title="Most Often Used Networking Terminology in Business Objects Product Suite" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><feedburner:origLink>http://techietraits.blogspot.com/2006/01/most-often-used-networking-terminology.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU8DQXo5eyp7ImA9WBVUEE8.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-113702336960431421</id><published>2006-01-11T18:41:00.000-05:00</published><updated>2006-01-11T18:57:50.423-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2006-01-11T18:57:50.423-05:00</app:edited><title>Intro to Oracle10G - Grid Computing</title><content type="html">&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="color:#cc0000;"&gt;Grid&lt;/span&gt;&lt;/strong&gt; is a type of parallel &amp;amp; distributed system that enables the sharing, selection, and aggregation of geographically distributed "autonomous" resources dynamically at runtime depending on their availability, capability, performance, cost, and users' quality-of-service requirements. &lt;/div&gt;&lt;br&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="color:#ff0000;"&gt;Oracle 10G Overview&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;&lt;br /&gt;The main thrust of the new features and enhancements of Oracle 10g are towards grid computing which is an extension of the clustering features (Real Application Clusters) introduced with Oracle 9i. &lt;/div&gt;&lt;br&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;The '&lt;strong&gt;G&lt;/strong&gt;' stands for &lt;u&gt;&lt;strong&gt;Grid Computing&lt;/strong&gt;&lt;/u&gt;. A common missconception seems to be that grid is just the new name for RAC (having improved RAC). This is not the case. 10g comes with both RAC and grid. One will be able to install 10g with RAC only or with grid only, without either and with both. &lt;/div&gt;&lt;br&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="color:#ff0000;"&gt;Grid Computing&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;br&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;Way back in the 1980s companies like Digital Equipment Corp developed clustering technology which allowed two or more computers to to appear as if they were just one to the end-user, thereby enabling load-balancing and hot standby. Oracle (for release 9i) absorbed this technology into the database software so that databases could benefit from the load-balancing and hot-standby capabilities without having to worry about installing addditional clustering software or manually switching users from one database instance to another should a failure occur and just as importantly, without the application having to be cluster-aware.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;That was one stepping stone in the evolutionary process, but recently companies like Sun Microsystems have been extending the concept of clusters to be able to include different types (makes) of computers running different operating systems in a "pool" of computing resources that can be made available as and when required to meet peak demands and then released back into the pool when no longer needed (so that other applications may use the resources). The idea of Oracle10g is that the database will be able to dynamically "requisition" resources from the pool (the grid) to meet levels of peak demand. Again the grid can be heterogeneous (i.e. different types of hardware and/or operating systems).&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;The motivation for the developmnet of grid computing is to reduce the need to have dedicated resources sized for peak capacity. Research has shown that the average CPU usage is only 15-20% and storage usage is only 50%. Having dedicated resources for each major application also means that there can be a large number of systems to maintain. The solution to this is to create a grid - a pool of low-cost servers + storage that can be allocated to applications to meet peak loads.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Other enhancements for Oracle10g are aimed at reducing costs and improving the quality of service by making the database easier to deploy and manage including backup and recovery and data warehosuing enhancements.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-113702336960431421?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/p5FfFcBsUsSCghWqIBHv6W5KzzI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/p5FfFcBsUsSCghWqIBHv6W5KzzI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/p5FfFcBsUsSCghWqIBHv6W5KzzI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/p5FfFcBsUsSCghWqIBHv6W5KzzI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/7AOFAejKBxU" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113702336960431421?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113702336960431421?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/7AOFAejKBxU/intro-to-oracle10g-grid-computing.html" title="Intro to Oracle10G - Grid Computing" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><feedburner:origLink>http://techietraits.blogspot.com/2006/01/intro-to-oracle10g-grid-computing.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE4NQno9eyp7ImA9WBVWEk0.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-113520699324131802</id><published>2005-12-21T18:10:00.000-05:00</published><updated>2005-12-21T18:16:33.463-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2005-12-21T18:16:33.463-05:00</app:edited><title>New Year: Time 2 update the Resumes</title><content type="html">&lt;div align="justify"&gt;With &lt;strong&gt;2006&lt;/strong&gt; well underway, many of us may have taken the time to ponder over the past year either to re-evaluate your current position, or just to reflect on the milestones that &lt;strong&gt;&lt;em&gt;2005 &lt;/em&gt;&lt;/strong&gt;has seen. Now is also a good opportunity to update your resume so that it’s current and ready to go should an unexpected situation arise within your existing role, or an attractive job opportunity presents itself.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;With our demanding lifestyles and work schedules it’s so easy to leave the process of reassessing and updating your resume until the last minute, which can unfortunately increase the possibility of achievements and contributions being forgotten. Keeping your resume up to date, or at least transcribing your successes and achievements over the past year (and filing this information for later addition into your document), will ensure that impressive projects, turnarounds and workplace achievements are not omitted from your crucial marketing tool – your resume.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Consider those things that have happened during the past year of which you are particularly proud, that when presented correctly can add to your marketability and overall value you offer a prospective employer.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;To get the thought processes flowing, below are a few examples of what you may have achieved during the year:&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;- Were you selected to participate in any special projects? This would highlight your being singled out due to your expertise in a particular area. You may have coordinated all or part of the project, which would demonstrate impressive leadership qualities. What impact did this project have for the organization? Did this special project lead to additional products/services being offered and if so, what was the revenue growth for the year?&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;- Did you enhance your knowledge and skills through special training/professional development opportunities? Did you lead training programs for your staff and/or colleagues? How has this knowledge expansion impacted on the organization? &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;- Was your hard work recognized by the organization ? If so, how did your work ultimately impact the company?&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;- Did you recommend any changes to policies, processes and procedures that have eliminated inefficiencies and/or improved staffing/operational performance? This is a great achievement and demonstrates initiative and problem solving ability and an ongoing commitment to improving overall efficiency and bottom line profitability – an area that all companies strive to achieve.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;- What challenges were you confronted with during the year, and what steps did you take to alleviate these challenges? Are you able to reflect the overall outcome in a way that has positively impacted on the organization? &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;If you are unable to incorporate this information into your resume right now, file it away to avoid overlooking it when you finally do update your resume.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;strong&gt;Here’s to a successful 2006&lt;/strong&gt;!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-113520699324131802?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/fK4gkuO3cfBGGk0_TILBTCvVa8M/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fK4gkuO3cfBGGk0_TILBTCvVa8M/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/fK4gkuO3cfBGGk0_TILBTCvVa8M/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fK4gkuO3cfBGGk0_TILBTCvVa8M/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/ox3bBrbUAhU" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113520699324131802?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113520699324131802?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/ox3bBrbUAhU/new-year-time-2-update-resumes.html" title="New Year: Time 2 update the Resumes" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><feedburner:origLink>http://techietraits.blogspot.com/2005/12/new-year-time-2-update-resumes.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck8GRXk-eCp7ImA9WBVQGUw.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-113391050914694613</id><published>2005-12-06T18:01:00.000-05:00</published><updated>2005-12-06T18:13:44.750-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2005-12-06T18:13:44.750-05:00</app:edited><title>Types of SQL Databases</title><content type="html">&lt;div align="justify"&gt;SQL database is a type of database technology that is the most widely used in today's computing environment. Here the data is stored in a very structured format that provides high levels of functionality. SQL databases are generally more robust, secure and have better performance than other older database technologies. It provides for 'SQL' access to the data. So it is important to understand the term SQL before we proceed further. &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;strong&gt;What is SQL?&lt;/strong&gt; &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;SQL pronounced either as "&lt;strong&gt;sequel&lt;/strong&gt;" or "seekel" is an acronym for Structured Query Language, a language developed by IBM Corporation for processing data contained in mainframe computer databases. The relational model from which SQL draws much of its conceptual core was formally defined in 1970 by Dr. E. F. Codd, a researcher for IBM in his paper titled "A Relational Model of Data for Large Shared Data Banks". &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;SQL is used to create, maintain &amp; query relational databases and uses regular English words for many of its commands, which makes it easy to use. It is often embedded within other programming languages. A fundamental difference between SQL and standard programming languages is that SQL is declarative. &lt;/div&gt;&lt;div align="justify"&gt; &lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;Major SQL Databases&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;SQL databases can now be classified under two headings like SQL databases that are purely relational and a combination of both Object and Relational. &lt;/div&gt;&lt;div align="justify"&gt; &lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;a href="http://en.wikipedia.org/wiki/List_of_relational_database_management_systems"&gt;&lt;strong&gt;List of relational database management systems&lt;/strong&gt; &lt;/a&gt;&lt;/div&gt;&lt;div align="justify"&gt; &lt;/div&gt;&lt;div align="justify"&gt;Major RDBMSes&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;a href="http://en.wikipedia.org/wiki/DB2"&gt;DB2 &lt;/a&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;a href="http://en.wikipedia.org/wiki/Firebird_(database_server)"&gt;Firebird &lt;/a&gt;&lt;br /&gt;&lt;a href="http://en.wikipedia.org/wiki/Informix"&gt;Informix &lt;/a&gt;&lt;br /&gt;&lt;a href="http://en.wikipedia.org/wiki/Microsoft_SQL_Server"&gt;Microsoft SQL Server &lt;/a&gt;&lt;br /&gt;&lt;a href="http://en.wikipedia.org/wiki/MySQL"&gt;MySQL &lt;/a&gt;&lt;br /&gt;&lt;a href="http://en.wikipedia.org/wiki/Oracle_database"&gt;Oracle &lt;/a&gt;&lt;br /&gt;&lt;a href="http://en.wikipedia.org/wiki/PostgreSQL"&gt;PostgreSQL &lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.daffodildb.com/daffodildb.html"&gt;Daffodil DB &lt;/a&gt;&lt;br /&gt;&lt;a href="http://en.wikipedia.org/wiki/HSQLDB"&gt;HSQLDB &lt;/a&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;a href="http://en.wikipedia.org/wiki/List_of_object-relational_database_management_systems"&gt;&lt;strong&gt;List of object-relational database management systems &lt;/strong&gt;&lt;/a&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Major ORDBMSes&lt;br /&gt;&lt;a href="http://en.wikipedia.org/wiki/Oracle_database"&gt;Oracle &lt;/a&gt;&lt;br /&gt;&lt;a href="http://en.wikipedia.org/wiki/PostgreSQL"&gt;PostgreSQL &lt;/a&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Minor ORDBMSes&lt;br /&gt;&lt;a href="http://en.wikipedia.org/w/index.php?title=GigaBASE&amp;action=edit"&gt;GigaBASE &lt;/a&gt;&lt;a href="http://www.ispras.ru/~knizhnik/gigabase.html"&gt;[1] &lt;/a&gt;( http://www.ispras.ru/~knizhnik/gigabase.html )&lt;br /&gt;&lt;a href="http://en.wikipedia.org/w/index.php?title=UniSQL&amp;amp;action=edit"&gt;UniSQL &lt;/a&gt;&lt;a href="http://www.unisql.com/"&gt;[2] &lt;/a&gt;( http://www.unisql.com )&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-113391050914694613?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/bBe3H5NAbE0lFPUye89SbJ3g7Pw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bBe3H5NAbE0lFPUye89SbJ3g7Pw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/bBe3H5NAbE0lFPUye89SbJ3g7Pw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bBe3H5NAbE0lFPUye89SbJ3g7Pw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/zSDHvzsFL_Q" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113391050914694613?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113391050914694613?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/zSDHvzsFL_Q/types-of-sql-databases.html" title="Types of SQL Databases" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><feedburner:origLink>http://techietraits.blogspot.com/2005/12/types-of-sql-databases.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0EGSHc5eyp7ImA9WBVQGU0.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-113390958923472658</id><published>2005-12-06T17:52:00.000-05:00</published><updated>2005-12-06T17:53:49.923-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2005-12-06T17:53:49.923-05:00</app:edited><title>About MYSQL - Open Source Database</title><content type="html">&lt;div align="justify"&gt;In the recent years, we have seen some solid software applications from the open source world. Linux, Apache and PHP are prime examples of this. Another one of such solid applications is MySQL (&lt;a href="http://www.mysql.com/"&gt;http://www.mysql.com/&lt;/a&gt;). MySQL is a product of MySQL AB, a company which aims to create high quality data storage and management solutions for all in an easy and affordable manner. &lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;MySQL is a full fledged Relational Database Management System like Oracle or Microsoft SQL Server. MySQL supports almost all of the ANSI SQL 99 Standard along with its own added functionalities. Many of the world's largest organizations, including Yahoo!, Google, Cisco, Lufthansa, Dunn &amp;amp; Bradstreet, Hyperion, Sabre Holdings, Cox Communications, The Associated Press and NASA are realizing significant cost savings by using MySQL to power Web sites, business-critical enterprise applications and packaged software. According to the MySQL website, there are currently 4 million active installations of MySQL Database Server in the world and 35,000 downloads per day!&lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;RDBMS are a commonplace in today's large scale corporations. Most companies rely on commercial RDBMS like Oracle. But the days are over when having a strong, secure, fast and stable RDBMS was only in the hands of huge companies. Since MySQL is an open source software application. Other commercial solutions costs in thousands of dollars as compared to MySQL.You can connect to MySQL database using almost any of the programming languages with its standard threadsafe client library and custom drivers. &lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;Commonly used Application Programming Interfaces for MySQL include APIs for C, Perl, Python, PHP, Java and many other popular programming languages. The MySQL database is widely supported on multiple platforms including Linux, Microsoft Windows, FreeBSD, Sun Solaris, IBM's AIX, Mac OS X, HP-UX, AIX, QNX, Novell NetWare, SCO OpenUnix, SGI Irix, and Dec OSF. MySQL enables you to achieve quality administration with its powerful and secure architecture. It also suppots SSL transport-layer encryption which enables even greater security and safe transactions. &lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;On its website, MySQL claims to be the world's most popular RDBMS and provides comparison tests on its website. Many different major organizations are migrating towards MySQL and having their costs cut down to only a minor portion of what they used to spend previously on commercial solutions. And of course, its open source tag certifies you to change the source code and implement new customized features to meet your companies requirements. Like any other major database, MySQL also has full-text indexing and searching capabilities including very useful manipulation functions. &lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;Another great element in MySQL is the Embedded database library which allows you to implement the entire database server under any application or electronic device. This is like having our own database server in the background working.MySQL enjoys a great place among the web development community and is the first choice for many PHP Programmers. The popular solution &lt;strong&gt;LAMP &lt;/strong&gt;(Linux Apache MySQL PHP) is already a buzzword in the web industry.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-113390958923472658?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/bCHT3X8l8s6MtDNA2PK-A4NSVy0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bCHT3X8l8s6MtDNA2PK-A4NSVy0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/bCHT3X8l8s6MtDNA2PK-A4NSVy0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bCHT3X8l8s6MtDNA2PK-A4NSVy0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/bYSRmy28YdI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/113390958923472658/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2005/12/about-mysql-open-source-database.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113390958923472658?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113390958923472658?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/bYSRmy28YdI/about-mysql-open-source-database.html" title="About MYSQL - Open Source Database" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2005/12/about-mysql-open-source-database.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MAQn4-eyp7ImA9WBVRF04.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-113271970857316119</id><published>2005-11-22T23:17:00.000-05:00</published><updated>2005-11-23T04:50:43.053-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2005-11-23T04:50:43.053-05:00</app:edited><title>ORACLE Certification - Program</title><content type="html">&lt;div align="justify"&gt;Corporations worldwide are facing a severe shortage of professionals well-versed in Oracle products and applications. These corporations need an objective way to measure a potential or current employee's Oracle expertise, and the Oracle Certified Professional Program (OCP) is expanding its offerings to meet that need. Several new opportunities, including beta exams for the Oracle Java track and Oracle Forms Developer exams, are further enhancing OCP's strong existing curriculum, making the program helpful to an even greater diversity of job roles. &lt;/div&gt;&lt;div align="justify"&gt; &lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;Certifications Available from OracleThe OCP program has evolved in many ways since its inception in November 1997, and the program now offers more certification choices than ever before. The latest additions to the program include Oracle Internet Application Developer and Oracle Forms Developer Release 6/6i production exams, as well as the newest Oracle Internet Database Operator production exam. Certification in these areas allows technology professionals to build sophisticated, scalable Web-based applications. In addition, new features have been added to the Oracle8 and Oracle8i administrators exams, allowing DBAs to keep pace with advancing Oracle technology. And in July 2000, Oracle began allowing candidates to combine exams from different releases of the OCP certification tracks to meet the new certification requirements. Certain restrictions apply, but the new rule basically allows those working toward a DBA or Application Developer certification to combine the exams they have already passed with exams from more recent certification tracks. &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;span style="font-size:180%;color:#ff0000;"&gt;For a complete list of certification tracks and detailed information on registering, check&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span style="font-size:180%;color:#000099;"&gt;&lt;a href="http://www.oracle.com/education/certification"&gt;www.oracle.com/education/certification&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span style="font-size:180%;color:#000099;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Each track consists of one or more exams composed of 60 to 90 scenario-based multiple-choice and/or interactive graphical questions pertaining to the recommended usage of an Oracle product or application. You must take and pass all core exams in each track to obtain certification for that track. After taking the DBA or Developer track core exams, you can maintain your certification by taking exams on the upgrade path whenever Oracle announces that it's necessary to do so. &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;The OCP candidate guides for each track, downloadable at &lt;a href="http://www.oracle.com/education/certification/index.html" target="_top"&gt;/education/certification&lt;/a&gt;, identify the objectives for each exam in a given track, while also identifying the Oracle Education instructor-led and/or computer-based training options available for exam preparation. &lt;/div&gt;&lt;div align="justify"&gt; &lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;OCP Preparation: Where to Start&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;As busy professionals feel increasing pressure to find more mobile and flexible options for instruction, Oracle University provides quality Web-based learning programs as well as ways to integrate classroom and online study. In addition, Oracle Press continues to offer OCP Exam Guide titles designed for home study. All Oracle-led certification programs have corresponding preparation titles published by Oracle Press, including Database Administrator, Application Developer, Financial Applications, and Database Operator. Oracle also offers practice tests for every OCP track; you can order these tests online at &lt;a href="http://www.oracle.com/education/certification/index.html" target="_top"&gt;/education/certification&lt;/a&gt;. &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Online registration for OCP exams and registration information for world regions other than North America is also available at &lt;a href="http://www.2test.com" target="_top"&gt;http://www.2test.com&lt;/a&gt;. &lt;/div&gt;&lt;div align="justify"&gt;&lt;span style="font-size:180%;color:#993399;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="justify"&gt;&lt;span style="font-size:180%;color:#993399;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="justify"&gt;&lt;span style="font-size:180%;color:#993399;"&gt;&lt;strong&gt;All the Best to all Future OCP's&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-113271970857316119?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/aFqkBKBw42XiQlA1lyz3r15dD8Y/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aFqkBKBw42XiQlA1lyz3r15dD8Y/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/aFqkBKBw42XiQlA1lyz3r15dD8Y/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aFqkBKBw42XiQlA1lyz3r15dD8Y/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/dSFvetaKujk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/113271970857316119/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2005/11/oracle-certification-program.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113271970857316119?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113271970857316119?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/dSFvetaKujk/oracle-certification-program.html" title="ORACLE Certification - Program" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2005/11/oracle-certification-program.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak4MSXY6fip7ImA9WBVREkU.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-113228898881568035</id><published>2005-11-17T23:39:00.000-05:00</published><updated>2005-11-17T23:43:08.816-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2005-11-17T23:43:08.816-05:00</app:edited><title>BI Worlds' - A Platform</title><content type="html">&lt;div align="justify"&gt;It wasn’t all that long ago when business intelligence vendors primarily emphasized the strengths of their individual tools. These days, most of them are highlighting their integrated BI platforms. Examples of BI platforms include BusinessObjects XI, Cognos 8, Hyperion System 9, MicroStrategy 8, and SAS 9.&lt;br /&gt;At a minimum, most BI platforms provide core services such as a common user interface across the underlying platform components, a shared metadata repository, a single sign-on, centralized administration, and a services oriented architecture. Data warehouse development and user communities clearly benefit from the increased productivity and reduced training needs that an integrated platform provides when compared to a collection of individual point products.&lt;br /&gt;Two of these features, a common user interface and a services oriented architecture, can be very helpful as a vendor begins to assimilate recently acquired technology that is not yet fully integrated with its own products. This is especially important nowadays, what with the trend toward consolidation in the industry. In addition, a well-architected platform should allow a vendor’s newer offerings to interoperate with its older products.&lt;br /&gt;The first phase of any BI platform often integrates the individual product user interfaces and provides interoperability among the individual metadata repositories, while latter phases more fully integrate the underlying software components and the metadata and object models. The phased approach has the advantage of providing an evolutionary migration path for the customer while also setting achievable milestones for the vendor’s development team. However, to be truly effective, the vendor should establish and publish a clear roadmap (and more importantly stick to it) of what capabilities will be available when. A credible roadmap is also a valuable marketing and sales tool as the promise of future capabilities can serve to dissuade customers from jumping to competitors that have already released those capabilities.&lt;br /&gt;As most BI platforms consist of both core services and optional extra-cost features (in many cases those that reflect the same capabilities as the vendor’s formerly stand-alone tools), BI vendors have the opportunity to up-sell their installed base and increase the overall breadth and depth of their account penetration. While open, “best-of-breed” offerings were once the buzzword, BI platforms with integrated add-on modules are now the rage. Users don’t necessarily need the best possible solution for every particular situation, especially if this means dealing with multiple vendors to resolve a single system problem; a “good enough” offering in one part of the BI spectrum (e.g., query, reporting, OLAP, visualization, dashboards, data mining, etc.) that interoperates with the vendor’s stronger platform components, is likely to be more useful than several best-in-class offerings that each run standalone.&lt;br /&gt;When evaluating BI platforms, organizations need to look at their current and expected needs and assume that their users will want to be able to do more of their own analyses tomorrow, without assistance from IT, than they are currently doing today. Organizations should make sure that their BI platforms integrate with their users’ desktop environments (e.g., Microsoft Office) as well as their operational enterprise applications. They should recognize that while most operational application vendors (and database vendors) are attempting to increase their presence in the BI market by incorporating additional analytical capabilities into each new product release, most organizations are likely to utilize software from multiple enterprise application vendors (at least until Oracle acquires them all).&lt;br /&gt;Decision-makers should also recognize that acquiring one vendor’s BI platform doesn’t mean that all the other incumbents will necessarily disappear. Although the number of BI vendors in any given organization may diminish over time, it is likely that these organizations will still deploy tools and platforms from more than one BI vendor; therefore, interoperability among the installed/planned BI tools and platforms should be seriously considered. After all, Microsoft Excel is still the most ubiquitous BI tool in use today; it will not likely disappear no matter what other BI products are also deployed. &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-113228898881568035?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/bDoEhTsU54YP_6PnNQ48KnjDX7E/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bDoEhTsU54YP_6PnNQ48KnjDX7E/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/bDoEhTsU54YP_6PnNQ48KnjDX7E/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bDoEhTsU54YP_6PnNQ48KnjDX7E/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/sNoWJlx-2Rg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/113228898881568035/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2005/11/bi-worlds-platform.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113228898881568035?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113228898881568035?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/sNoWJlx-2Rg/bi-worlds-platform.html" title="BI Worlds' - A Platform" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2005/11/bi-worlds-platform.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkYFSX08eyp7ImA9WBVSEUo.&quot;"><id>tag:blogger.com,1999:blog-13815523.post-113102017761725403</id><published>2005-11-03T07:15:00.000-05:00</published><updated>2005-11-05T03:08:38.373-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2005-11-05T03:08:38.373-05:00</app:edited><title>The Next series of 2wenty Terms of Business Objects</title><content type="html">21.Online mode&lt;br /&gt;&lt;br /&gt;The work mode appropriate for a networked environment in which the general supervisor has set up a repository.&lt;br /&gt;&lt;br /&gt;22.Outer join&lt;br /&gt;&lt;br /&gt;A join that links two tables, one of which has rows that do not match those in the common column of the other table.&lt;br /&gt;&lt;br /&gt;23.Personal connection&lt;br /&gt;&lt;br /&gt;A personal connection is used to access resources such as universes or documents. It can be used only by the user who created it. Information about a personal connection is stored in both the PDAC.LSI and PDAC.SSI files; its definition is static and cannot be modified.&lt;br /&gt;&lt;br /&gt;24.Qualification&lt;br /&gt;&lt;br /&gt;A property of an object that determines how it can be used in multidimensional analysis. An object can be qualified as one of three types: a dimension, detail or measure.&lt;br /&gt;&lt;br /&gt;25.Query&lt;br /&gt;&lt;br /&gt;In Designer a query is a technique for creating or modifying a list of values associated with an object. From the Query Panel, a designer builds a query from the classes, objects, and conditions of a universe.&lt;br /&gt;In the BusinessObjects User module, a query is a type of data provider. An end user builds a query from a universe, and then runs the query to generate a BusinessObjects report.&lt;br /&gt;&lt;br /&gt;26.Quick Design&lt;br /&gt;&lt;br /&gt;A wizard in the Designer module that provides guided instructions for creating a basic universe. It lets a designer name a universe, set up a connection to a database, select strategies, create classes and objects, as well as generate joins with cardinalities.&lt;br /&gt;&lt;br /&gt;27.Repository&lt;br /&gt;&lt;br /&gt;A centralized set of relational data structures stored in a database. It enables BusinessObjects users to share resources in a controlled and secured environment. The repository is made up of three domains: the security domain, the universe domain, and the document domain.&lt;br /&gt;&lt;br /&gt;28.Secured connection&lt;br /&gt;&lt;br /&gt;A secured connection is used to access universes or documents that may be restricted or confidential.&lt;br /&gt;It can be shared by several authorized users. Stored in the repository, the definition of a secured connection is updated dynamically.&lt;br /&gt;&lt;br /&gt;29.Shared connection&lt;br /&gt;&lt;br /&gt;A shared connection is used to access common resources such as universes or documents. It can be used by several users. Information about a shared connection is stored in a SDAC.LSI or SDAC.SSI file; its definition is updated dynamically.&lt;br /&gt;&lt;br /&gt;30.Shortcut join&lt;br /&gt;&lt;br /&gt;A join that links two tables by bypassing one or more other tables in the universe.&lt;br /&gt;&lt;br /&gt;31.Strategy&lt;br /&gt;&lt;br /&gt;Scripts that automatically extract structural information about tables, columns, joins, or cardinalities from a database. Designer provides default strategies but a designer can also create strategies. These are referred to as external strategies.&lt;br /&gt;&lt;br /&gt;32.Structure pane&lt;br /&gt;&lt;br /&gt;The graphical component within the main Designer window that shows the schema of the universe. It reflects the underlying database structure of the universe.&lt;br /&gt;&lt;br /&gt;33.Subclass&lt;br /&gt;&lt;br /&gt;A component within a class that groups objects. A subclass can itself contain other subclasses or objects.&lt;br /&gt;&lt;br /&gt;34.Table Browser&lt;br /&gt;&lt;br /&gt;The graphical component within the main Designer window that lets you create the classes and objects of the universe from the tables and columns of a database.&lt;br /&gt;&lt;br /&gt;35.Theta join&lt;br /&gt;&lt;br /&gt;A join that links tables based on a relationship other than equality between two columns.&lt;br /&gt;&lt;br /&gt;36.Universe&lt;br /&gt;&lt;br /&gt;A mapping of the data structure found in databases: tables, columns, joins, etc. A universe, which is made up of classes, objects, and conditions, can represent any specific application, system, or group of users.&lt;br /&gt;&lt;br /&gt;37.Universe domain&lt;br /&gt;&lt;br /&gt;The area of the repository that holds exported universes. The universe domain makes it possible to store, distribute, and administrate universes. There may be multiple universe domains in a repository.&lt;br /&gt;&lt;br /&gt;38.Universe pane&lt;br /&gt;&lt;br /&gt;The graphical component within the main Designer window that displays a hierarchical view of the classes, objects, and conditions in a universe.&lt;br /&gt;Two radio buttons on the lower edge of the pane filter the display of the components. One button, the Classes/Objects filter, provides a view of the classes and objects. The other button, Classes/Conditions, provides a view of the classes and conditions.&lt;br /&gt;&lt;br /&gt;39.User object&lt;br /&gt;&lt;br /&gt;An object created by the end user from the BusinessObjects User module. A user object can be inserted into a universe by the designer.&lt;br /&gt;&lt;br /&gt;40.Workgroup mode&lt;br /&gt;&lt;br /&gt;A work mode whereby a designer creates universes in an environment without a repository. The mode in which a universe is saved determines whether other designers are able to access it. By default, a universe is saved in the mode in which the designer is already working.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13815523-113102017761725403?l=techietraits.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/6VMIaJ14FjPkJ6cfLRRhaBfM6BM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/6VMIaJ14FjPkJ6cfLRRhaBfM6BM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/6VMIaJ14FjPkJ6cfLRRhaBfM6BM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/6VMIaJ14FjPkJ6cfLRRhaBfM6BM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Techietraits/~4/j1hP0a7PJJ4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://techietraits.blogspot.com/feeds/113102017761725403/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://techietraits.blogspot.com/2005/11/next-series-of-2wenty-terms-of.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113102017761725403?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13815523/posts/default/113102017761725403?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Techietraits/~3/j1hP0a7PJJ4/next-series-of-2wenty-terms-of.html" title="The Next series of 2wenty Terms of Business Objects" /><author><name>Krishna Chaitanya Reddy.Reddivari</name><uri>http://www.blogger.com/profile/09388812370954420059</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="33" height="23" src="http://4.bp.blogspot.com/-CSvNWWH4zDE/TwDnCWxAS-I/AAAAAAAAADA/Kf1VcTjO3cg/s220/Techie_Timeline.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://techietraits.blogspot.com/2005/11/next-series-of-2wenty-terms-of.html</feedburner:origLink></entry></feed>

