<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>.Net,Asp.Net and Sharepoint Forum &#187; Recent Posts</title>
		<link>http://www.codedefiner.com/forum/</link>
		<description>Post your queries here</description>
		<language>en-US</language>
		<pubDate>Thu, 11 Mar 2010 03:07:48 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.codedefiner.com/forum/search.php</link>
		</textInput>
		<atom:link href="http://www.codedefiner.com/forum/rss.php" rel="self" type="application/rss+xml" />

		<item>
			<title>jain on "How to create referiential integrity between two lists?"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=305#post-429</link>
			<pubDate>Thu, 04 Feb 2010 10:17:07 +0000</pubDate>
			<dc:creator>jain</dc:creator>
			<guid isPermaLink="false">429@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;hi,&#60;/p&#62;
&#60;p&#62;EmployeeDetails and LibraryDetails are tables?&#60;/p&#62;
&#60;p&#62;If these are tables, create primary key on EmployeeDetails  for&#60;br /&#62;
EmployeeId column and foriegn on LibraryDetails tabel EmployeeId column with reference to the primary key column of EmployeeDetails  table.&#60;/p&#62;
&#60;p&#62;This will solve your problem.&#60;/p&#62;
&#60;p&#62;I missed any thing?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>elizas on "How to use &#34;Windows Explorer&#34; option to the Visual Studio tools menu for"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=307#post-428</link>
			<pubDate>Thu, 28 Jan 2010 06:57:10 +0000</pubDate>
			<dc:creator>elizas</dc:creator>
			<guid isPermaLink="false">428@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;Most of the times we need to refer to the folder path containing the project in Visual Studio platform, for that we need to go to Windows Explorer and then search for the folder name containing the project you are currently working on, then select the folder for further actions.Now by using this tip we can directly add the &#34;Windows Explorer&#34; in Visual Studio Tools menu for easy access. And by selecting the &#34;Windows Explorer&#34; option from the Tools menu we can directly go to the folder containg currently  edited file selected of the running project in Visual Studio environment.&#60;br /&#62;
Steps to Create new menu option in Tools Menu section :&#60;/p&#62;
&#60;p&#62;1.Open the any ASP.NET Project using Visual Studio .&#60;/p&#62;
&#60;p&#62;2.Click Tools menu, then External Tools... option from Tools Menu, then click Add.&#60;/p&#62;
&#60;p&#62;3.Now enter the following data in respective textbox provied:&#60;/p&#62;
&#60;p&#62;Title: Windows Explorer&#60;br /&#62;
Command: explorer.exe&#60;br /&#62;
Arguments: /select,&#34;$(ItemPath)&#34;&#60;/p&#62;
&#60;p&#62;4.Just leave Initial directoy textbox as blank, and click OK. &#60;/p&#62;
&#60;p&#62;5.Now click on Tools menu, Windows Explorer option.&#60;/p&#62;
&#60;p&#62;Windows Explorer will open the folder path for the current project with selected the current file we are working on.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bijayani on "ASP.Net Validators within Sharepoint"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=306#post-427</link>
			<pubDate>Thu, 28 Jan 2010 06:53:22 +0000</pubDate>
			<dc:creator>bijayani</dc:creator>
			<guid isPermaLink="false">427@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;Quite informative..
&#60;/p&#62;</description>
		</item>
		<item>
			<title>subhendu on "ASP.Net Validators within Sharepoint"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=306#post-426</link>
			<pubDate>Thu, 28 Jan 2010 06:51:00 +0000</pubDate>
			<dc:creator>subhendu</dc:creator>
			<guid isPermaLink="false">426@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;Nice post Eliza! &#60;/p&#62;
&#60;p&#62;I am sure Sharepoint guys in my wing would be glad. Will share this link with them.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>elizas on "ASP.Net Validators within Sharepoint"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=306#post-425</link>
			<pubDate>Thu, 28 Jan 2010 06:37:35 +0000</pubDate>
			<dc:creator>elizas</dc:creator>
			<guid isPermaLink="false">425@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;Many a times we have requirements of adding different client side validations on the web pages and the most convenient way to do this in ASP.Net is to use the existing set of validator controls.In SharePoint when we design custom webparts which takes some data as input, we might need to add some client side validations using ASP.Net validator controls, but there are a few things that always need to be taken care of while using ASP.Net validator controls within SharePoint custom webparts&#60;br /&#62;
