Categories
IIS

Redirecting Browser Requests to Another Folder or Web Site

To redirect browser requests to another folder or Web site: Start IIS Manager. Click to expand * server name, where server name is the name of the server. Right-click either the Web site or the folder that you want to redirect, and then click Properties. Click one of the following tabs that is appropriate to […]

Categories
SQL SQL Server

sp_rename

Changes the name of a user-created object (i.e. table, column, or user-defined data type) in the current database. Rename a table This example renames the customers table to custs. EXEC sp_rename ‘customers’, ‘custs’ Rename a column This example renames the contact title column in the customers table to title. EXEC sp_rename ‘customers.[contact title]’, ‘title’, ‘COLUMN’