<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Binbert</title>
	
	<link>http://www.binbert.com/blog</link>
	<description>Technology | Computer | Security | Networking | Mobile</description>
	<lastBuildDate>Tue, 27 Jul 2010 06:03:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/binbert" /><feedburner:info uri="binbert" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>binbert</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>DNS Servers – Why DNS and How it works</title>
		<link>http://feedproxy.google.com/~r/binbert/~3/twUOfNoN5Us/</link>
		<comments>http://www.binbert.com/blog/2010/07/dns-servers-why-dns-and-how-it-works/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 06:03:44 +0000</pubDate>
		<dc:creator>Anbarasu Durai</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[TCPIP]]></category>

		<guid isPermaLink="false">http://www.binbert.com/blog/?p=701</guid>
		<description><![CDATA[I hope most of you know about what is what about DNS, the mighty &#8221; Domain Naming System ( or Service or Server ). This DNS is used for Name resolution purposes. So why name resolution is needed ? ( Many questions ha ? ).
In early days Http and other services were accessed by concern [...]]]></description>
			<content:encoded><![CDATA[<p>I hope most of you know about what is what about DNS, the mighty &#8221; Domain Naming System ( or Service or Server ). This DNS is used for Name resolution purposes. So why name resolution is needed ? ( Many questions ha ? ).</p>
<p>In early days Http and other services were accessed by concern server IP addresses, but now a days all services are mostly accessed by using the name spaces. An hierarchical name space was introduced for unique proprietary name provision for general public and organizations whom uses servers to give services in public networks ( eg., Web server etc., ).</p>
<p>Why I need names instead of Ip addresses to be directly used ? the major issues are given below.</p>
<p>1. A name will represent a company in the public network, IP doesn&#8217;t . ( Eg., www.google.com represents Google Search engine on internet. instead of that if i give a set of numbers as my web site address will that look fair ? (  Eg.,   http://173.194.32.104 )</p>
<p>2. The next thing is if i use my IP address as my site address its difficult for users to remember 100s of sites within their mind</p>
<p>3. The next thing is if I use my IP address as site address, in case if there is a service level issue with my ISP and am switching over to another ISP, my IP will surely get changed. Then i have to intimate all my customers about my change.</p>
<p>4. The fourth one is it is not possible to keep redundant web servers for same web site if they use IP address as site address.</p>
<p>5. The next major issue is I cant use mail address in their format. Will it look fair if i have a mail address as  &#8221; anbarasu@122.165.216.46 &#8220;  ??</p>
<p>So for above mentioned reasons we cannot represent our site address in the IP format. Ok lets have a change.. let me change my site addresses to names such as www.yahoo.com , www.google.com like wise.</p>
<p>What will be the issue ? my basic communication between the servers and clients will be happening by my basic communication protocol the &#8221; TCP / IP &#8220;. I can&#8217;t use a string as my server address .</p>
<p>What to do ? i need IP for basic communication and also i cannot use IP address as my site address. Here came the God father the mighty &#8221; DNS &#8220;.</p>
<p>What actually DNS does ?</p>
<p>DNS is a server in which we can create Names vs IP address records. with a separate container for each and every domain ( A domain represents a company in DNS servers. For example for yahoo there will be a container alloted in which all its servers will be placed www.yahoo.com, chat.yahoo.com, in.yahoo.com ).</p>
<p>Inside the container I have to create records for each server as given below.</p>
<blockquote><p>www.yahoo.com   122.165.216.46</p>
<p>chat.yahoo.com    122.164.215.45</p>
<p>in.yahoo.com         122.164.216.54</p></blockquote>
<p>like wise. This is called DNS data base. The DNS server will be having database for all servers hosted in the public internet ( Lets discuss latter about how a server in America whose name record is available in my local ISP DNS server ).</p>
<p>So now, in my client machine I have to define which is my DNS server ( preferred alternate options will be available in your client machines ). Once you defined it for all name based probes, the client machine will contact your DNS server using your client machine&#8217;s DNS client service to get name query. No matter what type of application your using either a browser or a custom application.</p>
<p>Now in my client machine browser am typing &#8221; www.yahoo.com &#8220;. The client machine OS directs the typed name to the DNS client service and in turn the client service establishes a connection to preferred DNS server in case if preferred DNS server is unavailable the client service establishes connection with the alternate DNS server.</p>
<p>Once the connection is established in between the DNS client and DNS server the DNS client starts name query as shown below. ( lets consider DNS client and server are speaking )</p>
<blockquote><p>Client   :   Hello 203.145.184.40</p>
<p>Server  :   Hello 122.169.200.49</p>
<p>Client   :   Need a name query establish connection</p>
<p>Server  :  Ok establish connection</p>
<p>( connection got established )</p>
<p>Client   :  Need Ip address of www.yahoo.com</p>
<p>( Server Searches its database )</p>
<p>If got the record</p>
<p>Server  :  Ip address of www.yahoo.com is 122.165.216.46</p>
<p>Client   :  Thanks and signing off</p></blockquote>
<p>in this way the client gets IP address of www.yahoo.com, not every time when you access www.yahoo.com, once per hour or two even if you continuously accessing yahoo . Because the resolved name will be in client machine&#8217;s memory for some time. Based on the configurations done in DNS server ( not in DNS client even if it is stored in DNS client ). This is called cache.</p>
<p>So how it is use full for you ? comment on this</p>
<img src="http://feeds.feedburner.com/~r/binbert/~4/twUOfNoN5Us" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.binbert.com/blog/2010/07/dns-servers-why-dns-and-how-it-works/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.binbert.com/blog/2010/07/dns-servers-why-dns-and-how-it-works/</feedburner:origLink></item>
		<item>
		<title>Previous / yesterday’s date in DOS batch file</title>
		<link>http://feedproxy.google.com/~r/binbert/~3/BgS5uSkM2eo/</link>
		<comments>http://www.binbert.com/blog/2010/07/previous-yesterdays-date-in-dos-batch-file/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 11:11:41 +0000</pubDate>
		<dc:creator>Albin Sebastian</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Bat file]]></category>
		<category><![CDATA[Command]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://www.binbert.com/blog/2010/07/previous-yesterdays-date-in-dos-batch-file/</guid>
		<description><![CDATA[Previous / yesterday&#8217;s date in DOS batch file
Here is the script to get previous date output in DOS using bat files. This is very useful when we take backup of files with previous date name. (for example backup_daily_20072010.zip ) or can set bat files to get last 7 days backup to a zip.  According to [...]]]></description>
			<content:encoded><![CDATA[<p>Previous / yesterday&#8217;s date in DOS batch file<br />
Here is the script to get previous date output in DOS using bat files. This is very useful when we take backup of files with previous date name. (for example backup_daily_20072010.zip ) or can set bat files to get last 7 days backup to a zip.  According to your requirement you can get any previous date from this script.  See the variable values. Following Script just show today’s and yesterdays date. Most of the script having some problems when it run on 1st if any moth. but here it is solved. you can customize the date formats also. using variables %DD%, %MM%, %YYYY%  Please comment to this post If you have any query .</p>
<blockquote><p>@echo off<br />
for /f &#8220;tokens=1&#8243; %%i in (&#8216;date /t&#8217;) do set thedate=%%i</p>
<p>set mm=%thedate:~3,2%<br />
set dd=%thedate:~0,2%<br />
set yyyy=%thedate:~6,4%<br />
echo.<br />
echo.<br />
echo Today : %dd%.%mm%.%yyyy%<br />
echo.</p>
<p>set /A dd=%dd% &#8211; 1<br />
set /A mm=%mm% + 0<br />
if /I %dd% GTR 0 goto DONE<br />
set /A mm=%mm% &#8211; 1<br />
if /I %mm% GTR 0 goto ADJUSTDAY<br />
set /A mm=12<br />
set /A yyyy=%yyyy% &#8211; 1<br />
:ADJUSTDAY<br />
if %mm%==1 goto SET31<br />
if %mm%==2 goto LEAPCHK<br />
if %mm%==3 goto SET31<br />
if %mm%==4 goto SET30<br />
if %mm%==5 goto SET31<br />
if %mm%==6 goto SET30<br />
if %mm%==7 goto SET31<br />
if %mm%==8 goto SET31<br />
if %mm%==9 goto SET30<br />
if %mm%==10 goto SET31<br />
if %mm%==11 goto SET30<br />
if %mm%==12 goto SET31<br />
goto ERROR<br />
:SET31<br />
set /A dd=31 + %dd%<br />
goto DONE<br />
:SET30<br />
set /A dd=30 + %dd%<br />
goto DONE<br />
:LEAPCHK<br />
set /A tt=%yyyy% %% 4<br />
if not %tt%==0 goto SET28<br />
set /A tt=%yyyy% %% 100<br />
if not %tt%==0 goto SET29<br />
set /A tt=%yyyy% %% 400<br />
if %tt%==0 goto SET29<br />
:SET28<br />
set /A dd=28 + %dd%<br />
goto DONE<br />
:SET29<br />
set /A dd=29 + %dd%<br />
: DONE<br />
if /i %dd% LSS 10 set dd=0%dd%<br />
if /I %mm% LSS 10 set mm=0%mm%<br />
set YESTERDAY=%dd%.%mm%.%yyyy%<br />
echo.<br />
echo YESTERDAY : %YESTERDAY%<br />
echo.<br />
echo.<br />
pause</p></blockquote>
<img src="http://feeds.feedburner.com/~r/binbert/~4/BgS5uSkM2eo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.binbert.com/blog/2010/07/previous-yesterdays-date-in-dos-batch-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.binbert.com/blog/2010/07/previous-yesterdays-date-in-dos-batch-file/</feedburner:origLink></item>
		<item>
		<title>PL/SQL Fundamentals Part 2</title>
		<link>http://feedproxy.google.com/~r/binbert/~3/K456wTyhFf0/</link>
		<comments>http://www.binbert.com/blog/2010/07/plsql-fundamentals-part-2/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 11:28:31 +0000</pubDate>
		<dc:creator>Bineesh Antony</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.binbert.com/blog/?p=693</guid>
		<description><![CDATA[In the last session , we have seen a brief about relational database model and a table structure. Let us see the database maintenance language called SQL in this chapter.
SQL is English like data base query language initially developed by Donald D Chamberlin and Raymond Boyce to manipulate data in IBM’s database called System R. [...]]]></description>
			<content:encoded><![CDATA[<p>In the<a href="http://www.binbert.com/blog/2010/07/plsql-fundamentals/"> last session </a>, we have seen a brief about relational database model and a table structure. Let us see the database maintenance language called SQL in this chapter.</p>
<p>SQL is English like data base query language initially developed by Donald D Chamberlin and Raymond Boyce to manipulate data in IBM’s database called System R. Foreseeing the scope of SQL, Oracle built their SQL based RDBMS and has done much modification to the structure of SQL. Later ANSI (American National Standards Institute) has approved SQL as the standard query language for Relational Databases.</p>
<p>The strengths of SQL provide benefits for all types of users, including application programmers, database administrators, managers, and end users. Technically speaking, SQL is a data sublanguage. The purpose of SQL is to provide an interface to a relational database such as Oracle Database, and all SQL statements are instructions to the database. In this SQL differs from general-purpose programming languages like C and BASIC.</p>
<p>SQL provides statements for a variety of tasks, such as</p>
<ol>
<li>Querying data</li>
<li>Inserting, updating, and deleting rows in a table</li>
<li>Creating, replacing, altering, and dropping objects</li>
<li>Controlling access to the database and its objects</li>
<li>Guaranteeing database consistency and integrity</li>
</ol>
<p><strong><span style="text-decoration: underline;">Basic Elements of Oracle SQL</span></strong></p>
<p>We will see the basic building blocks of SQL Statements. A detailed analysis of these will be included in the later sessions as and when the use of those is required. Those include</p>
<ol>
<li>Datatypes</li>
<li>Literals</li>
<li>Format Models</li>
<li>Nulls</li>
<li>Comments</li>
<li>Database Objects</li>
<li>Schema Object Names</li>
</ol>
<p><strong><span style="text-decoration: underline;">Datatypes</span></strong></p>
<p>In the previous chapter, we have discussed about the datatypes. The datatype of a value associates a fixed set of properties with the value. These properties cause Oracle to treat values of one datatype differently from values of another.</p>
<p><strong><span style="text-decoration: underline;">Literals</span></strong></p>
<p>The term Literal refers to a fixed data value. For eg, from our table ‘Scott’, ‘Peter’ are character literals. All character literals should be enclosed in single quotation marks. This helps SQL to identify our data literal from Oracle Keywords and Reserved Words (We will talk about Reserved Words in a later stage). The values like 101, 102 (EMPID) are numeric literals which need not to be enclosed in single quotation marks.  Date related data is called Date Literals.</p>
<p><strong><span style="text-decoration: underline;">Format Models</span></strong></p>
<p>A format model is a character literal that describes the format of datetime or numeric data stored in a character string. A format model does not change the internal representation of the value in the database. When you convert a character string into a date or number, a format model determines how Oracle Database interprets the string.  (More about format models will be discussed later in the data conversion lessons)</p>
<p><strong><span style="text-decoration: underline;">Nulls</span></strong></p>
<p>If a column in a row has no value, then the column is said to be null, or to contain null. Nulls can appear in columns of any datatype that are not restricted by NOT NULL or PRIMARY KEY integrity constraints. Use a null when the actual value is not known or when a value would not be meaningful. (Constraints will be discussed later).</p>
<p>Null values are not equal to zero and therefore do not use null to represent a value of zero.</p>
<p><strong><span style="text-decoration: underline;">Comments</span></strong></p>
<p>Comments are used to denote the description of a particular SQL statement and are separated from its execution. It is not the part of an SQL Statement. These help developers to identify more about an object or a statement.</p>
<p><strong><span style="text-decoration: underline;">Database Objects</span></strong></p>
<p>Oracle Database recognizes objects that are associated with a particular schema and objects that are not associated with a particular schema, as described in the sections that follow.</p>
<ul>
<li><span style="text-decoration: underline;">Schema Objects</span></li>
</ul>
<p>A schema is a collection of logical structures of data, or schema objects. A schema is owned by a database user and has the same name as that user. Each user owns a single schema. Schema objects can be created and manipulated with SQL and include the following types of objects:</p>
<ul>
<li>Clusters</li>
<li>Constraints</li>
<li>Database links</li>
<li>Database triggers</li>
<li>Dimensions</li>
<li>External procedure libraries</li>
<li>Index-organized tables</li>
<li>Indexes</li>
<li>Index types</li>
<li>Java classes, Java resources, Java sources</li>
<li>Materialized views</li>
<li>Materialized view logs</li>
<li>Object tables</li>
<li>Object types</li>
<li>Object views</li>
<li>Operators</li>
<li>Packages</li>
<li>Sequences</li>
<li>Stored functions, stored procedures</li>
<li>Synonyms</li>
<li>Tables</li>
<li>Views</li>
</ul>
<p><strong><span style="text-decoration: underline;">Schema Object Names and Qualifiers</span></strong></p>
<p>Some schema objects are made up of parts that you can or must name, such as the columns in a table or view, index and table partitions and subpartitions, integrity constraints on a table, and objects that are stored within a package, including procedures and stored functions.</p>
<p>There are schema object naming conventions and rules which will be discussed later.</p>
<p>Next chapter we will begin with SQL Statements.</p>
<img src="http://feeds.feedburner.com/~r/binbert/~4/K456wTyhFf0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.binbert.com/blog/2010/07/plsql-fundamentals-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.binbert.com/blog/2010/07/plsql-fundamentals-part-2/</feedburner:origLink></item>
		<item>
		<title>Epic browser portable edition</title>
		<link>http://feedproxy.google.com/~r/binbert/~3/AY4wIUX4A-s/</link>
		<comments>http://www.binbert.com/blog/2010/07/epic-browser-mobile-portable-edition/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 06:58:49 +0000</pubDate>
		<dc:creator>Albin Sebastian</dc:creator>
				<category><![CDATA[Softwares]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Epic]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Portable]]></category>

		<guid isPermaLink="false">http://www.binbert.com/blog/2010/07/epic-browser-mobile-portable-edition/</guid>
		<description><![CDATA[Earlier Arun Wilson explained about How to create a portable application using winrar. You can create a portable version of Epic Browser in same way. Go through following steps to create your own. You need winrar application in your computer.
First you have to download Epic Browser and install in your computer.
Now go to your installation [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier <a href="http://www.binbert.com/blog/author/arun/">Arun Wilson</a> explained about <a href="http://www.binbert.com/blog/2010/05/create-portable-version-of-a-software-using-winrar-sfx/">How to create a portable application using winrar</a>. You can create a portable version of <a href="http://www.binbert.com/blog/2010/07/download-epic-browser-first-indian-browser/">Epic Browser</a> in same way. Go through following steps to create your own. You need winrar application in your computer.</p>
<p>First you have to download <a href="http://www.binbert.com/blog/2010/07/download-epic-browser-first-indian-browser/">Epic Browser</a> and install in your computer.</p>
<p>Now go to your installation folder</p>
<p>Default location of Epic browser is C:\Program Files\Epic</p>
<p>Compress all files to, For that go to C:\Program Files\Epic and select all files right click, From menu select “ Add to Epic.rar”</p>
<p>Compressed file will be in “C:\Program Files\Epic” folder</p>
<p>Copy that file to desktop Then Open it using winrar</p>
<p>Click the SFX icon</p>
<p><a href="http://www.binbert.com/blog/wp-content/uploads/2010/07/EpicSFX.gif"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="Epic SFX" src="http://www.binbert.com/blog/wp-content/uploads/2010/07/EpicSFX_thumb.gif" border="0" alt="Epic SFX" width="423" height="186" /></a></p>
<p>Select Advanced SFX Options</p>
<p><a href="http://www.binbert.com/blog/wp-content/uploads/2010/07/advancedepicrar.gif"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="advanced epic rar" src="http://www.binbert.com/blog/wp-content/uploads/2010/07/advancedepicrar_thumb.gif" border="0" alt="advanced epic rar" width="364" height="470" /></a></p>
<p>Type “epic.exe” in Run after extraction</p>
<p><a href="http://www.binbert.com/blog/wp-content/uploads/2010/07/runepicrar.gif"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="run epic rar" src="http://www.binbert.com/blog/wp-content/uploads/2010/07/runepicrar_thumb.gif" border="0" alt="run epic rar" width="364" height="470" /></a></p>
<p>Go to Modes tab</p>
<p>Select “unpack to temporary folder</p>
<p>Select “Hide All”</p>
<p>Select “Skip Existing files”</p>
<p><a href="http://www.binbert.com/blog/wp-content/uploads/2010/07/modesepicrar.gif"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="modes epic rar" src="http://www.binbert.com/blog/wp-content/uploads/2010/07/modesepicrar_thumb.gif" border="0" alt="modes epic rar" width="364" height="470" /></a></p>
<p>Then Press “OK”</p>
<p>Now the epic.EXE file will be generated in the same directory</p>
<p>Now the file is ready for the mobile use, you can run it from a pen drive by copying the single exe file.</p>
<img src="http://feeds.feedburner.com/~r/binbert/~4/AY4wIUX4A-s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.binbert.com/blog/2010/07/epic-browser-mobile-portable-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.binbert.com/blog/2010/07/epic-browser-mobile-portable-edition/</feedburner:origLink></item>
		<item>
		<title>Download Epic Browser – First Indian Browser</title>
		<link>http://feedproxy.google.com/~r/binbert/~3/zcPGcqZyqX4/</link>
		<comments>http://www.binbert.com/blog/2010/07/download-epic-browser-first-indian-browser/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 08:30:59 +0000</pubDate>
		<dc:creator>Albin Sebastian</dc:creator>
				<category><![CDATA[Softwares]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.binbert.com/blog/2010/07/download-epic-browser-first-indian-browser/</guid>
		<description><![CDATA[
EPIC browser is  Mozilla powered web browser for Indians. The browser support most of the Indian languages, also it decorated with many Indian themes.  The other advantage is EPIC browser have many application integrations like video, facebook, twitter etc &#8230; And Epic is the world&#8217;s only Antivirus browser, you can also see a file browser [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.binbert.com/blog/wp-content/uploads/2010/07/EpicBrowserLogo.jpg"><img class="alignleft" style="display: block; margin-left: auto; margin-right: auto; border: 0pt none;" title="Epic Browser Logo" src="http://www.binbert.com/blog/wp-content/uploads/2010/07/EpicBrowserLogo_thumb.jpg" border="0" alt="Epic Browser Logo" width="154" height="154" /></a></p>
<p><a href="http://www.epicbrowser.com/">EPIC browser</a> is  Mozilla powered web browser for Indians. The browser support most of the Indian languages, also it decorated with many Indian themes.  The other advantage is EPIC browser have many application integrations like video, facebook, twitter etc &#8230; And Epic is the world&#8217;s only Antivirus browser, you can also see a file browser inside the web browser.  Built in Antivirus Scan downloads automatically. Scan your system manually. Epic Kills any viruses it finds.</p>
<p>.</p>
<p><strong> </strong></p>
<p><strong>Difference from other Browsers</strong></p>
<blockquote><p>•    The makers claimed that it is the world’s only antivirus browser.<br />
•    Browser has an inbuilt addon to detect websites that are dangerous.<br />
•    It is the first ever web browser from India.<br />
•    Anti-phishing protection – a big bold domain name on the address bar.<br />
•    You can type in 12 different Indian languages including Hindi, Gujarati, Marathi, Kannada, Telugu, Bengali, Tamil, Malayalam, Urdu and Punjabi.<br />
•    In the browser’s sidebar you can edit text, read news, view videos and pictures.<br />
•    Having faster browsing and faster downloads.</p></blockquote>
<h1><span style="font-size: medium;">Download  : </span><a href="http://http.cdnlayer.com/href/epic-setup.exe" target="_blank"><span style="font-size: medium;">Epic Browser</span></a></h1>
<img src="http://feeds.feedburner.com/~r/binbert/~4/zcPGcqZyqX4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.binbert.com/blog/2010/07/download-epic-browser-first-indian-browser/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.binbert.com/blog/2010/07/download-epic-browser-first-indian-browser/</feedburner:origLink></item>
		<item>
		<title>Bat file to get File size in human readable format</title>
		<link>http://feedproxy.google.com/~r/binbert/~3/OQCuCk_dGs4/</link>
		<comments>http://www.binbert.com/blog/2010/07/bat-file-to-get-file-size-in-human-readable-format/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 05:30:55 +0000</pubDate>
		<dc:creator>Albin Sebastian</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Bat file]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://www.binbert.com/blog/2010/07/bat-file-to-get-file-size-in-human-readable-format/</guid>
		<description><![CDATA[There is an example of Bat file which can give output of file size in human readable format (Value with KB / MB etc ). This bat file is good with some copying / backup bat files. Here you will get the file size in variable called %size% . You can test the script by [...]]]></description>
			<content:encoded><![CDATA[<p>There is an example of Bat file which can give output of file size in human readable format (Value with KB / MB etc ). This bat file is good with some copying / backup bat files. Here you will get the file size in variable called %size% . You can test the script by giving and input variable for %file%.</p>
<blockquote><p>echo off</p>
<p>set /p file= Type your file name :</p>
<p>for /f &#8220;tokens=4 &#8221; %%a in (&#8216;dir /a-d/-c %file% ^| findstr /e %file%&#8217;) do set size=%%a</p>
<p>set /a KB=(%size%/1024)</p>
<p>echo %KB% KB</p>
<p>set /a MB=(%size%/1024)/1024</p>
<p>Echo %MB% MB</p>
<p>pause</p></blockquote>
<img src="http://feeds.feedburner.com/~r/binbert/~4/OQCuCk_dGs4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.binbert.com/blog/2010/07/bat-file-to-get-file-size-in-human-readable-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.binbert.com/blog/2010/07/bat-file-to-get-file-size-in-human-readable-format/</feedburner:origLink></item>
		<item>
		<title>PL/SQL Fundamentals</title>
		<link>http://feedproxy.google.com/~r/binbert/~3/PpXAhhAG8xE/</link>
		<comments>http://www.binbert.com/blog/2010/07/plsql-fundamentals/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 06:56:25 +0000</pubDate>
		<dc:creator>Bineesh Antony</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.binbert.com/blog/2010/07/plsql-fundamentals/</guid>
		<description><![CDATA[In my last article we were discussing about a few points related to the origin of the computer era. In this lesson, we will talk about database management systems, query language and the procedure based programming.
Any application software picks data from its database. A database can be defined as a collection of processed data arranged [...]]]></description>
			<content:encoded><![CDATA[<p>In my <a href="http://www.binbert.com/blog/2010/05/we-are-living-at-the-edge-of-technologies/" target="_blank">last article</a> we were discussing about a few points related to the origin of the computer era. In this lesson, we will talk about database management systems, query language and the procedure based programming.</p>
<p>Any application software picks data from its database. A database can be defined as a collection of processed data arranged in two-dimensional tables ( ie . in rows and columns). To manage the stored data, we need specialized software which can be called as Database Management Systems (DBMS).</p>
<p>DBMS arranges and stores data in a logical fashion so that it can be easily maintained. IBM was the first company to introduce a formal database management system called IMS. In 1970, the concept of Relational Structure of a database came into effect which is proposed by Dr. Edgar F Codd.</p>
<p>Earlier, list-model database was used, where data is stored in the form of lists. The maintenance of these list based databases was quite difficult.</p>
<p>Codd’s idea of storing data in a tabular manner started a revolution in the database management systems. Instead of storing the entire data in a list, Codd’s way of tabular storage used a method of splitting the data in a logical fashion and stored in multiple tables and linking the tables together by relating the tables. DBMS which store data in this model is known as RDBMS (Relational Database Management System).</p>
<p>In this modern world we have many RDBMS software ex: Oracle, MS SQL Server, IBM DB2 etc..</p>
<p>In our session we are learning a little about Oracle Database and programming using Oracle. Oracle is the world’s leading RDBMS found by Dr. Larry Ellison based on the relational database structure designed by Dr. E F Codd. Oracle stores data in the form of tables and views. We are not going deep into how oracle stores data, oracle architecture, memory etc&#8230; We will go through the details of tables, views etc&#8230;</p>
<p>A table in an Oracle database is arranged in a two dimensional way represented by Rows and Columns. It is very much similar to an excel worksheet. The picture below displays the structure of a table.</p>
<p><strong>Employees</strong></p>
<p><strong> </strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="103" valign="top">EMPID</td>
<td width="112" valign="top">EMPNAME</td>
<td width="118" valign="top">DESIGNATION</td>
<td width="105" valign="top">SALARY</td>
<td width="110" valign="top">HIREDATE</td>
<td width="90" valign="top">DEPTID</td>
</tr>
<tr>
<td width="103" valign="top">101</td>
<td width="112" valign="top">Scott</td>
<td width="118" valign="top">Manager</td>
<td width="105" valign="top">12500</td>
<td width="110" valign="top">12-Jul-2010</td>
<td width="90" valign="top">200</td>
</tr>
<tr>
<td width="103" valign="top">102</td>
<td width="112" valign="top">Peter</td>
<td width="118" valign="top">Sales Executive</td>
<td width="105" valign="top">10000</td>
<td width="110" valign="top">08-Jul-2009</td>
<td width="90" valign="top">300</td>
</tr>
<tr>
<td width="103" valign="top">103</td>
<td width="112" valign="top">Matt</td>
<td width="118" valign="top">Secretary</td>
<td width="105" valign="top">5000</td>
<td width="110" valign="top">08-Jul-2009</td>
<td width="90" valign="top">200</td>
</tr>
<tr>
<td width="103" valign="top">104</td>
<td width="112" valign="top">Andrea</td>
<td width="118" valign="top">Receptionist</td>
<td width="105" valign="top">5000</td>
<td width="110" valign="top">08-Jul-2009</td>
<td width="90" valign="top">400</td>
</tr>
<tr>
<td width="103" valign="top">105</td>
<td width="112" valign="top">Roma</td>
<td width="118" valign="top">Receptionist</td>
<td width="105" valign="top">6500</td>
<td width="110" valign="top">25-Feb-2010</td>
<td width="90" valign="top">400</td>
</tr>
</tbody>
</table>
<p>The above displays the employee details of an organization. The table has a name, Employees. (It is recommended that while creating the table names, the name should be plural). Each column in the table has a column name such as EMPID, EMPNAME etc. Under each column, similar type of data is stored. Each row contains multiple details of a single entity.</p>
<p>Let us see another table called Departments below. Instead of including the department details of each employee in the same employee table, another table is created to store those. We can see that there is a relation exists between each table in the form of EMPID and DEPTID by which each row of these tables corresponds to each other. And this is how a relational database management systems records data. (The table structure here only for illustration purpose, more about creating a table in correct way will be discussed later).</p>
<p><strong>Department</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="160" valign="top">DEPTID</td>
<td width="160" valign="top">DEPT</td>
<td width="160" valign="top">LOCATION</td>
<td width="160" valign="top">EMPID</td>
</tr>
<tr>
<td width="160" valign="top">200</td>
<td width="160" valign="top">Administration</td>
<td width="160" valign="top">Texas</td>
<td width="160" valign="top">101</td>
</tr>
<tr>
<td width="160" valign="top">300</td>
<td width="160" valign="top">Sales</td>
<td width="160" valign="top">Texas</td>
<td width="160" valign="top">102</td>
</tr>
<tr>
<td width="160" valign="top">200</td>
<td width="160" valign="top">Administration</td>
<td width="160" valign="top">Texas</td>
<td width="160" valign="top">103</td>
</tr>
<tr>
<td width="160" valign="top">400</td>
<td width="160" valign="top">Reception</td>
<td width="160" valign="top">Seattle</td>
<td width="160" valign="top">104</td>
</tr>
<tr>
<td width="160" valign="top">400</td>
<td width="160" valign="top">Reception</td>
<td width="160" valign="top">Seattle</td>
<td width="160" valign="top">105</td>
</tr>
</tbody>
</table>
<p><strong> </strong></p>
<p>The data in the above tables can anytime be queried, manipulated by a database query language. Before we start with the database query language, let us analyze some aspects and foundation stones of database. We shall talk about the data types, character sets, operators, and oracle database specific items.</p>
<p>In a typical database, we store different kinds of data in the form of numbers, alphabets, pictures, movie files etc. When you create a table or cluster, you must specify a data type for the columns accordingly.</p>
<p>Oracle Database provides a number of built-in data types as well as several categories of user-defined types that can be used as data types. A datatype can be either scalar or nonscalar. A scalar type contains an atomic value, whereas a non-scalar (sometimes called a &#8220;collection&#8221;) contains a set of values. A large object (LOB) is a special form of scalar datatype representing a large scalar value of binary or character data. LOBs are subject to some restrictions that do not affect other scalar types because of their size. The below table lists the most common datatypes used in oracle database.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="319" valign="top"><strong>Datatype</strong></td>
<td width="319" valign="top"><strong>Description</strong></td>
</tr>
<tr>
<td width="319" valign="top">VARCHAR2(size [BYTE | CHAR])</td>
<td width="319" valign="top">Variable-length character string having maximum length size bytes or characters. Maximum size is 4000 bytes or characters, and minimum is 1 byte or 1 character. You must specify size for VARCHAR2.</p>
<p>BYTE indicates that the column will have byte length semantics;</p>
<p>CHAR indicates that the column will have character semantics</td>
</tr>
<tr>
<td width="319" valign="top">NVARCHAR2(size)</td>
<td width="319" valign="top">Variable-length Unicode character string having maximum length size characters. The number of bytes can be up to two times size for AL16UTF16 encoding and three times size for UTF8 encoding. Maximum size is determined by the national character set definition, with an upper limit of 4000 bytes. You must specify size for NVARCHAR2</td>
</tr>
<tr>
<td width="319" valign="top">NUMBER[(precision [, scale]])</td>
<td width="319" valign="top">Number having precision p and scale s. The precision p can range from 1 to 38. The scale s can range from -84 to 127.</td>
</tr>
<tr>
<td width="319" valign="top">LONG</td>
<td width="319" valign="top">Character data of variable length up to 2 gigabytes, or 231 -1 bytes. Provided for backward compatibility</td>
</tr>
<tr>
<td width="319" valign="top">DATE</td>
<td width="319" valign="top">Valid date range from January 1, 4712 BC to December 31, 9999 AD. The default format is determined explicitly by the NLS_ DATE_FORMAT parameter or implicitly by the NLS_TERRITORY</p>
<p>Parameter. The size is fixed at 7 bytes. This datatype contains the date time fields YEAR, MONTH, DAY, HOUR, MINUTE, and SECOND. It does not have fractional seconds or a time zone.</td>
</tr>
<tr>
<td width="319" valign="top">TIMESTAMP [(fractional_</p>
<p>seconds)]</td>
<td width="319" valign="top">Year, month, and day values of date, as well as hour, minute, and second values of time, where fractional_seconds_precision is the number of digits in the fractional part of the SECOND datetime field. Accepted values of fractional_seconds_precision are 0 to 9. The default is 6. The default format is determined explicitly by the NLS_DATE_FORMAT parameter or implicitly by the NLS_TERRITORY parameter. The</p>
<p>Sizes vary from 7 to 11 bytes, depending on the precision. This datatype contains the datetime fields YEAR, MONTH, DAY, HOUR, MINUTE, and SECOND. It contains fractional seconds but does</p>
<p>not have a time zone</td>
</tr>
<tr>
<td width="319" valign="top">CHAR [(size [BYTE | CHAR])]</td>
<td width="319" valign="top">Fixed-length character data of length size bytes. Maximum size is 2000 bytes or characters. Default and minimum size is 1 byte. BYTE and CHAR have the same semantics as for VARCHAR2</td>
</tr>
<tr>
<td width="319" valign="top">NCHAR[(size)]</td>
<td width="319" valign="top">Fixed-length character data of length size characters. The number of bytes can be up to two times size for AL16UTF16 encoding and three times size for UTF8 encoding. Maximum size is determined by the national character set definition, with an upper limit of 2000 bytes. Default and minimum size is 1 character</td>
</tr>
</tbody>
</table>
<p>Oracle database also has supplied datatypes for advanced uses. Some of them are CLOB, NCLOB, BFILE, BLOB, RAW, ROWID, LONG RAW, BOOLEAN, EXCEPTION, BINARY FLOAT, BINARY DOUBLE, INTERVAL etc&#8230; We will go through each of them in later sessions.</p>
<p>The data types are classified into two:</p>
<p>Character datatype which is used to store character based data</p>
<p>Non-character datatypes which is used to stored number form of data.</p>
<p>In the above tables, we see that each column has its own specific data types. The first column EMPID stores only numbers and therefore NUMBER datatype is used and it allows only numbers to be stored. The second column EMPNAME stores characters, therefore VARCHAR2 datatype is stored which allows alphanumeric characters to be stored. HIREDATE uses DATE datatype and only date format is allowed. Each column has a specification in the form of how many characters can be accommodated maximum.</p>
<p>Next lesion, we will discuss about the database query language which is known as Structured Query Language (SQL).</p>
<img src="http://feeds.feedburner.com/~r/binbert/~4/PpXAhhAG8xE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.binbert.com/blog/2010/07/plsql-fundamentals/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.binbert.com/blog/2010/07/plsql-fundamentals/</feedburner:origLink></item>
		<item>
		<title>COCON – International Information Security Day in Kochi on 5th and 6th Aug 2010</title>
		<link>http://feedproxy.google.com/~r/binbert/~3/86WN82kvLz0/</link>
		<comments>http://www.binbert.com/blog/2010/07/cocon-international-information-security-day-in-kochi-on-5th-and-6th-aug-2010/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 07:45:34 +0000</pubDate>
		<dc:creator>Albin Sebastian</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[India]]></category>

		<guid isPermaLink="false">http://www.binbert.com/blog/2010/07/cocon-international-information-security-day-in-kochi-on-5th-and-6th-aug-2010/</guid>
		<description><![CDATA[
c0c0n is an annual event conducted as part of the International Information Security Day. Kochi City Police along with the Matriux Security Community is organizing a 2 day International Security and Hacking Conference titled c0c0n 2010, last time it was called CyberSafe . as part of Information Security Day 2010. Various technical, non-technical, legal and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.binbert.com/blog/wp-content/uploads/2010/07/c0c0ncochin.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="c0c0n cochin" src="http://www.binbert.com/blog/wp-content/uploads/2010/07/c0c0ncochin_thumb.jpg" border="0" alt="c0c0n cochin" width="458" height="103" /></a></p>
<p>c0c0n is an annual event conducted as part of the <a href="http://www.informationsecurityday.com/">International Information Security Day</a>. <a href="http://www.kochicitypolice.org/">Kochi City Police</a> along with the Matriux Security Community is organizing a 2 day International Security and Hacking Conference titled c0c0n 2010, last time it was called <a href="http://informationsecurityday.com/cybersafe/">CyberSafe</a> . as part of Information Security Day 2010. Various technical, non-technical, legal and community events are organized as part of the program. c0c0n 2010 is scheduled on 05, 06 Aug 2010.</p>
<p>c0c0n is aimed at providing a platform to discuss, showcase, educate, understand and spread awareness on the latest trends in information, cyber and hi-tech crimes. It also aims to provide a hand-shaking platform for various corporate, government organizations including the various investigation agencies, academia, research organizations and other industry leaders and players for better co-ordination in making the cyber world a better and safe place to be.</p>
<p><strong>Starts:</strong> Thursday August 05, 2010, 08:00AM<br />
<strong>Ends:</strong> Friday August 06, 2010, 05:00PM</p>
<p><strong>Location:</strong> Dream Hotel, Kadavanthra, Cochin, KERALA 682020 IN</p>
<p><strong> </strong></p>
<p><strong><span style="text-decoration: underline;">SPEAKERS : </span></strong></p>
<blockquote><p><strong>Raoul Chiesa</strong><br />
Senior Advisor on Strategic Alliances &amp; Cybercrime Issues &#8211; United Nations Interregional Crime &amp; Justice Research Institute (UNICRI)<br />
Member PSG &#8211; European Network and Information Security Agency (ENISA)<br />
Founder &amp; CTO, Mediaservice.net &#8211; Italy</p>
<p><strong>Fyodor Yarochkin</strong><br />
Security analyst for GuardInfo.<strong> </strong></p>
<p><strong>Michael Kemp</strong><br />
Xiphos Research Labs, Birmingham</p>
<p><strong>Mauro Risonho de Paula Assumpção</strong><br />
Founder &#8211; BackTrack Brasil (BTB)<br />
Moderator and Translator <a href="http://www.backtrack-linux.org">Backtrack USA.</a></p>
<p><strong>Vahan Markarov</strong><br />
Yerevan, Armenia</p>
<p><strong>Sebastian Edassery, </strong>CFE, CHFI, ACE<br />
Manager &#8211; Forensic &amp; Dispute Services &#8211; Deloitte India</p></blockquote>
<p>Visit <a href="http://www.informationsecurityday.com/c0c0n/" target="_blank">Official website</a> for more details</p>
<p>Find <strong>c0c0n </strong>on &#8211; <a href="http://www.facebook.com/pages/c0c0n/137968402889465" target="_blank">Facebook</a> – <a href="http://twitter.com/c0c0n2010" target="_blank">Twitter</a> – <a href="http://events.linkedin.com/C0c0n-2010/pub/350511" target="_blank">Linkedin</a></p>
<img src="http://feeds.feedburner.com/~r/binbert/~4/86WN82kvLz0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.binbert.com/blog/2010/07/cocon-international-information-security-day-in-kochi-on-5th-and-6th-aug-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.binbert.com/blog/2010/07/cocon-international-information-security-day-in-kochi-on-5th-and-6th-aug-2010/</feedburner:origLink></item>
		<item>
		<title>View, Edit, Repair Tool for Outlook auto completion (.nk2) file</title>
		<link>http://feedproxy.google.com/~r/binbert/~3/e47374xeTjE/</link>
		<comments>http://www.binbert.com/blog/2010/07/view-edit-repair-tool-for-outlook-auto-completion-nk2-file/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 11:09:19 +0000</pubDate>
		<dc:creator>Albin Sebastian</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[NK2]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.binbert.com/blog/?p=651</guid>
		<description><![CDATA[The auto completion of Microsoft outlook is working with the help of a file with .NK2 extension. It is an auto generated file according to user activity.
Sometimes you may need to edit the file to remove unwanted contacts from the auto completion list. There are no explorers like address book for this file. There is [...]]]></description>
			<content:encoded><![CDATA[<p>The auto completion of Microsoft outlook is working with the help of a file with .<strong>NK2 </strong>extension. It is an auto generated file according to user activity.</p>
<p>Sometimes you may need to edit the file to remove unwanted contacts from the auto completion list. There are no explorers like address book for this file. There is a small utility called <strong>NK2Edit, </strong>with the<strong> </strong>help of <strong>NK2Edit software, </strong>you can do many operations like view, add, edit, delete, merge, repair, export . NK2Edit is completely free for personal use at your home and for using in any charity/non-profit organization. When you use the NK2Edit utility, you don&#8217;t have to worry about <a href="http://www.binbert.com/blog/2010/07/file-location-of-profile-nk2-outlook-auto-completion/">locating the NK2 file </a>, because NK2Edit automatically open the default NK2 file for you.</p>
<p>.</p>
<p><strong><span style="color: #0000ff;">Download   : <a href="http://www.nirsoft.net/utils/outlook_nk2_edit.html"> NK2Edit</a> From NirSoft </span></strong></p>
<p><strong><span style="color: #0000ff;">.<br />
</span></strong></p>
<div id="attachment_652" class="wp-caption aligncenter" style="width: 536px"><a href="http://www.binbert.com/blog/wp-content/uploads/2010/07/Outlook-nk2-file-edit-view.jpg"><img class="size-full wp-image-652" title="Outlook nk2 file edit view" src="http://www.binbert.com/blog/wp-content/uploads/2010/07/Outlook-nk2-file-edit-view.jpg" alt="" width="526" height="327" /></a><p class="wp-caption-text">NK2 file opened in NK2Edit</p></div>
<p><strong><br />
</strong></p>
<div id="attachment_654" class="wp-caption aligncenter" style="width: 459px"><a href="http://www.binbert.com/blog/wp-content/uploads/2010/07/outlook-nk2-file-edit-form.jpg"><img class="size-full wp-image-654" title="outlook nk2 file edit form" src="http://www.binbert.com/blog/wp-content/uploads/2010/07/outlook-nk2-file-edit-form.jpg" alt="" width="449" height="394" /></a><p class="wp-caption-text">Add / Edit an NK2 address</p></div>
<p><strong><span style="color: #0000ff;">.<br />
</span></strong></p>
<p style="text-align: center;">
<img src="http://feeds.feedburner.com/~r/binbert/~4/e47374xeTjE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.binbert.com/blog/2010/07/view-edit-repair-tool-for-outlook-auto-completion-nk2-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.binbert.com/blog/2010/07/view-edit-repair-tool-for-outlook-auto-completion-nk2-file/</feedburner:origLink></item>
		<item>
		<title>File location of Profile .nk2 – Outlook autocomplete</title>
		<link>http://feedproxy.google.com/~r/binbert/~3/RpiU4p2MPIA/</link>
		<comments>http://www.binbert.com/blog/2010/07/file-location-of-profile-nk2-outlook-auto-completion/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 09:27:07 +0000</pubDate>
		<dc:creator>Albin Sebastian</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Address]]></category>
		<category><![CDATA[NK2]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://www.binbert.com/blog/?p=640</guid>
		<description><![CDATA[ .
The location of the NK2 file created by Outlook might be different from one computer to another, depending on the operating system and the version of Outlook.  Refer following path to fond the file

For : Outlook 2003/2007 with Windows 2000, Windows XP, or Windows Server 2003
Location : C:\Documents and Settings\[User name]\Application Data\Microsoft\Outlook
For : Outlook [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.binbert.com/blog/wp-content/uploads/2010/07/ms_office_logo.jpg"><img class="size-full wp-image-641  aligncenter" title="ms_office_logo" src="http://www.binbert.com/blog/wp-content/uploads/2010/07/ms_office_logo.jpg" alt="" width="150" height="150" /></a> .</p>
<p>The location of the NK2 file created by Outlook might be different from one computer to another, depending on the operating system and the version of Outlook.  Refer following path to fond the file</p>
<p><span id="more-640"></span></p>
<p>For : Outlook 2003/2007 with Windows 2000, Windows XP, or Windows Server 2003<br />
Location : C:\Documents and Settings\[User name]\Application Data\Microsoft\Outlook</p>
<p>For : Outlook 2003/2007 with Windows Vista, Windows 7, or Windows server 2008</p>
<p>Location : C:\Users\[User Profile]\AppData\Roaming\Microsoft\Outlook</p>
<p>For: Outlook 2010 with Windows Vista, Windows 7, or Windows server 2008</p>
<p>Location : C:\Users\win764\AppData\Local\Microsoft\Outlook\RoamCache</p>
<p>The file will be in .dat format</p>
<p>For : Outlook 2010 with Windows XP</p>
<p>Location : C:\Documents and Settings\[User Profile]\Local Settings\Application Data\Microsoft\Outlook\RoamCache</p>
<p>The file will be in .dat format</p>
<img src="http://feeds.feedburner.com/~r/binbert/~4/RpiU4p2MPIA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.binbert.com/blog/2010/07/file-location-of-profile-nk2-outlook-auto-completion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.binbert.com/blog/2010/07/file-location-of-profile-nk2-outlook-auto-completion/</feedburner:origLink></item>
	</channel>
</rss>