1. Within a webpart we might have more than one control triggering server side postbacks. In this case the validator controls will validate with each and every postback, but the actual need might be to only validate the form with a single postback event, let's say through the &#34;SUBMIT&#34; button. To avoid this, one need to set the CausesValidation property to false for all those controls causing server side postabacks where you do not want the form to get validated.&#60;/p&#62;
&#60;p&#62;e.g. CausesValidation=&#34;false&#34;&#60;/p&#62;
&#60;p&#62;2. A SharePoint page can generally contain multiple webparts. So, if we have an ASP.Net validator control integrated within one webpart it's always going to create issues with the postback events from within other webparts present on the same page. To overcome this issue and restrict the validation to a specific webpart, ValidationGroup property can be used with a unique name within a specific webpart. All the controls (validator controls and controls to be validated) coming under a common validation logic should have the same ValidationGroup name.&#60;/p&#62;
&#60;p&#62;e.g. ValidationGroup=&#34;UniqueGroupName&#34;&#60;/p&#62;
&#60;p&#62;3. After having all these checks in place, there still remains a big problem which needs to be handled for ASP.Net validators within SharePoint. With ASP.Net validators within a webpart, when you try to edit the webpart properties, it does not allow you to save the changes within the property pane because of the validators (even with ValidationGroups set).&#60;br /&#62;
To fix this you need to check for the Form Mode within the Page Load event of the webpart and then disable the ASP.Net validator controls when the form is in either EDIT or NEW mode.&#60;/p&#62;
&#60;p&#62;e.g.&#60;br /&#62;
If SPContext.Current.FormContext.FormMode = SPControlMode.Edit&#60;br /&#62;
    Or SPContext.Current.FormContext.FormMode = SPControlMode.New Then&#60;br /&#62;
            'Set the visibility of the required field control to False&#60;br /&#62;
End If&#60;/p&#62;
&#60;p&#62;Note: From the above mentioned points, Point 1 &#38;amp; 2 are generic points which can be followed (or needs to be followed) inside general ASP.Net web pages as a better programming practice.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vaibhavss on "How to create referiential integrity between two lists?"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=305#post-424</link>
			<pubDate>Mon, 18 Jan 2010 05:56:19 +0000</pubDate>
			<dc:creator>vaibhavss</dc:creator>
			<guid isPermaLink="false">424@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I am running into a problem where I am having two lists say EmployeeDetails and LibraryDetails. In LibraryDetails i am having a lookup column say EmployeeId which derives from EmployeeDetails--&#38;gt;ID column. Now as the library details containg details books issued to the employees having EmployeeId in LibraryDetails--&#38;gt;EmployeeId column. If we delets the EmployeeDetails list item it can be removed and leaving LibraryDetails--&#38;gt;EmployeeId column leaving as &#34;NULL&#34;. Please suggest how to restring deleting the ListItem which is lookuped in other list.&#60;/p&#62;
&#60;p&#62;Thanks In Anticipation.&#60;br /&#62;
Vaibhav Bhagwat
&#60;/p&#62;</description>
		</item>
		<item>
			<title>peter on "Service broker and MSMQ"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=304#post-423</link>
			<pubDate>Wed, 30 Sep 2009 06:52:32 +0000</pubDate>
			<dc:creator>peter</dc:creator>
			<guid isPermaLink="false">423@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;both are Queuing technologies only provided by Microsoft. &#60;/p&#62;
&#60;p&#62;Service broker is useful whenever you want maintain data in Queue at database(SQL Server 2005 &#38;amp; SQL Server 2008) and MSMQ(Microsoft Message Queue) is useful whenever you want to maintain Queue at application side
&#60;/p&#62;</description>
		</item>
		<item>
			<title>srujana on "Service broker and MSMQ"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=304#post-422</link>
			<pubDate>Mon, 28 Sep 2009 07:17:02 +0000</pubDate>
			<dc:creator>srujana</dc:creator>
			<guid isPermaLink="false">422@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;What is service broker and MSMQ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>codedefiner on "CLR integration in SQL Server"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=101#post-419</link>
			<pubDate>Sun, 20 Sep 2009 19:23:30 +0000</pubDate>
			<dc:creator>codedefiner</dc:creator>
			<guid isPermaLink="false">419@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;hi,&#60;br /&#62;
    EXEC sp_configure 'show advanced options' , '1';&#60;br /&#62;
    go&#60;br /&#62;
    reconfigure;&#60;br /&#62;
    go&#60;br /&#62;
    EXEC sp_configure 'clr enabled' , '1'&#60;br /&#62;
    go&#60;br /&#62;
    reconfigure;&#60;/p&#62;
