To list members of the Power Users group (You must include the quotation marks.): net localgroup “power users” To list members of the Users group: net localgroup users To list members of the Administrators group: net localgroup administrators
Author: Melvin
XML Path Language – XPath
It is the result of an effort to provide a common syntax and semantics for functionality shared between XSL Transformations (XSLT) and XPointer (XPointer). Useful information I’ve found on XPath: XPath (Version 1.0) XPath Support in ElementTree
http://support.microsoft.com/kb/969548 Solution: Upgrade the system to the .NET Framework 2.0 SP2 or the .NET Framework 3.5 SP1. Other information related to this issue.
Tools to analyze Java heap
HeapAnalyzer – A graphical tool for discovering possible Java heap leaks. IBM Pattern Modeling and Analysis Tool for Java Garbage Collector – A tool that parses verbose GC trace, analyzes Java heap usage, and recommends key configurations based on pattern modeling of Java heap usage.
GNU Wget
GNU Wget is a free network utility to retrieve files from the World Wide Web using HTTP, HTTPS and FTP.
Reporting tool for Microsoft IIS
Admin Report Kit (ARKIIS)
I ran across this problem with an ASP page and found a solution on the Microsoft Support site. Symptoms: Active Server Pages (ASP) page, ASP.NET page, Internet Services API (ISAPI) application, or Common Gateway Interface (CGI) application on a Windows Server 2003 server running Internet Information Services (IIS) 6.0, give the following error messages: HTTP […]
USE Database –Change to the database you want to use SELECT name, create_date, modify_date FROM sys.objects –User defined objects system view WHERE type = ‘P’ –Only return stored procedures AND modify_date > ‘2009-09-01’ –If you aren’t looking for a specific data range, take this line out ORDER BY modify_date DESC Read sys.objects documentation Also read […]
Standard Numeric Format Specifiers (C) Currency: . . . . . . . . ($123.00) (D) Decimal:. . . . . . . . . -123 (E) Scientific: . . . . . . . -1.234500E+002 (F) Fixed point:. . . . . . . -123.45 (G) General:. . . . . . . . […]
Source: Simple-Talk Common Lookup Tables Always use separate tables for each logical entity, identifying the appropriate columns with correct types, constraints and references. It is better to write simple routines and procedures to access and manipulate the data in the tables without aiming for “dynamic code”. Common lookup tables have no place in sensible database […]