devxlogo

Tip Bank

Locate the Installed Version of MS SQL Server

This query: select @@version provides the following information: Version installed Service Pack installed Edition installed Here’s a sample of the output: Microsoft SQL Server 2000 – 8.00.194 (Intel X86) Aug

Make an IIS Server Recognize ASP.NET Web Pages

For some reason, if you install IIS after you’ve installed .NET, IIS will not recognize ASP.NET pages. To fix this, go to: Start?>Programs?>Microsoft Visual Studio.NET 2003?>Visual Studio.NET Tools?>Visual Studio .NET

Converting Numbers into Words

Ever written a PL/SQL block of code to convert numbers to words? Try this easy line of code to accomplish the same task: SELECT TO_CHAR(TO_DATE(764,’J’), ‘JSP’) AS WORD_FORM FROM DUAL;