&#60;p&#62;you can enable service broker in SQL Server 2005 &#38;amp; SQL Server 2008.&#60;br /&#62;
For more &#60;a href=&#34;http://www.codedefiner.com/vbnet/CLRinSQL.aspx&#34; rel=&#34;nofollow&#34;&#62;http://www.codedefiner.com/vbnet/CLRinSQL.aspx&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>peter on "CLR integration in SQL Server"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=101#post-418</link>
			<pubDate>Sun, 20 Sep 2009 18:56:43 +0000</pubDate>
			<dc:creator>peter</dc:creator>
			<guid isPermaLink="false">418@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;Can you provide sample code for SQLCLR?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>srujana on "CLR integration in SQL Server"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=101#post-194</link>
			<pubDate>Sun, 13 Sep 2009 09:30:40 +0000</pubDate>
			<dc:creator>srujana</dc:creator>
			<guid isPermaLink="false">194@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;to know more about CLR integration in SQL Server visit &#60;a href=&#34;http://www.codedefiner.com/vbnet/CLRinSQL.aspx&#34; rel=&#34;nofollow&#34;&#62;http://www.codedefiner.com/vbnet/CLRinSQL.aspx&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>peter on "CLR integration in SQL Server"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=101#post-193</link>
			<pubDate>Sun, 13 Sep 2009 09:28:58 +0000</pubDate>
			<dc:creator>peter</dc:creator>
			<guid isPermaLink="false">193@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;how to execute .Net programms in SQL Server?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>srujana on "Joins"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=32#post-126</link>
			<pubDate>Sun, 23 Aug 2009 16:37:51 +0000</pubDate>
			<dc:creator>srujana</dc:creator>
			<guid isPermaLink="false">126@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;Sometimes we have to maintain relation between two tables.&#60;br /&#62;
maintaining relationship between tables in database with keys is called join.&#60;/p&#62;
&#60;p&#62;To join two tables, the column data types should be same on which the relation ship is maintaining.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>srujana on "subquery"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=33#post-125</link>
			<pubDate>Sun, 23 Aug 2009 16:32:07 +0000</pubDate>
			<dc:creator>srujana</dc:creator>
			<guid isPermaLink="false">125@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;A subquery is nothing but a query nested with in another query.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Eg:&#60;/strong&#62;&#60;br /&#62;
Select * from emp_sal with (nolock)&#60;br /&#62;
where emp_id in (Select id From emp_info with (Nolock))&#60;/p&#62;
&#60;p&#62;Here &#34;Select id From emp_info with (Nolock)&#34; is called subquery.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>srujana on "primary key &#38; Unique key"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=34#post-124</link>
			<pubDate>Sun, 23 Aug 2009 16:29:23 +0000</pubDate>
			<dc:creator>srujana</dc:creator>
			<guid isPermaLink="false">124@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;primary key is nothing but unique key for a table with no Null value&#60;/p&#62;
&#60;p&#62;Unique key also same as primary key but it may have Null values.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Differences between Primary key and Unique key&#60;/strong&#62;&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;primary key does not have Null values, but Unique key may have&#60;br /&#62;
 i.e,&#60;br /&#62;
Primary Key = Unique + No Null values&#60;br /&#62;
Unique Key = Unique + it may have Null values
&#60;/li&#62;
&#60;li&#62;One table contains only one primary key, but it may contains more than one unique keys.&#60;/li&#62;
&#60;/ul&#62;</description>
		</item>
		<item>
			<title>peter on "Alter table"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=31#post-123</link>
			<pubDate>Sun, 23 Aug 2009 16:23:29 +0000</pubDate>
			<dc:creator>peter</dc:creator>
			<guid isPermaLink="false">123@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;Alter Table [Table Name] Add Default (default value) For [Column Name]&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Eg:&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;If you have emp table with id and salary column and both are numeric data types. Now you want to set default value 10000 for Salary column&#60;/p&#62;
&#60;p&#62;Alter Table emp Add Default (10000) For [salary]
&#60;/p&#62;</description>
		</item>
		<item>
			<title>peter on "Alter table"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=31#post-122</link>
			<pubDate>Sun, 23 Aug 2009 16:07:52 +0000</pubDate>
			<dc:creator>peter</dc:creator>
			<guid isPermaLink="false">122@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;how to set default value for a column?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jain on "Alter table"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=31#post-121</link>
			<pubDate>Sun, 23 Aug 2009 16:04:57 +0000</pubDate>
			<dc:creator>jain</dc:creator>
			<guid isPermaLink="false">121@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;We can also add identity column to existing table&#60;/p&#62;
