CGVYAPAM RESULTS

Results of CG Shikhsha Karmi and other exams held by CGVYAPAM can be found here :

http://www.cgvyapam.in

Try the alternate link if the above one is not working

http://www.cgvyapam.in

failed to generate a user instance of sql server due to a failure in starting the process for the user instance. the connection will be closed

"Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance. The connection will be closed." 

Here is the way to get rid of this problem. Follow through the steps: 

Step 1. Enabling User Instances on your SQL Server installation First we are going make sure we have enabled User Instances for SQL Server installation. Go to Query Window in SQL Server Management Studio and type this: exec sp_configure 'user instances enabled', 

Step 2. Go Reconfigure Run this query and then restart the SQL Server. 

Step 3. Deleting old files Now we need to delete any old User Instances. Go to your C drive and find and completely DELETE this path (and all files inside): C:\Documents and Settings\YOUR_PC_USERNAME\Local Settings\Application Data\Microsoft\Microsoft SQL Server Data\SQLEXPRESS After deleting this directory you can go to Visual Studio, create ASP.NET Website and click on your App_Data folder and choose Add New Item and then choose SQL Server Database and it should work!!!

System.InvalidOperationException: The file web.sitemap required by XmlSiteMapProvider does not exist.

System.InvalidOperationException: The file web.sitemap required by XmlSiteMapProvider does not exist.

Solution: Just keep the sitemap file in the root folder of your project and make sure its an valid xml file that has the websites sitemap defined.

Yash Softech established in the year 2007 is a premier software development company in Chhattisgarh(central India).

We are an organization providing quality IT services to clients globally. Our domain of technical expertise is extensive and encompasses Wireless and Enterprise Applications. We provide Mobile game, Website development and application development services.

We believe in Quality and Excellence. We offer a variety of delivery /engagement capabilities: we can send people to work on-site.

We are in the business of change, managing complexity with an unparalleled insight, looking beyond the horizon of IT with resources focused on solutions.

We serve the corporate in providing the best and efficient solutions catering to their clients aboard, and to I.T professional in training delivery with consistency. We develop a range of curricula for people with diverse requirements, from IT professionals needing advanced training to business managers seeking to develop a competitive edge.

Running Total In SQL Server

Running total refers to the sum of values in all cells of a column that precedes the next cell in that particular column. Using Window Funct...