<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Syed Akbar Ali</title><subtitle type="html" /><id>http://weblogs.asp.net/akbar/atom.aspx</id><link rel="alternate" type="text/html" href="http://weblogs.asp.net/akbar/default.aspx" /><link rel="self" type="application/atom+xml" href="http://weblogs.asp.net/akbar/atom.aspx" /><generator uri="http://communityserver.org" version="3.0.20510.895">Community Server</generator><updated>2008-02-14T12:12:00Z</updated><entry><title>Simple SQL query to get duplicate values in a table</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/akbar/archive/2008/09/11/simple-sql-query-to-get-duplicate-values-in-a-table.aspx" /><id>http://weblogs.asp.net/akbar/archive/2008/09/11/simple-sql-query-to-get-duplicate-values-in-a-table.aspx</id><published>2008-09-11T12:54:00Z</published><updated>2008-09-11T12:54:00Z</updated><content type="html">This is simple T-SQL query to find duplicate values in Microsoft SQL Server Database
&lt;br/&gt;&lt;br/&gt;

select a.field1, a.field2,a.field3, a.field4 &lt;br/&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;      from table a &lt;br/&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;         where 1 &lt; (select count(*) &lt;br/&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;                       from table b &lt;br/&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;                       where b.field1 = a.field1 &lt;br/&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;                       and     b.field2 = a.field2  &lt;br/&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;			and b.field3 = a.field3) &lt;br/&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6618838" width="1" height="1"&gt;</content><author><name>akbaralis</name><uri>http://weblogs.asp.net/members/akbaralis.aspx</uri></author><category term="SQL" scheme="http://weblogs.asp.net/akbar/archive/tags/SQL/default.aspx" /><category term="Query" scheme="http://weblogs.asp.net/akbar/archive/tags/Query/default.aspx" /></entry><entry><title>Obout suite Controls for ASP.NET</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/akbar/archive/2008/04/17/obout-suite-controls-for-asp-net.aspx" /><id>http://weblogs.asp.net/akbar/archive/2008/04/17/obout-suite-controls-for-asp-net.aspx</id><published>2008-04-17T05:10:00Z</published><updated>2008-04-17T05:10:00Z</updated><content type="html">&lt;p&gt;Obout suite contains over 20 powerful
controls. The suite includes hundreds of examples showcasing basic and
advanced features of each control and their top performance. &lt;/p&gt;&lt;div incrementviewcount="true"&gt; &lt;p&gt;&lt;a href="http://www.obout.com/"&gt;Check it out here....&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6105051" width="1" height="1"&gt;</content><author><name>akbaralis</name><uri>http://weblogs.asp.net/members/akbaralis.aspx</uri></author><category term="ASP.NET" scheme="http://weblogs.asp.net/akbar/archive/tags/ASP.NET/default.aspx" /><category term="Obout" scheme="http://weblogs.asp.net/akbar/archive/tags/Obout/default.aspx" /><category term="Controls" scheme="http://weblogs.asp.net/akbar/archive/tags/Controls/default.aspx" /></entry><entry><title>Introduction: ASP.NET 2.0 Folders</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/akbar/archive/2008/03/11/asp-net-2-0-folders.aspx" /><id>http://weblogs.asp.net/akbar/archive/2008/03/11/asp-net-2-0-folders.aspx</id><published>2008-03-11T07:29:00Z</published><updated>2008-03-11T07:29:00Z</updated><content type="html">ASP.NET 2.0 allows us to create some folders via right clicking project. But lots of people are don't know why we need to create that folder.&lt;br&gt;&lt;br&gt;Here are the description for the each folder in asp.net 2.0 that we have to create for diffrent purpose.&lt;br&gt;&lt;br&gt;&lt;b&gt;App_Code&lt;/b&gt;&lt;br&gt;&lt;br&gt;App_code folder contains the code files for the classes, structures, enums etc. It also contains .wsdl files for web services. Typed data set files are also reside in this folder.Any of this item automatically available to whole application.&lt;br&gt;&lt;br&gt;&lt;b&gt;App_Themes&lt;/b&gt;&lt;br&gt;&lt;br&gt;ASP.NET supports themes to enable visual styles on web page. This folder contains the themes skin and .css(Cascading Style Sheet) files.&lt;br&gt;&lt;br&gt;&lt;b&gt;App_Data&lt;/b&gt;&lt;br&gt;&lt;br&gt;App_Data contains the database for a application and other data files like .mdf, xml, text and .csv files used in web application.This folder are used to stored data related entities.&lt;br&gt;&lt;br&gt;&lt;b&gt;App_GlobalResources&lt;/b&gt;&lt;br&gt;&lt;br&gt;ASP.NET allows us to create resource files. There are two types of resources files one is global and another one is local. The global resources files are available to whole application. While local resources files are available to specific page only. This folder store global resource files with .resx extensions.&lt;br&gt;&lt;br&gt;&lt;b&gt;App_LocalResources&lt;/b&gt;&lt;br&gt;&lt;br&gt;This folder stored local resources files.&lt;br&gt;&lt;br&gt;&lt;b&gt;App_WebReferences&lt;/b&gt;&lt;br&gt;&lt;br&gt;This folder store web reference of web service from a asp.net 2.0 application. You can web reference via right click project in solutions explorer and then click add web reference.&lt;br&gt;&lt;br&gt;&lt;b&gt;App_Browsers&lt;/b&gt;&lt;br&gt;&lt;br&gt;The App_Browsers folder holds browser files, which are XML files used to describe characteristics and capabilities of these browsers&lt;br&gt;&lt;br&gt;&lt;b&gt;Bin&lt;/b&gt;&lt;br&gt;&lt;br&gt;This folder contains assembly files for controls and web pages.Assembly files are basically a .dll files. Any .dll files found this folder automatically links to whole application.&lt;br&gt;&lt;br&gt;This folder structure are basically supported by asp.net 2.0. You can also create your own folder structure by right click project name in solution explorer. and add new folder&lt;br&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=5826800" width="1" height="1"&gt;</content><author><name>akbaralis</name><uri>http://weblogs.asp.net/members/akbaralis.aspx</uri></author><category term="ASP.NET" scheme="http://weblogs.asp.net/akbar/archive/tags/ASP.NET/default.aspx" /><category term="Introduction" scheme="http://weblogs.asp.net/akbar/archive/tags/Introduction/default.aspx" /><category term="ASP.Net Folders" scheme="http://weblogs.asp.net/akbar/archive/tags/ASP.Net+Folders/default.aspx" /><category term=".Net" scheme="http://weblogs.asp.net/akbar/archive/tags/.Net/default.aspx" /></entry><entry><title>Introduction: What is DML, DDL, DCL and TCL in SQL Server</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/akbar/archive/2008/03/10/introduction-what-is-dml-ddl-dcl-and-tcl-in-sql-server.aspx" /><id>http://weblogs.asp.net/akbar/archive/2008/03/10/introduction-what-is-dml-ddl-dcl-and-tcl-in-sql-server.aspx</id><published>2008-03-10T14:16:00Z</published><updated>2008-03-10T14:16:00Z</updated><content type="html">&lt;p&gt;&lt;b&gt;DML&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;DML is abbreviation of &lt;b&gt;Data Manipulation Language&lt;/b&gt;. It is used to retrieve, store, modify, delete, insert and update data in database.&lt;/p&gt;
&lt;p&gt;Examples:  SELECT, UPDATE, INSERT statements&lt;/p&gt;
&lt;p&gt;&lt;b&gt;DDL&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;DDL is abbreviation of &lt;b&gt;Data Definition Language&lt;/b&gt;. It is used to create and modify the structure of database objects in database.&lt;/p&gt;
&lt;p&gt;Examples:  CREATE, ALTER, DROP statements&lt;/p&gt;
&lt;p&gt;&lt;b&gt;DCL&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;DCL is abbreviation of &lt;b&gt;Data Control Language&lt;/b&gt;. It is used to
create roles, permissions, and referential integrity as well it is used
to control access to database by securing it.&lt;/p&gt;
&lt;p&gt;Examples:  GRANT, REVOKE statements&lt;/p&gt;
&lt;p&gt;&lt;b&gt;TCL&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;TCL is abbreviation of &lt;b&gt;Transactional Control Language&lt;/b&gt;. It is used to manage different transactions occurring within a database.&lt;/p&gt;
&lt;p&gt;Examples:  COMMIT, ROLLBACK statements&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This article originally posted by Pinal Dave in his blog. I just want to keep a copy in my blog bcoz some time I am getting confused in DCL, DML, DDL .. So, I can easily refer if its in my blog.&lt;/p&gt;&lt;p&gt;Thanks to &lt;a href="http://blog.sqlauthority.com/2008/01/15/sql-server-what-is-dml-ddl-dcl-and-tcl-introduction-and-examples/" target="_blank" mce_href="http://blog.sqlauthority.com/2008/01/15/sql-server-what-is-dml-ddl-dcl-and-tcl-introduction-and-examples/"&gt;Pinal Dave.&lt;/a&gt; &lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://blog.sqlauthority.com/2008/01/15/sql-server-what-is-dml-ddl-dcl-and-tcl-introduction-and-examples/" target="_blank" mce_href="http://blog.sqlauthority.com/2008/01/15/sql-server-what-is-dml-ddl-dcl-and-tcl-introduction-and-examples/"&gt;&lt;/a&gt;&lt;br&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=5944850" width="1" height="1"&gt;</content><author><name>akbaralis</name><uri>http://weblogs.asp.net/members/akbaralis.aspx</uri></author><category term="SQL Server" scheme="http://weblogs.asp.net/akbar/archive/tags/SQL+Server/default.aspx" /><category term="TCL" scheme="http://weblogs.asp.net/akbar/archive/tags/TCL/default.aspx" /><category term="DCL" scheme="http://weblogs.asp.net/akbar/archive/tags/DCL/default.aspx" /><category term="DDL" scheme="http://weblogs.asp.net/akbar/archive/tags/DDL/default.aspx" /><category term="DML" scheme="http://weblogs.asp.net/akbar/archive/tags/DML/default.aspx" /></entry><entry><title>Get free Visual Studio 2008 and .NET Framework Training kit</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/akbar/archive/2008/03/01/get-free-visual-studio-2008-and-net-framework-training-kit.aspx" /><id>http://weblogs.asp.net/akbar/archive/2008/03/01/get-free-visual-studio-2008-and-net-framework-training-kit.aspx</id><published>2008-03-01T11:48:00Z</published><updated>2008-03-01T11:48:00Z</updated><content type="html">&lt;p&gt;Today I found this training kit at Microsoft site. It is useful for all vs 2008 learners&amp;nbsp; .. Get it &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8bdaa836-0bba-4393-94db-6c3c4a0c98a1&amp;amp;DisplayLang=en" target="_blank" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8bdaa836-0bba-4393-94db-6c3c4a0c98a1&amp;amp;DisplayLang=en"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;This kit includes presentations, labs and demos. &lt;br&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=5895204" width="1" height="1"&gt;</content><author><name>akbaralis</name><uri>http://weblogs.asp.net/members/akbaralis.aspx</uri></author><category term="Training Kit" scheme="http://weblogs.asp.net/akbar/archive/tags/Training+Kit/default.aspx" /><category term=".Net Framework" scheme="http://weblogs.asp.net/akbar/archive/tags/.Net+Framework/default.aspx" /><category term="Visual Studio" scheme="http://weblogs.asp.net/akbar/archive/tags/Visual+Studio/default.aspx" /></entry><entry><title>What is Linq?</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/akbar/archive/2008/02/20/what-is-linq.aspx" /><id>http://weblogs.asp.net/akbar/archive/2008/02/20/what-is-linq.aspx</id><published>2008-02-20T06:23:00Z</published><updated>2008-02-20T06:23:00Z</updated><content type="html">&lt;p&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;Linq&lt;/span&gt; is the one of 
the most hottest release from &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_1"&gt;Microsoft.&amp;nbsp; &lt;/span&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;Still I don't know what is Linq?. So, I searched in web and &lt;/span&gt;I have found a 
great articles from Saqib Ullah.&lt;/p&gt;&lt;p&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;&lt;/span&gt;&lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_1"&gt;&lt;/span&gt;This articles covers all the 
aspects of &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;Linq&lt;/span&gt; in 
each and every way. &lt;br&gt;&lt;br&gt;Following is the link for that article .&lt;br&gt;&lt;a href="http://geekswithblogs.net/technetbytes/archive/2007/04/30/112129.aspx"&gt;&lt;font color="#1589ff"&gt;http://geekswithblogs.net/technetbytes/archive/2007/04/30/112129.aspx&lt;/font&gt;&lt;/a&gt;&lt;br&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=5826183" width="1" height="1"&gt;</content><author><name>akbaralis</name><uri>http://weblogs.asp.net/members/akbaralis.aspx</uri></author><category term="Linq" scheme="http://weblogs.asp.net/akbar/archive/tags/Linq/default.aspx" /></entry><entry><title>My First Entry</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/akbar/archive/2008/02/14/my-first-entry.aspx" /><id>http://weblogs.asp.net/akbar/archive/2008/02/14/my-first-entry.aspx</id><published>2008-02-14T08:17:00Z</published><updated>2008-02-14T08:17:00Z</updated><content type="html">&lt;p&gt;Here I am just starting my blog, Ok, it's been awesome here at weblogs.asp.net and I just want to thank &lt;a href="http://joeon.net/" title="Joe On.Net" target="_blank" mce_href="http://joeon.net/"&gt;Joe Stagner&lt;/a&gt; personally for including me in the experience now.&lt;/p&gt;&lt;p&gt;Programming and web development are passions of mine, and I hope to have something useful to contribute to the community either through my work or through this blog.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thank You for your time spending with me :)&amp;nbsp;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=5783699" width="1" height="1"&gt;</content><author><name>akbaralis</name><uri>http://weblogs.asp.net/members/akbaralis.aspx</uri></author></entry><entry><title>About Me</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/akbar/archive/2008/02/14/about-me.aspx" /><id>http://weblogs.asp.net/akbar/archive/2008/02/14/about-me.aspx</id><published>2008-02-14T07:12:00Z</published><updated>2008-02-14T07:12:00Z</updated><content type="html">&lt;p&gt;My name is Syed Akbar Ali and I currently live and work in Chennai, India with my Parents. I was born in 1985.&lt;br&gt;&lt;br&gt;I started using computer in the year 2000. First I created my email in Hotmail.com. Still I am keeping that email id. But later I switched to Gmail. I started programming in 2002. I keeps learning new tricks as a Developer.&lt;br&gt;&lt;br&gt;I recently (January 2008) started this blog because I know it took me a long time to get where I am at, and I want to help other people get where they are going a little bit faster. &lt;/p&gt;&lt;p&gt;... more about me soon ... &lt;/p&gt;&lt;p&gt;Thanks for Visiting my Blog&amp;nbsp;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=5783394" width="1" height="1"&gt;</content><author><name>akbaralis</name><uri>http://weblogs.asp.net/members/akbaralis.aspx</uri></author></entry></feed>