&#60;p&#62;Alter Table [Table Name] Add id Numeric Identity(1,1)&#60;/p&#62;
&#60;p&#62;In Identity(1,1), first value 1 represents starting value and second value 1 represents incremental value.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Eg:&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Alter Table emp_info Add emp_id Numeric Identity(1,1)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>peter on "Alter table"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=31#post-120</link>
			<pubDate>Sun, 23 Aug 2009 16:01:23 +0000</pubDate>
			<dc:creator>peter</dc:creator>
			<guid isPermaLink="false">120@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;how to add identity column to existing table?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jain on "Alter table"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=31#post-119</link>
			<pubDate>Sun, 23 Aug 2009 15:57:58 +0000</pubDate>
			<dc:creator>jain</dc:creator>
			<guid isPermaLink="false">119@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;you can add column to existing table by using&#60;/p&#62;
&#60;p&#62;Alter Table [Table Name] Add [Column Name] [Column DataType]&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Eg:&#60;/strong&#62;&#60;br /&#62;
If you have a table emp_info with two columns sno,id. You want add one more column name to that table, then use following SQL Query to add column&#60;/p&#62;
&#60;p&#62;Alter Table emp_info Add name varchar(50)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>srujana on "Normalization"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=30#post-118</link>
			<pubDate>Sun, 23 Aug 2009 15:21:36 +0000</pubDate>
			<dc:creator>srujana</dc:creator>
			<guid isPermaLink="false">118@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;Normalization is the process of designing table structure for an application.&#60;br /&#62;
The main aim of Normalization is to reduce the redundant table data to very minimum.&#60;/p&#62;
&#60;p&#62;The advantages of Normalization are&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;by using normalization data maintenance is simplified&#60;/li&#62;
&#60;li&#62;it allows data retrieval at optimal spped&#60;/li&#62;
&#60;li&#62;it improves the quality of design for an application by rationalization of table data&#60;/li&#62;
&#60;/ul&#62;</description>
		</item>
		<item>
			<title>jain on "primary key &#38; Unique key"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=34#post-117</link>
			<pubDate>Sun, 23 Aug 2009 15:02:36 +0000</pubDate>
			<dc:creator>jain</dc:creator>
			<guid isPermaLink="false">117@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;what is primary key and what is Unique key? and differences between them?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rahim on "subquery"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=33#post-116</link>
			<pubDate>Sun, 23 Aug 2009 15:00:45 +0000</pubDate>
			<dc:creator>rahim</dc:creator>
			<guid isPermaLink="false">116@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;what is subquery and how to write subquery?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mohan on "Joins"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=32#post-115</link>
			<pubDate>Sun, 23 Aug 2009 14:58:43 +0000</pubDate>
			<dc:creator>mohan</dc:creator>
			<guid isPermaLink="false">115@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;what is join?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>srujana on "Alter table"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=31#post-114</link>
			<pubDate>Sun, 23 Aug 2009 14:57:19 +0000</pubDate>
			<dc:creator>srujana</dc:creator>
			<guid isPermaLink="false">114@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;how to add column to table by Alter statement?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>peter on "Normalization"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=30#post-113</link>
			<pubDate>Sun, 23 Aug 2009 14:54:10 +0000</pubDate>
			<dc:creator>peter</dc:creator>
			<guid isPermaLink="false">113@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;What is Normalization and what are the advantages of Normalization?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>peter on "Global.asax"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=29#post-112</link>
			<pubDate>Fri, 21 Aug 2009 01:26:17 +0000</pubDate>
			<dc:creator>peter</dc:creator>
			<guid isPermaLink="false">112@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;It will tell the server what to do when the application first started or what to do when the application ended.&#60;br /&#62;
It has several events like Application_Start, Application_End and so on..,which are executed whenever application started and whenever application ended.&#60;/p&#62;
&#60;p&#62;The events of an global.asax file are&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Application_Start:&#60;/strong&#62; This will executed whenever application started.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Application_End:&#60;/strong&#62;  This will executed whenever application ended.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Application_Error:&#60;/strong&#62; This will executed whenever application has some errors.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Session_Start:&#60;/strong&#62; This will executed whenever new session started in application.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Session_End:&#60;/strong&#62; This will executed whenever session ended.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jain on "Global.asax"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=29#post-111</link>
			<pubDate>Fri, 21 Aug 2009 01:17:19 +0000</pubDate>
			<dc:creator>jain</dc:creator>
			<guid isPermaLink="false">111@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;What is global.asax file and how it is useful for an Asp.Net Application?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>srujana on "group by clause"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=28#post-110</link>
			<pubDate>Thu, 20 Aug 2009 10:33:56 +0000</pubDate>
			<dc:creator>srujana</dc:creator>
			<guid isPermaLink="false">110@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;hi,&#60;/p&#62;
