<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-15540611</id><updated>2011-05-31T16:09:44.186-07:00</updated><title type='text'>itpapers</title><subtitle type='html'>These are the articles related to my work and experience.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>28</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-15540611.post-114984061736728683</id><published>2006-06-09T01:08:00.000-07:00</published><updated>2006-06-09T01:10:17.373-07:00</updated><title type='text'>Information_schema Part3</title><content type='html'>A Primer on INFORMATION_SCHEMA Views in SQL Server 2000 - Most commonly used queries on INFORMATION_SCHEMA views (Page 3 of 5 )&lt;br /&gt;The following queries may help application programmers to get the most out of INFORMATION_SCHEMA views in a practical way. You can execute these queries on any database of any SQL Server 2000 instance.&lt;br /&gt;The following command gives the list of tables available in the database:&lt;br /&gt;select table_name&lt;br /&gt;from information_schema.tables&lt;br /&gt;where table_type='BASE TABLE'&lt;br /&gt;The following command gives the list of columns of every table in the database, including their data types and widths. You can also use a WHERE clause, if you would like to deal with only one table.&lt;br /&gt;select table_name,column_name, data_type, character_maximum_length as width&lt;br /&gt;from information_schema.columns&lt;br /&gt;order by table_name,ordinal_position&lt;br /&gt;The following command gives the list of all views and their definitions from the database.&lt;br /&gt;select table_name as view_name, view_definition from information_schema.views&lt;br /&gt;The following command gives all the list stored procedures and their definitions (unless they are encrypted) available in the database. To get the list of stored functions just replace the word ‘PROCEDURE’ with ‘FUNCTION’.&lt;br /&gt;select routine_name, routine_definition&lt;br /&gt;from information_schema.routines&lt;br /&gt;where routine_type='PROCEDURE'&lt;br /&gt;The following command gives you all the foreign key constraints (relationships) together with their respective primary keys of parents.&lt;br /&gt;select constraint_name as 'foreign key', unique_constraint_name as 'parent primary key'&lt;br /&gt;from information_schema.referential_constraints&lt;br /&gt;The following gives you all the lists of parameters of every routine (stored procedure or stored function) along with their data types and widths.&lt;br /&gt;select specific_name as [routine name],parameter_name, data_type, character_maximum_length as [width]&lt;br /&gt;from information_schema.parameters&lt;br /&gt;order by specific_name,ordinal_position&lt;br /&gt;The above examples are just to help you understand how this works. You can also design more complicated queries by joining the INFORMATION_SCHEMA views together according to the requirements.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;------------------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;A Primer on INFORMATION_SCHEMA Views in SQL Server 2000 - Internals of INFORMATION_SCHEMA views (Page 4 of 5 )&lt;br /&gt;Now that you  have enough of an understanding of INFORMATION_SCHEMA views, let us move on to further internals of INFORMATION_SCHEMA views. &lt;br /&gt;What made the INFORMATION_SCHEMA views so powerful? Are they re-written by Microsoft to help the application programmers? Do they having any relation to system stored procedures or functions? Can we create our own views together with INFORMATION_SCHEMA views and some system stored procedures?&lt;br /&gt;Several questions could be extracted from our present knowledge on INFORMATION_SCHEMA. But, primarily there is a fundamental answer for any of the questions above.&lt;br /&gt;INFORMATION_SCHEMA VIEWS ARE JUST THE VIEWS BASED ON EXISTING SYSTEM STORED PROCEDURES OR FUNCTIONS.&lt;br /&gt;I hope the above answers almost all of the questions. Microsoft made our life easier by creating the INFORMATION_SCHEMA views on top of system stored procedures. Now, how do you know the internal query of a certain view present in INFORMATION_SCHEMA? This is a very simple and situational question according to the current topic. Of course, the answer is also simple, too. Let us consider the following.&lt;br /&gt;I would like to know how Microsoft SQL Server team implemented INFORMATION_SCHEMA.TABLES view. Just type the following in your query analyzer (generally using ‘master’ database), and you should be able to see the result.&lt;br /&gt;execute sp_helptext "information_schema.tables"&lt;br /&gt;The result returned by that would be as following:&lt;br /&gt;create view INFORMATION_SCHEMA.TABLES&lt;br /&gt;as&lt;br /&gt;select distinct&lt;br /&gt;     db_name()              as TABLE_CATALOG&lt;br /&gt;     ,user_name(o.uid)as TABLE_SCHEMA&lt;br /&gt;     ,o.name                      as TABLE_NAME&lt;br /&gt;     ,case o.xtype&lt;br /&gt;           when 'U' then 'BASE TABLE'&lt;br /&gt;           when 'V' then 'VIEW'&lt;br /&gt;     end                          as TABLE_TYPE&lt;br /&gt;from&lt;br /&gt;     sysobjects o&lt;br /&gt;where&lt;br /&gt;     o.xtype in ('U', 'V') and&lt;br /&gt;     permissions(o.id) != 0&lt;br /&gt;I hope you understand the secret behind the INFORMATION_SCHEMA views now. They are nothing but the queries written by the SQL Server team to make our life easier, instead forcing us to remember a complicated query using the system stored procedures and functions.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;------------------------------------------------------------------------------------------------&lt;br /&gt;A Primer on INFORMATION_SCHEMA Views in &lt;a class="iAs" style="PADDING-BOTTOM: 1px; COLOR: blue; BORDER-BOTTOM: blue 0.07em solid; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" href="http://www.aspfree.com/#" target="_blank"&gt;SQL Server&lt;/a&gt; 2000 - Summary (Page 5 of 5 )&lt;br /&gt;From all the above sections of this article, we could conclude something like the following:&lt;br /&gt;INFORMATION_SCHEMA views are easy to understand and remember. Use INFORMATION_SCHEMA views wherever possible and applicable.&lt;br /&gt;Use system &lt;a class="iAs" style="PADDING-BOTTOM: 1px; COLOR: blue; BORDER-BOTTOM: blue 0.07em solid; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" href="http://www.aspfree.com/#" target="_blank"&gt;stored procedures&lt;/a&gt; if and only if you cannot get an alternative from INFORMATION_SCHEMA views.&lt;br /&gt;Using system stored procedures heavily in your application may cause versioning problems, when SQL &lt;a class="iAs" style="PADDING-BOTTOM: 1px; COLOR: blue; BORDER-BOTTOM: blue 0.07em solid; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" href="http://www.aspfree.com/#" target="_blank"&gt;Server&lt;/a&gt; gets upgraded to a newer version.&lt;br /&gt;You are always safe (at least better than using system stored procedures) using INFORMATION_SCHEMA views, even after an upgrade to a newer version.&lt;br /&gt;Try to create your own &lt;a class="iAs" style="PADDING-BOTTOM: 1px; COLOR: blue; BORDER-BOTTOM: blue 0.07em solid; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" href="http://www.aspfree.com/#" target="_blank"&gt;schema&lt;/a&gt; of views, for your own queries, which are very frequently being used on existing INFORMATION_SCHEMA views.&lt;br /&gt;I also advise you to know and learn about the internal system table and system stored procedure hierarchy, to give you a solid understanding of database activities. Even though it is not so easy to remember all of those issues, at least the concept would help us to derive our own powerful, administrational and consolidated queries, which might be used very frequently. Generally, almost any SQL Server DBA would certainly know about almost all of the internal structures and hierarchies needed to make and keep the database stable in performance.&lt;br /&gt;I would certainly be happy to receive your comments (or feedback) on this article at &lt;a href="mailto:jag_chat@yahoo.com"&gt;jag_chat@yahoo.com&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;End of the Post.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-114984061736728683?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/114984061736728683/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=114984061736728683' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114984061736728683'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114984061736728683'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/06/informationschema-part3.html' title='Information_schema Part3'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-114984036152699596</id><published>2006-06-09T01:03:00.000-07:00</published><updated>2006-06-09T01:06:01.530-07:00</updated><title type='text'>Information_schema Part2</title><content type='html'>A Primer on INFORMATION_SCHEMA Views in &lt;a class="iAs" style="PADDING-BOTTOM: 1px; COLOR: blue; BORDER-BOTTOM: blue 0.07em solid; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" href="http://www.aspfree.com/#" target="_blank"&gt;SQL Server&lt;/a&gt; 2000 - High-level overview of all INFORMATION_SCHEMA views (Page 2 of 5 )&lt;br /&gt;Now, the issue is how to get all the information &lt;a class="iAs" style="PADDING-BOTTOM: 1px; COLOR: blue; BORDER-BOTTOM: blue 0.07em solid; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" href="http://www.aspfree.com/#" target="_blank"&gt;schema&lt;/a&gt; views in the form of a list. The following command helps to rescue us (but make sure to execute the command from the "master" &lt;a class="iAs" style="PADDING-BOTTOM: 1px; COLOR: blue; BORDER-BOTTOM: blue 0.07em solid; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" href="http://www.aspfree.com/#" target="_blank"&gt;database&lt;/a&gt;).&lt;br /&gt;SELECT TABLE_NAME&lt;br /&gt;FROM INFORMATION_SCHEMA.Views&lt;br /&gt;WHERE TABLE_SCHEMA = 'INFORMATION_SCHEMA'&lt;br /&gt;ORDER BY TABLE_NAME&lt;br /&gt;&lt;br /&gt;The above command lists out all the views you can use with information_schema. Following is a table which shows a brief description of all of the views available from the above command (which has been highly summarized from Books Online for the sake of convenience).&lt;br /&gt;&lt;br /&gt;CHECK_CONSTRAINTS&lt;br /&gt;Contains one row for each CHECK constraint in the current database&lt;br /&gt;COLUMN_DOMAIN_USAGE&lt;br /&gt;Contains one row for each column, in the current database, that has a user-defined &lt;a class="iAs" style="PADDING-BOTTOM: 1px; COLOR: blue; BORDER-BOTTOM: blue 0.07em solid; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" href="http://www.aspfree.com/#" target="_blank"&gt;data&lt;/a&gt; type.&lt;br /&gt;COLUMN_PRIVILEGES&lt;br /&gt;Contains one row for each column with a privilege either granted to or by the current user in the current database&lt;br /&gt;COLUMNS&lt;br /&gt;Contains one row for each column accessible to the current user in the current database.&lt;br /&gt;CONSTRAINT_COLUMN_USAGE&lt;br /&gt;Contains one row for each column, in the current database, that has a constraint defined on it.&lt;br /&gt;CONSTRAINT_TABLE_USAGE&lt;br /&gt;Contains one row for each table, in the current database, that has a constraint defined on it.&lt;br /&gt;DOMAIN_CONSTRAINTS&lt;br /&gt;Contains one row for each user-defined data type, accessible to the current user in the current database, with a rule bound to it&lt;br /&gt;DOMAINS&lt;br /&gt;Contains one row for each user-defined data type accessible to the current user in the current database&lt;br /&gt;KEY_COLUMN_USAGE&lt;br /&gt;Contains one row for each column, in the current database, that is constrained as a key&lt;br /&gt;PARAMETERS&lt;br /&gt;Contains one row for each parameter of a user-defined function or stored procedure accessible to the current user in the current database.&lt;br /&gt;REFERENTIAL_CONSTRAINTS&lt;br /&gt;Contains one row for each foreign constraint in the current database. This information schema view returns information about the objects to which the current user has permissions.&lt;br /&gt;ROUTINE_COLUMNS&lt;br /&gt;Contains one row for each column returned by the table-valued functions accessible to the current user in the current database&lt;br /&gt;ROUTINES&lt;br /&gt;Contains one row for each stored procedure and function accessible to the current user in the current database.&lt;br /&gt;SCHEMATA&lt;br /&gt;Contains one row for each database that has permissions for the current user&lt;br /&gt;TABLE_CONSTRAINTS&lt;br /&gt;Contains one row for each table constraint in the current database.&lt;br /&gt;TABLE_PRIVILEGES&lt;br /&gt;Contains one row for each table privilege granted to or by the current user in the current database&lt;br /&gt;TABLES&lt;br /&gt;Contains one row for each table in the current database for which the current user has permissions&lt;br /&gt;VIEW_COLUMN_USAGE&lt;br /&gt;Contains one row for each column, in the current database, used in a view definition&lt;br /&gt;VIEW_TABLE_USAGE&lt;br /&gt;Contains one row for each table, in the current database, used in a view&lt;br /&gt;VIEWS&lt;br /&gt;Contains one row for views accessible to the current user in the current database&lt;br /&gt;&lt;br /&gt;To use any of the above views, just add the respective view to the "information_schema" word separated with a dot as follows.&lt;br /&gt;select * from information_schema.tables&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-114984036152699596?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/114984036152699596/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=114984036152699596' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114984036152699596'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114984036152699596'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/06/informationschema-part2.html' title='Information_schema Part2'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-114984002656745056</id><published>2006-06-09T00:59:00.000-07:00</published><updated>2006-06-09T01:02:18.500-07:00</updated><title type='text'>Information_schema Part1</title><content type='html'>source : &lt;a href="http://www.aspfree.com/c/a/MS-SQL-Server/A-Primer-on-INFORMATIONSCHEMA-Views-in-SQL-Server-2000/"&gt;http://www.aspfree.com/c/a/MS-SQL-Server/A-Primer-on-INFORMATIONSCHEMA-Views-in-SQL-Server-2000/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A Primer on INFORMATION_SCHEMA Views in &lt;a class="iAs" style="PADDING-BOTTOM: 1px; COLOR: blue; BORDER-BOTTOM: blue 0.07em solid; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" href="http://www.aspfree.com/#" target="_blank"&gt;SQL Server&lt;/a&gt; 2000 (Page 1 of 5 )&lt;br /&gt;This article mainly concentrates on using INFORMATION_SCHEMA views effectively in &lt;a class="iAs" style="PADDING-BOTTOM: 1px; COLOR: blue; BORDER-BOTTOM: blue 0.07em solid; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" href="http://www.aspfree.com/#" target="_blank"&gt;Microsoft SQL Server&lt;/a&gt; 2000, to retrieve the meta-information of a database.&lt;br /&gt;Introduction&lt;br /&gt;The word meta-data has several meanings and definitions. Meta-data describes the structure and meaning of data. In short, it explains the structure (or definitions) of existing data. It can also be defined as “data about data.”&lt;br /&gt;From the Microsoft &lt;a class="iAs" style="PADDING-BOTTOM: 1px; COLOR: blue; BORDER-BOTTOM: blue 0.07em solid; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" href="http://www.aspfree.com/#" target="_blank"&gt;SQL Server 2000&lt;/a&gt; point of view, meta-data is something about exploring the structures (or definitions) of entire database &lt;a class="iAs" style="PADDING-BOTTOM: 1px; COLOR: blue; BORDER-BOTTOM: blue 0.07em solid; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" href="http://www.aspfree.com/#" target="_blank"&gt;schema&lt;/a&gt;, including each and every object (tables, views, and so forth) present within that schema. Meta-data would include, for example, a list of tables, a list of the parameters of a particular stored procedure, a list of all user-defined functions, and so on.&lt;br /&gt;Microsoft® SQL Server™ 2000 provides two methods for obtaining meta-data: system stored procedures and information schema views. System stored procedures will be generally (or heavily) used by DBAs to get any information about an SQL Server database. But, it would be quite hard to remember all of the internal stored procedures and their hierarchies. Another issue is that the system stored procedures tend to change from every version of SQL Server. Lots of differences (or enhancements) in system stored procedures exist from SQL Server 6.5 to 7.0 and even to 2000 (and of course to 2005) as well.&lt;br /&gt;The better, the best and the simple way to get this type of information (meta-information about database) is to use INFORMATION_SCHEMA views. These views provide an internal, system table-independent view of the SQL Server meta-data. Information schema views allow applications to work properly, even though significant changes have been made to the system tables. These are most recommended for application programmers when they would like to play with database system information. The information schema views included in SQL Server conform to the SQL-92 Standard definition for the INFORMATION_SCHEMA.&lt;br /&gt;These views are defined in a special schema named INFORMATION_SCHEMA, which is contained in each database. Each INFORMATION_SCHEMA view contains meta-data for all of the data objects stored in that particular database.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-114984002656745056?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/114984002656745056/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=114984002656745056' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114984002656745056'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114984002656745056'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/06/informationschema-part1.html' title='Information_schema Part1'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-114983782696376663</id><published>2006-06-09T00:20:00.000-07:00</published><updated>2006-06-09T00:26:18.840-07:00</updated><title type='text'>Select 2nd largest item from a table</title><content type='html'>SELECT MIN(Salary) FROM Employee&lt;br /&gt;WHERE Salary IN ( SELECT TOP 2 Salary FROM Employee)&lt;br /&gt;&lt;br /&gt;This query retreives 2 nd top salary from the Employee table.&lt;br /&gt;&lt;br /&gt;If u want 4 largest salary , then replace '2' in sub query with '4'&lt;br /&gt;&lt;br /&gt;like :&lt;br /&gt;&lt;br /&gt;SELECT MIN(Salary) FROM Employee&lt;br /&gt;WHERE Salary IN ( SELECT TOP 4 Salary FROM Employee)&lt;br /&gt;&lt;br /&gt;-------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;Information_schema&lt;br /&gt;&lt;br /&gt;This is an important keyword to retrieve information about the Stored procedures ,&lt;br /&gt;Tables (name,columns , sixe,constraints ...etc) .&lt;br /&gt;&lt;br /&gt;select * from Information_schema.Columns&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-114983782696376663?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/114983782696376663/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=114983782696376663' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114983782696376663'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114983782696376663'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/06/select-2nd-largest-item-from-table.html' title='Select 2nd largest item from a table'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-114947615456192381</id><published>2006-06-04T19:55:00.000-07:00</published><updated>2006-06-04T19:55:54.616-07:00</updated><title type='text'>IT Ebook Home-Free IT ebooks Share &amp; Exchange</title><content type='html'>&lt;a href="http://www.itebookhome.com/default.asp"&gt;IT Ebook Home-Free IT ebooks Share &amp; Exchange&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;A very large collection of free e-books in the site.worth seeing !&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-114947615456192381?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/114947615456192381/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=114947615456192381' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114947615456192381'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114947615456192381'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/06/it-ebook-home-free-it-ebooks-share.html' title='IT Ebook Home-Free IT ebooks Share &amp; Exchange'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-114853627210279331</id><published>2006-05-24T22:42:00.000-07:00</published><updated>2006-05-24T22:51:12.113-07:00</updated><title type='text'>Testing Process</title><content type='html'>&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;Testing Process&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt; In a software development process, there are five different phases. They are&lt;br /&gt;-Requirement analysis-Design-Development (or) Coding -Testing-Maintenance.Here the testing comes in fourth phase. But the actual testing process begins during the first phase itself i.e. testing process begins during the Requirement analysis phase itself.&lt;br /&gt;&lt;br /&gt; &lt;strong&gt;The steps in the testing process are as follows.&lt;br /&gt;1. Requirement analysis&lt;/strong&gt;&lt;br /&gt;Testing should begin in the requirements phase of the software life cycle (SDLC). The actual requirement should be understand clearly with the help of Requirement Specification documents, Functional Specification documents, Design Specification documents, Use case Documents etc.&lt;br /&gt;&lt;br /&gt;During the requirement analysis the following should be considered.&lt;br /&gt;-Are the definitions and descriptions of the required capabilities precise?&lt;br /&gt;-Is there clear delineation between the system and its environment?&lt;br /&gt;-Can the requirements be realized in practice?&lt;br /&gt;-Can the requirements be tested effectively?&lt;br /&gt;&lt;br /&gt;2.&lt;strong&gt; Test Planning &lt;/strong&gt;&lt;br /&gt;During this phase Test Strategy, Test Plan, Test Bed will be created.A test plan is a systematic approach in testing a system or software.&lt;br /&gt;&lt;br /&gt;The plan should identify:-&lt;br /&gt;-Which aspects of the system should be tested?&lt;br /&gt;-Criteria for success.&lt;br /&gt;-The methods and techniques to be used.&lt;br /&gt;-Personnel responsible for the testing.&lt;br /&gt;-Different Test phase and Test Methodologies&lt;br /&gt;-Manual and Automation Testing&lt;br /&gt;-Defect Mgmt, Configuration Mgmt, Risk Mgmt. Etc&lt;br /&gt;-Evaluation &amp;amp; identification&lt;br /&gt;–Test, Defect tracking tools&lt;br /&gt;3. &lt;strong&gt;Test Environment Setup&lt;/strong&gt;&lt;br /&gt;During this phase the required environment will be setup will be done.&lt;br /&gt;The following should also be taken in account.&lt;br /&gt;- Network connectivity’s&lt;br /&gt;-All the Software/ tools Installation and configuration&lt;br /&gt;-Coordination with Vendors and others&lt;br /&gt;&lt;br /&gt;4. &lt;strong&gt;Test Design&lt;/strong&gt;&lt;br /&gt;During this phase&lt;br /&gt;-Test Scenarios will be identified.&lt;br /&gt;-Test Cases will be prepared.&lt;br /&gt;-Test data and Test scripts prepared.&lt;br /&gt;-Test case reviews will be conducted.&lt;br /&gt;&lt;br /&gt;5. &lt;strong&gt;Test Automation&lt;/strong&gt;&lt;br /&gt;In this phase the requirement for the automation will be identified.&lt;br /&gt;The tools that are to be used will be identified.&lt;br /&gt;Designing framework, scripting, script integration, Review and approval will be undertaken in this phase.&lt;br /&gt;&lt;br /&gt;6.&lt;strong&gt; Test Execution and Defect Tracking&lt;/strong&gt;&lt;br /&gt;Testers execute the software based on the plans and tests and report any errors found to the development team.&lt;br /&gt;In this phase&lt;br /&gt;-Test cases will be executed.&lt;br /&gt;-Test Scripts will be tested.&lt;br /&gt;-Test Results will be analyzed.&lt;br /&gt;-Raised the defects and tracking for its closure.&lt;br /&gt;&lt;br /&gt;7. &lt;strong&gt;Test Reports&lt;/strong&gt;&lt;br /&gt;Once testing is completed, testers generate metrics and make final reports on their test effort and whether or not the software tested is ready for release.&lt;br /&gt;-Test summary reports will be prepared&lt;br /&gt;-Test Metrics and process Improvements made&lt;br /&gt;-Build release-Receiving acceptance&lt;br /&gt;&lt;span style="font-size:78%;color:#33ccff;"&gt;Source : &lt;/span&gt;&lt;a href="http://www.testingprojects.com/"&gt;&lt;span style="font-size:78%;color:#33ccff;"&gt;http://www.testingprojects.com&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-114853627210279331?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/114853627210279331/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=114853627210279331' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114853627210279331'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114853627210279331'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/05/testing-process.html' title='Testing Process'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-114683578713242428</id><published>2006-05-05T06:25:00.000-07:00</published><updated>2006-05-05T06:29:47.146-07:00</updated><title type='text'>Co-Related Queries</title><content type='html'>&lt;span style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color:#3366ff;"&gt;What is a Correlated Subquery?&lt;/span&gt;&lt;br /&gt;A correlated subquery is a SELECT statement nested inside another T-SQL statement, which contains a reference to one or more columns in the outer query. Therefore, the correlated subquery can be said to be dependent on the outer query. This is the main difference between a correlated subquery and just a plain subquery. A plain subquery is not dependent on the outer query, can be run independently of the outer query, and will return a result set. A correlated subquery, since it is dependent on the outer query will return a syntax errors if it is run by itself.&lt;br /&gt;A correlated subquery will be executed many times while processing the T-SQL statement that contains the correlated subquery. The correlated subquery will be run once for each candidate row selected by the outer query. The outer query columns, referenced in the correlated subquery, are replaced with values from the candidate row prior to each execution. Depending on the results of the execution of the correlated subquery, it will determine if the row of the outer query is returned in the final result set.&lt;br /&gt;Using a Correlated Subquery in a WHERE Clause&lt;br /&gt;Suppose you want a report of all "OrderID's" where the customer did not purchase more than 10% of the average quantity sold for a given product. This way you could review these orders, and possibly contact the customers, to help determine if there was a reason for the low quantity order. A correlated subquery in a WHERE clause can help you produce this report. Here is a &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;strong&gt;&lt;span style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;SELECT statement that produces the desired list of "OrderID's":select distinct OrderId&lt;br /&gt;from Northwind.dbo.[Order Details] OD&lt;br /&gt;where&lt;br /&gt;Quantity &lt;l; productid="ProductID)"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family:arial;font-size:85%;"&gt;The correlated subquery in the above command is contained within the parenthesis following the greater than sign in the WHERE clause above. Here you can see this correlated subquery contains a reference to "OD.ProductID". This reference compares the outer query's "ProductID" with the inner query's "ProductID". When this query is executed, the SQL engine will execute the inner query, the correlated subquery, for each "[Order Details]" record. This inner query will calculate the average "Quantity" for the particular "ProductID" for the candidate row being processed in the outer query. This correlated subquery determines if the inner query returns a value that meets the condition of the WHERE clause. If it does, the row identified by the outer query is placed in the record set that will be returned from the complete T-SQL SELECT statement.&lt;br /&gt;The code below is another example that uses a correlated subquery in the WHERE clause to display the top two customers, based on the dollar amount associated with their orders, per region. You might want to perform a query like this so you can reward these customers, since they buy the most per region. &lt;/span&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family:arial;font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color:#ff0000;"&gt;select CompanyName, ContactName, Address,&lt;br /&gt;City, Country, PostalCode from Northwind.dbo.Customers OuterC&lt;br /&gt;where CustomerID in (&lt;br /&gt;select top 2 InnerC.CustomerId&lt;br /&gt;from Northwind.dbo.[Order Details] OD join Northwind.dbo.Orders O&lt;br /&gt;on OD.OrderId = O.OrderID&lt;br /&gt;join Northwind.dbo.Customers InnerC&lt;br /&gt;on O.CustomerID = InnerC.CustomerId&lt;br /&gt;Where Region = OuterC.Region&lt;br /&gt;group by Region, InnerC.CustomerId&lt;br /&gt;order by sum(UnitPrice * Quantity * (1-Discount)) desc&lt;br /&gt;)&lt;br /&gt;order by Region&lt;br /&gt;&lt;/span&gt;Here you can see the inner query is a correlated subquery because it references "OuterC", which is the table alias for the "Northwind.DBO.Customer" table in the outer query. This inner query uses the "Region" value to calculate the top two customers for the region associated with the row being processed from the outer query. If the "CustomerID" of the outer query is one of the top two customers, then the record is placed in the record set to be returned.&lt;br /&gt;Correlated Subquery in the HAVING Clause&lt;br /&gt;Say your organizations wants to run a yearlong incentive program to increase revenue. Therefore, they advertise to your customers that if each order they place, during the year, is over $750 you will provide them a rebate at the end of the year at the rate of $75 per order they place. Below is an example of how to calculate the rebate amount. This example uses a correlated subquery in the HAVING clause to identify the customers that qualify to receive the rebate. Here is my code for this query: &lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color:#ff0000;"&gt;select C.CustomerID, Count(*)*75 Rebate&lt;br /&gt;from Northwind.DBO.Customers C&lt;br /&gt;join&lt;br /&gt;Northwind.DBO.Orders O&lt;br /&gt;on c.CustomerID = O.CustomerID&lt;br /&gt;where Datepart(yy,OrderDate) = '1998'&lt;br /&gt;group by C.CustomerId&lt;br /&gt;having 750 &lt; orderid =" OD.OrderID" customerid =" C.CustomerId"&gt;By reviewing this query, you can see I am using a correlated query in the HAVING clause to calculate the total order amount for each customer order. I use the "CustomerID" from the outer query and the year of the order "Datepart(yy,OrderDate)", to help identify the Order records associated with each customer, that were placed the year '1998'. For these associated records I am calculating the total order amount, for each order, by summing up all the "[Order Details]" records, using the following formula: sum(UnitPrice * Quantity * (1-Discount)). If each and every order for a customer, for year 1998 has a total dollar amount greater than 750, I then calculate the Rebate amount in the outer query using this formula "Count(*)*75 ".&lt;br /&gt;SQL Server's query engine will only execute the inner correlated subquery in the HAVING clause for those customer records identified in the outer query, or basically only those customer that placed orders in "1998".&lt;br /&gt;Performing an Update Statement Using a Correlated Subquery&lt;br /&gt;A correlated subquery can even be used in an update statement. Here is an example:create table A(A int, S int)&lt;br /&gt;create table B(A int, B int)&lt;br /&gt;set nocount on&lt;br /&gt;insert into A(A) values(1)&lt;br /&gt;insert into A(A) values(2)&lt;br /&gt;insert into A(A) values(3)&lt;br /&gt;insert into B values(1,1)&lt;br /&gt;insert into B values(2,1)&lt;br /&gt;insert into B values(2,1)&lt;br /&gt;insert into B values(3,1)&lt;br /&gt;insert into B values(3,1)&lt;br /&gt;insert into B values(3,1)&lt;br /&gt;update A&lt;br /&gt;set S = (select sum(B)&lt;br /&gt;from B&lt;br /&gt;where A.A = A group by A)&lt;br /&gt;&lt;br /&gt;select * from A&lt;br /&gt;drop table A,B&lt;br /&gt;Here is the result set I get when I run this query on my machine:A S&lt;br /&gt;----------- -----------&lt;br /&gt;1 1&lt;br /&gt;2 2&lt;br /&gt;3 3&lt;br /&gt;In my query above, I used the correlated subquery to update column A in table A with the sum of column B in table B for rows that have the same value in column A as the row being updated.&lt;br /&gt;Conclusion&lt;br /&gt;Let me summarize. A subquery and a correlated subquery are SELECT queries coded inside another query, known as the outer query. The correlated subquery and the subquery help determine the outcome of the result set returned by the complete query. A subquery, when executed independent of the outer query, will return a result set, and is therefore not dependent on the outer query. Where as, a correlated subquery cannot be executed independently of the outer query because it uses one or more references to columns in the outer query to determine the result set returned from the correlated subquery. I hope that you now understand the different of subqueries and correlated subqueries, and how they can be used in your T-SQL code.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-114683578713242428?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/114683578713242428/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=114683578713242428' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114683578713242428'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114683578713242428'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/05/co-related-queries.html' title='Co-Related Queries'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-114227096337146127</id><published>2006-03-13T09:26:00.001-08:00</published><updated>2006-03-13T09:29:42.986-08:00</updated><title type='text'>Trap window close event for IE browser</title><content type='html'>&lt;a href="http://www.dotnetjunkies.com/WebLog/familjones/archive/2004/04/06/10884.aspx"&gt;http://www.dotnetjunkies.com/WebLog/familjones/archive/2004/04/06/10884.aspx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Let's say you want to trap the window close event for the web browser so that you can give a confirmation dialog asking if the user is sure to leave the page. The problem is that there is no onclose event for the window object. The closest event might be onunload since it fires immediately before the &lt;strong&gt;window&lt;/strong&gt; object is unloaded. However, when the onunload event fires it is too late to display a JavaScript alert. Therefore, we need an event that fires prior to a page being unloaded, which is onbeforeunload. Define onbeforeunload event in your page element as follows:&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;Then, add the following JavaScript code into the section of your ASPX page: &lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;script language="javascript"&gt;&lt;!-- function HandleOnClose() {   if (event.clientY &lt; returnvalue =" 'Are"&gt;&lt;/script&gt;&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-114227096337146127?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/114227096337146127/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=114227096337146127' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114227096337146127'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114227096337146127'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/03/trap-window-close-event-for-ie-browser_13.html' title='Trap window close event for IE browser'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-114227086039244548</id><published>2006-03-13T09:26:00.000-08:00</published><updated>2006-03-13T09:27:40.406-08:00</updated><title type='text'>Trap window close event for IE browser</title><content type='html'>&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;Let's say you want to trap the window close event for the web browser so that you can give a confirmation dialog asking if the user is sure to leave the page. The problem is that there is no onclose event for the window object. The closest event might be onunload since it fires immediately before the &lt;strong&gt;window&lt;/strong&gt; object is unloaded. However, when the onunload event fires it is too late to display a JavaScript alert. Therefore, we need an event that fires prior to a page being unloaded, which is onbeforeunload. Define onbeforeunload event in your page &lt;body&gt; element as follows:&lt;br /&gt;&lt;strong&gt;&lt;body onbeforeunload="HandleOnClose()"&gt;&lt;br /&gt;Then, add the following JavaScript code into the &lt;head&gt; section of your ASPX page:&lt;br /&gt;&lt;script language="javascript"&gt;&lt;!--&lt;br /&gt;function HandleOnClose() {   if (event.clientY &lt; 0) {      event.returnValue = 'Are you sure you want to leave the page?';   }}&lt;br /&gt;//--&gt;&lt;/script&gt;&lt;/strong&gt;&lt;br /&gt;The trick here is to check clientY property of the event object, which is used to set or retrieve the y-coordinate of the mouse pointer's position relative to the client area of the window, excluding window decorations and scroll bars. This way, you can detect if the user clicked on X button to close the page, or clicked on Refresh button to refresh the page, etc. This approach does not handle key events such as Alt-F4 that lets the user close the window by using the keyboard. You have to handle keyboard events separately and this issue might be a topic for another article...&lt;br /&gt;Famil Jones,&lt;a href="http://www.karamasoft.com/"&gt;Karamasoft&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-114227086039244548?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/114227086039244548/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=114227086039244548' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114227086039244548'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114227086039244548'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/03/trap-window-close-event-for-ie-browser.html' title='Trap window close event for IE browser'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-114181575268799454</id><published>2006-03-08T03:02:00.000-08:00</published><updated>2006-03-08T03:02:32.726-08:00</updated><title type='text'>Developing Entity Relationship Diagrams</title><content type='html'>&lt;a href="http://infocom.cqu.edu.au/Courses/spr2000/95169/Extra_Examples/ERD.htm"&gt;Developing Entity Relationship Diagrams&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;A brief guide for creating ER Diagrams.(Theoritical + example)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-114181575268799454?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/114181575268799454/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=114181575268799454' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114181575268799454'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114181575268799454'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/03/developing-entity-relationship.html' title='Developing Entity Relationship Diagrams'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-114009822502630042</id><published>2006-02-16T05:57:00.000-08:00</published><updated>2006-02-16T05:57:05.073-08:00</updated><title type='text'>Optimizing database performance, part 1: Partitioning and indexing</title><content type='html'>&lt;a href="http://searchsqlserver.techtarget.com/tip/1,289483,sid87_gci1058017,00.html"&gt;Optimizing database performance, part 1: Partitioning and indexing&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-114009822502630042?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/114009822502630042/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=114009822502630042' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114009822502630042'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114009822502630042'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/02/optimizing-database-performance-part-1.html' title='Optimizing database performance, part 1: Partitioning and indexing'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-114008691291897080</id><published>2006-02-16T02:48:00.000-08:00</published><updated>2006-02-16T02:48:32.970-08:00</updated><title type='text'>irt.org - JavaScript Form FAQ Knowledge Base</title><content type='html'>&lt;a href="http://www.irt.org/script/form.htm"&gt;irt.org - JavaScript Form FAQ Knowledge Base&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-114008691291897080?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/114008691291897080/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=114008691291897080' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114008691291897080'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114008691291897080'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/02/irtorg-javascript-form-faq-knowledge.html' title='irt.org - JavaScript Form FAQ Knowledge Base'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-114000555806237951</id><published>2006-02-15T04:12:00.000-08:00</published><updated>2006-02-15T04:12:38.086-08:00</updated><title type='text'>Entity Relationship Diagrams - Free Online Tutorial</title><content type='html'>&lt;a href="http://www.getahead-direct.com/gwentrel.htm"&gt;Entity Relationship Diagrams - Free Online Tutorial&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-114000555806237951?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/114000555806237951/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=114000555806237951' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114000555806237951'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/114000555806237951'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/02/entity-relationship-diagrams-free.html' title='Entity Relationship Diagrams - Free Online Tutorial'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-113981909009966184</id><published>2006-02-13T00:24:00.000-08:00</published><updated>2006-02-13T00:24:50.110-08:00</updated><title type='text'>Query Joins - Inner Joins &amp; Outer Joins | Database Solutions for Microsoft Access | databasedev.co.uk</title><content type='html'>&lt;a href="http://www.databasedev.co.uk/query_joins.html"&gt;Query Joins - Inner Joins &amp;amp; Outer Joins  Database Solutions for Microsoft Access  databasedev.co.uk&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-113981909009966184?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/113981909009966184/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=113981909009966184' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113981909009966184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113981909009966184'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/02/query-joins-inner-joins-outer-joins.html' title='Query Joins - Inner Joins &amp; Outer Joins | Database Solutions for Microsoft Access | databasedev.co.uk'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-113981750929960038</id><published>2006-02-12T23:58:00.000-08:00</published><updated>2006-02-12T23:58:29.316-08:00</updated><title type='text'>Getting the Right Data with SQL Joins</title><content type='html'>&lt;a href="http://www.devx.com/dbzone/Article/17403/0/page/4"&gt;Getting the Right Data with SQL Joins&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-113981750929960038?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/113981750929960038/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=113981750929960038' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113981750929960038'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113981750929960038'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/02/getting-right-data-with-sql-joins.html' title='Getting the Right Data with SQL Joins'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-113957648703768026</id><published>2006-02-10T05:01:00.000-08:00</published><updated>2006-02-10T05:01:27.036-08:00</updated><title type='text'>Pe2usb: Installing Bartpe To Usb Flash Disk - The CD Forum</title><content type='html'>&lt;a href="http://www.911cd.net/forums/index.php?showtopic=10806Pe2usb"&gt;Pe2usb: Installing Bartpe To Usb Flash Disk - The CD Forum&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;...Installation of PE2USB:You should copy the files pe2usb.cmd and pe2usb.bin to your &lt;pebuilder&gt; directory.For successful installing BartPE to a USB flash disk you need:1) A USB flash disk with a capacity of 256MB or more2) Server 2003 SP1 (or a release candidate). You can download this from  http://www.microsoft.com/downloads/details.aspx?familyid=02734CEA-7A4B-4D95-B220-8E1708C3ED46  This file is large, about 350MB!!! Unpack the files from the service pack (this is not installing) with:  sr1sp.exe -x, lets assume you extract it to c:\server2003sp1 Create the folder &lt;pebuilder&gt;\srsp1 Copy the file c:\server2003sp1\i386\setupldr.bin to the &lt;pebuilder&gt;\srsp1 folder Expand the file c:\server2003sp1\i386\ramdisk.sy_ to the &lt;pebuilder&gt;\srsp1 folder expand -r c:\server2003sp1\i386\ramdisk.sy_ &lt;pebuilder&gt;\srsp1 You can now remove the c:\server2003sp1 folder, not needed anymore...3) Build BartPE using pebuilder as normal, you must set the output folder to   "BartPE", you do not need to generate an ISO image for now.4) Run "pe2usb -f &lt;drive:&gt;" to format and install the files to your UFD.  Formatting is only needed the first time, so next time you can run   "pe2usb &lt;drive:&gt;" (without -f) to update the BartPE files.For successful booting BartPE from a USB flash disk you need:1) A PC that is capable of booting from a USB flash disk with 256MB memory   or more....Download: &lt;a href="http://www.nu2.nu/pebuilder/files/pe2usb101.zip" target="_blank"&gt;http://www.nu2.nu/pebuilder/files/pe2usb101.zip&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-113957648703768026?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/113957648703768026/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=113957648703768026' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113957648703768026'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113957648703768026'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/02/pe2usb-installing-bartpe-to-usb-flash.html' title='Pe2usb: Installing Bartpe To Usb Flash Disk - The CD Forum'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-113957587483958429</id><published>2006-02-10T04:51:00.000-08:00</published><updated>2006-02-10T04:51:14.890-08:00</updated><title type='text'>InformationWeek | USB Drives | Langa Letter: XP On Your Thumb Drive | January 23, 2006</title><content type='html'>&lt;strong&gt;&lt;span style="color:#ff0000;"&gt;XP On Your Thumb Drive&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.informationweek.com/windows/showArticle.jhtml?articleID=177102101"&gt;InformationWeek  USB Drives  Langa Letter: XP On Your Thumb Drive  January 23, 2006&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-113957587483958429?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/113957587483958429/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=113957587483958429' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113957587483958429'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113957587483958429'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/02/informationweek-usb-drives-langa.html' title='InformationWeek | USB Drives | Langa Letter: XP On Your Thumb Drive | January 23, 2006'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-113929884730206583</id><published>2006-02-06T23:54:00.000-08:00</published><updated>2006-02-06T23:54:07.336-08:00</updated><title type='text'>JSP Course Overview</title><content type='html'>&lt;a href="http://www.gulland.com/courses/JavaServerPages/index.jsp"&gt;JSP &amp; Servlets Course Overview&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-113929884730206583?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/113929884730206583/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=113929884730206583' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113929884730206583'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113929884730206583'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/02/jsp-course-overview.html' title='JSP Course Overview'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-113911847701870778</id><published>2006-02-04T21:47:00.000-08:00</published><updated>2006-02-04T21:47:57.063-08:00</updated><title type='text'>Java Ranch - Hatfield Seed and Feed: Jsp Faq</title><content type='html'>&lt;a href="http://faq.javaranch.com/view?JspFaq"&gt;Java Ranch - Hatfield Seed and Feed: Jsp Faq&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-113911847701870778?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/113911847701870778/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=113911847701870778' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113911847701870778'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113911847701870778'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2006/02/java-ranch-hatfield-seed-and-feed-jsp.html' title='Java Ranch - Hatfield Seed and Feed: Jsp Faq'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-113535364271922277</id><published>2005-12-23T08:00:00.000-08:00</published><updated>2005-12-23T08:00:42.750-08:00</updated><title type='text'>Word of The Day: Partition (computing)</title><content type='html'>&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-113535364271922277?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/113535364271922277/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=113535364271922277' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113535364271922277'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113535364271922277'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2005/12/word-of-day-partition-computing.html' title='Word of The Day: &lt;strong&gt;Partition (computing)&lt;/strong&gt;'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-113458014692982338</id><published>2005-12-14T09:09:00.000-08:00</published><updated>2005-12-14T09:09:06.936-08:00</updated><title type='text'>Windows Tutorials</title><content type='html'>&lt;a href="http://www.infopackets.com/windowstutorials.htm"&gt;Windows Tutorials&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-113458014692982338?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/113458014692982338/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=113458014692982338' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113458014692982338'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113458014692982338'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2005/12/windows-tutorials.html' title='&lt;strong&gt;Windows Tutorials&lt;/strong&gt;'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-113457881364149103</id><published>2005-12-14T08:46:00.000-08:00</published><updated>2005-12-14T08:46:53.686-08:00</updated><title type='text'>Infopackets Article Archive Page 1</title><content type='html'>Articles about Windows Tips and Tricks ....&lt;br /&gt;very useful site to diagnose and solve windows related queries.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-113457881364149103?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/113457881364149103/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=113457881364149103' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113457881364149103'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/113457881364149103'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2005/12/infopackets-article-archive-page-1.html' title='&lt;strong&gt;Infopackets Article Archive Page 1&lt;/strong&gt;'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-112963354127167233</id><published>2005-10-18T04:05:00.000-07:00</published><updated>2005-10-18T04:05:41.300-07:00</updated><title type='text'>Learn Piano Chords Fast - Free Piano Chord Finder tool at HearandPlay.com</title><content type='html'>Chords for piano&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-112963354127167233?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/112963354127167233/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=112963354127167233' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/112963354127167233'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/112963354127167233'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2005/10/learn-piano-chords-fast-free-piano.html' title='Learn Piano Chords Fast - Free Piano Chord Finder tool at HearandPlay.com'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-112956731719901760</id><published>2005-10-17T09:41:00.000-07:00</published><updated>2005-10-17T09:41:57.230-07:00</updated><title type='text'>Piano Lessons Covering Piano Chords and Piano Progressions at HearandPlay.com</title><content type='html'>&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-112956731719901760?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/112956731719901760/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=112956731719901760' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/112956731719901760'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/112956731719901760'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2005/10/piano-lessons-covering-piano-chords.html' title='Piano Lessons Covering Piano Chords and Piano Progressions at HearandPlay.com'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-112903594329977907</id><published>2005-10-11T06:05:00.000-07:00</published><updated>2005-10-11T06:05:43.330-07:00</updated><title type='text'>MajorGeeks.com   </title><content type='html'>For all PC related softwares.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-112903594329977907?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/112903594329977907/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=112903594329977907' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/112903594329977907'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/112903594329977907'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2005/10/majorgeekscom.html' title='MajorGeeks.com   '/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-112616191859074426</id><published>2005-09-07T23:45:00.001-07:00</published><updated>2005-09-07T23:45:18.596-07:00</updated><title type='text'>HTML to PDF Converter - Convert Web Page to PDF File with HTML to PDF Converter</title><content type='html'>&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-112616191859074426?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/112616191859074426/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=112616191859074426' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/112616191859074426'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/112616191859074426'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2005/09/html-to-pdf-converter-convert-web-page_07.html' title='HTML to PDF Converter - Convert Web Page to PDF File with HTML to PDF Converter'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-112616191544366672</id><published>2005-09-07T23:45:00.000-07:00</published><updated>2005-09-07T23:45:16.616-07:00</updated><title type='text'>HTML to PDF Converter - Convert Web Page to PDF File with HTML to PDF Converter</title><content type='html'>&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-112616191544366672?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/112616191544366672/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=112616191544366672' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/112616191544366672'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/112616191544366672'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2005/09/html-to-pdf-converter-convert-web-page.html' title='HTML to PDF Converter - Convert Web Page to PDF File with HTML to PDF Converter'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-15540611.post-112435640958267187</id><published>2005-08-18T02:11:00.000-07:00</published><updated>2005-08-18T02:13:29.586-07:00</updated><title type='text'>PLACEMENTS</title><content type='html'>&lt;strong&gt;All types of Languages papers.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.sureshkumar.net/" target="_blank"&gt;www.sureshkumar.net&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15540611-112435640958267187?l=itpapers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itpapers.blogspot.com/feeds/112435640958267187/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=15540611&amp;postID=112435640958267187' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/112435640958267187'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15540611/posts/default/112435640958267187'/><link rel='alternate' type='text/html' href='http://itpapers.blogspot.com/2005/08/placements.html' title='PLACEMENTS'/><author><name>Bhaskar</name><uri>http://www.blogger.com/profile/03580010516227046404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
