C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Communities   Interview   Jobs   Projects   Offshore Development    
Silverlight Tutorials | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Revenue Sharing |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...

New Feature: Community Sites: Create your own .NET community website and start earning from Google AdSense ! It's Free !




How to get the active processes running in Microsoft SQL Server database?


Posted Date: 18 Jun 2007    Resource Type: Code Snippets    Category: ADO.NET

Posted By: Abhishek Arya       Member Level: Diamond
Rating:     Points: 10



The method returns a dataset containing information
for the active processes running in Microsoft SQL Server.


public DataSet GetActiveProcesses(string serverName,string user, string password)
{
/*
This method is created by Anton Zamov.
web site: http://zamov.online.fr

Feel free to use and redistribute this method
in condition that you keep this message intact.
*/

DataSet ds = new DataSet();

try
{


SqlConnection cn = new SqlConnection("Server="+serverName+"; Database=master; UId="+user+"; Pwd="+password+"");

SqlDataAdapter cmd = new SqlDataAdapter("select spid,loginame,hostname,cpu,memusage,cmd,status from sysprocesses where status='runnable' order by memusage desc",cn);



cmd.Fill(ds,"nc");



}
catch(Exception exc)
{
System.Windows.Forms.MessageBox.Show("SQL Server is not running or access is denied!");
}

return ds;
}




Responses


No responses found. Be the first to respond and make money from revenue sharing program.

Feedbacks      
Popular Tags   What are tags ?   Search Tags  
(No tags found.)

Post Feedback


This is a strictly moderated forum. Only approved messages will appear in the site. Please use 'Spell Check' in Google toolbar before you submit.
You must Sign In to post a response.
Next Resource: Create a Generic Colletion to store objects in VB.Net
Previous Resource: How to get the available RAM and the CPU usage?
Return to Discussion Resource Index
Post New Resource
Category: ADO.NET


Post resources and earn money!
 
Related Resources



dotNet Slackers   BizTalk Adaptors    Web Design

Help Desk

Contact Us    Privacy Policy    Terms Of Use