&#60;p&#62;group by name itself has it's meaning.&#60;br /&#62;
It is use ful to group the one or more columns in a table.&#60;/p&#62;
&#60;p&#62;For example, if we have a table called employee_info which has salaries of all employees.&#60;br /&#62;
Columns of table are employee Id, branch, salary paid and month.&#60;br /&#62;
If we want to know how much salary are we paying for all employees then we have to sum the all salaries based on month.&#60;/p&#62;
&#60;p&#62;Query look like&#60;/p&#62;
&#60;p&#62;&#34;Select month,sum(salary) From employee_info with (nolock)&#60;br /&#62;
 Group by month&#34;&#60;/p&#62;
&#60;p&#62;then we can get the total salary paid to all employees each month.&#60;/p&#62;
&#60;p&#62;Even you can group the more than one column also.&#60;br /&#62;
For example, in the above example itself if we want to know to total salary paid to each branch for each month&#60;/p&#62;
&#60;p&#62;then we can pull data by suing below query&#60;/p&#62;
&#60;p&#62;&#34;Select branch,month,sum(salary) From employee_info with (nolock)&#60;br /&#62;
 Group by branch,month&#34;&#60;/p&#62;
&#60;p&#62;then we will get data based on branch and month
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rahim on "group by clause"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=28#post-109</link>
			<pubDate>Thu, 20 Aug 2009 10:22:44 +0000</pubDate>
			<dc:creator>rahim</dc:creator>
			<guid isPermaLink="false">109@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;what is group by clause and how use it?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>codedefiner on "19 Practical Points to be remembered while working on project/software Company"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=27#post-108</link>
			<pubDate>Wed, 19 Aug 2009 17:01:06 +0000</pubDate>
			<dc:creator>codedefiner</dc:creator>
			<guid isPermaLink="false">108@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;hi &#60;/p&#62;
&#60;p&#62;I agree with you Questpond.&#60;br /&#62;
Even I am following the same principles what you mentioned.&#60;/p&#62;
&#60;p&#62;It is helpful for every person who are working in a group.&#60;/p&#62;
&#60;p&#62;keep it up.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Questpond on "19 Practical Points to be remembered while working on project/software Company"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=27#post-107</link>
			<pubDate>Wed, 19 Aug 2009 11:55:56 +0000</pubDate>
			<dc:creator>Questpond</dc:creator>
			<guid isPermaLink="false">107@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;Introduction&#60;/p&#62;
