SQL Live Monitor

Hello Friends, I have tried the Utility SQL Live Monitor, it really helpful for me…. That’s why I am sharing with you all … Features This tool is designed to provide realtime performance data on SQL Server, as well as data capture for offline analysis. The tools features are: Realtime SQL and System performance data Colour coded alerts Capture data logging to CSV – sample interval configurable PAL Perfmon counter logged to .blg or .csv for offline analysis using PAL

» Read more

Web Client Software Factory – Complete Information

Web Client Software Factory : URLs Web Client Software Factory  WCSF Documentation Production Download :  Web Client Software Factory – February 2008 Summary of Installation Steps Getting Started with the Web Client Software Factory – February 2008 Download : Enterprise Library 3.1 – May 2007 Guidance Automation Extensions – February 2008 Release and here Guidance Automation Extensions 2008 and Guidance Automation Toolkit 2008 Microsoft Guidance Automation Extensions 2010 and Guidance Automation Toolkit 2010  Quick Start  Others        

» Read more

System Information for Windows

SIW – System Information for Windows  “Everything you want to know about your computer” SIW is an advanced System Information for Windows tool that gathers detailed information about your system properties and settings and displays it in an extremely comprehensible manner. SIW can create a report file (CSV, HTML, TXT or XML), and is able to run in batch mode (for Computer Software and Hardware Inventory, Asset Inventory Tracking, Audit Software Licenses, Software License Compliance). The system information is divided into few major

» Read more

Recursive Directory Info

Imports System Imports System.IO Public Class MainClass Shared Sub Main() Dim nameOfDirectory As String = "C:" Dim myDirectory As DirectoryInfo myDirectory = New DirectoryInfo(nameOfDirectory) WorkWithDirectory(myDirectory) End Sub Shared Public Sub WorkWithDirectory(ByVal aDir As DirectoryInfo) Dim nextDir As DirectoryInfo WorkWithFilesInDir(aDir) For Each nextDir In aDir.GetDirectories WorkWithDirectory(nextDir) Next End Sub Shared Public Sub WorkWithFilesInDir(ByVal aDir As DirectoryInfo) Dim aFile As FileInfo For Each aFile In aDir.GetFiles() Console.WriteLine(aFile.FullName) Next End Sub End Class

» Read more

C# Code : Connection strings for SQL Server 2008

using System.Data.SqlClient; private void ValidationFile() { string FilePath = “”; using (SqlConnection myConnection = new SqlConnection(“Data Source=servername;Initial Catalog=db_name;User ID=user;Password=pass;”)) { using (SqlCommand myCommand = new SqlCommand(“select scanned_document_id, master_id, file_path from scanned_documents”, myConnection)) { myCommand.CommandType = CommandType.Text; myConnection.Open(); using (SqlDataReader myReader = myCommand.ExecuteReader()) { if (myReader.HasRows) { while (myReader.Read()) { FilePath = myReader.GetString(myReader.GetOrdinal(“file_path”)); }}}}}}

» Read more

Agile Software Development

Definition : Agile software development is a group of software development methodologies based on iterative and incremental development, where requirements and solutions evolve through collaboration between self-organizing, cross-functional teams Agile Manifesto reads, in its entirety, as follows: We are uncovering better ways of developing software by doing it and helping others do it. Through this work we have come to value:   Individuals and interactions over processes and tools Working software over comprehensive documentation Customer collaboration over contract negotiation Responding

» Read more
1 22 23 24 25 26