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
My Online Notepad
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
http://support.microsoft.com/kb/969548
Solution: Upgrade the system to the .NET Framework 2.0 SP2 or the .NET Framework 3.5 SP1.
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 is a free network utility to retrieve files from the World Wide Web using HTTP, HTTPS and FTP.
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:
Cause:
IIS 6.0 was set to serve only static HTML pages by default on Windows Server 2003
Solution:
Using the IIS manager Allow Active Server Pages under the Web service extensions node.
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 documentation on Querying the SQL Server System Catalog, it contains some information on backward compatibility and future releases of SQL Server.
Standard Numeric Format Specifiers
(C) Currency: . . . . . . . . ($123.00)
(D) Decimal:. . . . . . . . . -123
(E) Scientific: . . . . . . . -1.234500E+002
(F) Fixed point:. . . . . . . -123.45
(G) General:. . . . . . . . . -123
(default):. . . . . . . . -123 (default = ‘G’)
(N) Number: . . . . . . . . . -123.00
(P) Percent:. . . . . . . . . -12,345.00 %
(R) Round-trip: . . . . . . . -123.45
(X) Hexadecimal:. . . . . . . FFFFFF85
Standard DateTime Format Specifiers
(d) Short date: . . . . . . . 6/26/2004
(D) Long date:. . . . . . . . Saturday, June 26, 2004
(t) Short time: . . . . . . . 8:11 PM
(T) Long time:. . . . . . . . 8:11:04 PM
(f) Full date/short time: . . Saturday, June 26, 2004 8:11 PM
(F) Full date/long time:. . . Saturday, June 26, 2004 8:11:04 PM
(g) General date/short time:. 6/26/2004 8:11 PM
(G) General date/long time: . 6/26/2004 8:11:04 PM
(default):. . . . . . . . 6/26/2004 8:11:04 PM (default = ‘G’)
(M) Month:. . . . . . . . . . June 26
(R) RFC1123:. . . . . . . . . Sat, 26 Jun 2004 20:11:04 GMT
(s) Sortable: . . . . . . . . 2004-06-26T20:11:04
(u) Universal sortable: . . . 2004-06-26 20:11:04Z (invariant)
(U) Universal full date/time: Sunday, June 27, 2004 3:11:04 AM
(Y) Year: . . . . . . . . . . June, 2004
Standard Enumeration Format Specifiers
(G) General:. . . . . . . . . Green
(default):. . . . . . . . Green (default = ‘G’)
(F) Flags:. . . . . . . . . . Green (flags or integer)
(D) Decimal number: . . . . . 3
(X) Hexadecimal:. . . . . . . 00000003
Source: Simple-Talk
Common lookup tables have no place in sensible database design, whether used as a short-term makeshift fix or as a long-term viable solution.