&#60;p&#62;This article will talk about some important points we should note while working with tight dead line project. I am sure every one has some or other important points to share while working with software companies and projects. Do put your points here I will consolidate and make nice list, which will help the software professional community.&#60;/p&#62;
&#60;p&#62;I have been writing and recording lot of architecture related videos on design patterns, UML , estimation and C# projects. You can see the sample videos at &#60;a href=&#34;http://www.questpond.com/FreeDesign1.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.questpond.com/FreeDesign1.htm&#60;/a&#62;  . &#60;/p&#62;
&#60;p&#62;There is life outside projects….your life and your family. Love your work but not your project or the company. Many developers after a certain amount of time become possessive about the project and the company. Try to come on time and go on time. So that you do not get saturated and work on the project for a longer time and effectively.&#60;/p&#62;
&#60;p&#62;Do not try be a hero in the project. Because heroes also have to go through all hardships. So believe in equal load distribution which is not only good for the project but also for you on long run.&#60;/p&#62;
&#60;p&#62;Every project has parasite developers. In short every project has developers who constantly take help from others thus bringing down productivity. Yes its is possible that those are your friends , but remember one thing do not give fish to the needy teach him how to fish. If you are project manager you should analyze such kind of developers and ask for replacement and if you are a developer avoid doing their work from start to finish. Yes give them hint but do not do complete coding for them.&#60;/p&#62;
&#60;p&#62;Do not make projects your learning ground. Customer’s pay heavy for making software do not make it a learning ground. In many projects developers try to implement new technologies in mid of the project just by hearing jargons.&#60;/p&#62;
&#60;p&#62;Do not treat your project people as a resource. Project managers have these jargon of thinking every one as a resource. Thats bookish thinking. Any one working in a project is finally a human with emotions. The time you consider them as resource they will consider you as resource.&#60;/p&#62;
&#60;p&#62;Try to freeze your requirements before the start of the project. In practical scenarios it is very difficult to control the end customer. But if you can atleast control the changes that will make the project more comfortable. The best way to control changes is by taking official sign offs or non-official sign offs from the end Customer.&#60;/p&#62;
&#60;p&#62;Test, Test and Test. That’s the key to success for any software project.&#60;/p&#62;
&#60;p&#62;Do not hide your defects. Developers are the best guys who know where the code will crash. Do not hide it , analyze and fix it. Do not cheat and leave the same till it goes to the end client.&#60;/p&#62;
&#60;p&#62;Avoid ego issues during project. Many times in project developers and managers get stuck up with ego issues. Sometimes moving back makes the project move further.&#60;/p&#62;
&#60;p&#62;Tackle bigger problems of the project first. The best way to complete any project is to start those screens which are used by the customer more often. For instance every project has non-frequent masters code them later and start the transaction screens first. Many time developers end up doing nitty gritty work and forget the bigger part of the project.&#60;/p&#62;
&#60;p&#62;Do not talk about stars. Every project starts with talking about stars but later end up somewhere else. Developers talk about concept of OOP’s , full database normalization , design patterns etc etc. These fundamentals are important but it should not end up with only jargons. Some times practical deadlines makes it impossible to implement these features. Keep yourself flexible and compromise with quality when you have deadlines…..believe me its not a sin if customer is giving you unreasonable deadlines.&#60;/p&#62;
&#60;p&#62;Maintaining a right project hierarchy is very important i.e. the A model. In A model you have one senior person at the top , project manager , team leader , senior developers and then juniors. The right proportion of people from each grade is important. On any level if you have too much concentration you will have ego issue and promotion issues.&#60;/p&#62;
&#60;p&#62;Make yourself visible. If you think you have done something good show it , advertise it , make it visible. Will help you during your assesment.&#60;/p&#62;
&#60;p&#62;Avoid getting in to project politics. Peace of mind is the most important thing. Getting in to egos and politics will only complicate things.&#60;/p&#62;
&#60;p&#62;If you are working on maintenance project upgrade yourself time to time.&#60;/p&#62;
&#60;p&#62;In case you are maintaining some other Developers code do not criticize the code. Who knows in what circumstances was the project made.&#60;/p&#62;
&#60;p&#62;If you are project manager in the project do not make it a compulsory rule that you will never touch coding. Remember juniors respect their seniors if they sit with them for development and know their difficulties.&#60;/p&#62;
&#60;p&#62;If any resource is working on a project for more than a year his performance comes down. Prepare a proper KT plan and bring in new resources and roll the old resources off for some better prospects.&#60;/p&#62;
&#60;p&#62;Avoid unnecessary meetings.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>srujana on "dataset to xml file"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=26#post-106</link>
			<pubDate>Tue, 18 Aug 2009 12:27:05 +0000</pubDate>
			<dc:creator>srujana</dc:creator>
			<guid isPermaLink="false">106@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;we can write dataset data to an XML file by using dataset object &#34;WriteXml&#34; method.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;ds.WriteXml(Server.MapPath(&#38;quot;path of the XML file&#38;quot;))&#60;/code&#62; &#60;/p&#62;
&#60;p&#62;for more &#60;a href=&#34;http://www.codedefiner.com/datasettoxml.aspx&#34; rel=&#34;nofollow&#34;&#62;http://www.codedefiner.com/datasettoxml.aspx&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>peter on "dataset to xml file"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=26#post-105</link>
			<pubDate>Tue, 18 Aug 2009 12:23:13 +0000</pubDate>
			<dc:creator>peter</dc:creator>
			<guid isPermaLink="false">105@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;how to write dataset table data to xml file
&#60;/p&#62;</description>
		</item>
		<item>
			<title>peter on "MSIL"</title>
			<link>http://www.codedefiner.com/forum/topic.php?id=17#post-104</link>
			<pubDate>Sun, 16 Aug 2009 12:45:44 +0000</pubDate>
			<dc:creator>peter</dc:creator>
			<guid isPermaLink="false">104@http://www.codedefiner.com/forum/</guid>
			<description>&#60;p&#62;Yes. A couple of simple examples are that you can throw exceptions that are not derived from System.Exception, and you can have non-zero-based arrays.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
