|
How do I get a list of table sizes in SQL Server |
|
Sunday, 16 November 2008 |
|
How do I get a list of table sizes in SQL Server
Use the command
EXEC sp_MSforeachtable @command1="EXEC sp_spaceused '?'"
Thanks to the 4guysfromrolla for this - for a fuller explaination see http://www.4guysfromrolla.com/webtech/032906-1.shtml
|
|
Last Updated ( Wednesday, 31 December 2008 )
|
|
|
How to get the program name in asp.net |
|
Sunday, 10 May 2009 |
You can get the program name in ASP.NET by using
<%= Request.ServerVariables("SCRIPT_NAME") |
|
|
How to do a 301 permanent redirect from VB.NET |
|
Thursday, 27 November 2008 |
|
To do a permanent redirect from within VB.NET/ASP.NET use the following code
Response.Status = "301 Moved Permanently"
Response.AddHeader("Location", "http://programmingtips.co.uk")
Response.End()
|
|
Last Updated ( Wednesday, 31 December 2008 )
|
|
|