using System.Text.RegularExpressions; ... public static string RemoveHTML(string in_HTML) { return Regex.Replace(in_HTML, "<(.|\n)*?>", ""); }
Posted by at 11th June, 2009
Blondes may have more fun but redheads have more sex, according to new research in Germany. The study by Hamburg Sex Researcher Professor Dr Werner Habermehl looked at the sex lives of hundreds of German women and compared them with their hair color.
Dr Habermehl said: “The sex lives of women with red hair were clearly more active than those with other hair color, with more partners and having sex more often than the average. The research shows that the fiery redhead certainly lives up to her reputation.”
He added that women who dyed their hair red from another color were signaling they were looking for a partner, and added: “Even women in a fixed relationship are letting their partners know they are unhappy if they dye their hair red. They are saying that they are looking for something better.”

Psychologist Christine Baumanns said however that it may not be the women who were to blame for the better sex lives of redheads.
She said: “Red stands for passion and when a man sees a redhead he will think he is dealing with a woman who won’t mess around, and gets straight to the point when it comes to sex.”
“Redheads have a fiery temperament. I love that sense of danger, not knowing whether the woman is going to smash a vase in a fit of wild anger or tear my clothes off in a fit of animal lust. That fire and passion will hold my interest over the long haul, no question.”


Five important facts about redheads:
Posted by at 30th January, 2009
create function getDayOfWeek (@date datetime) returns varchar(10) as begin declare @retVal varchar(10) select @retVal= case datepart(dw,@date) when 1 then 'Sun' when 2 then 'Mon' when 3 then 'Tue' when 4 then 'Wed' when 5 then 'Thu' when 6 then 'Fri' when 7 then 'Sat' end return @retVal end
Then you can just call it as any other function in a select (or however you need it):
select dbo.getDayOfWeek(getdate())
Posted by at 29th January, 2009
USE [dbName] GO CREATE TABLE #temp ( table_name sysname , row_count INT, reserved_size VARCHAR(50), data_size VARCHAR(50), index_size VARCHAR(50), unused_size VARCHAR(50)) SET NOCOUNT ON INSERT #temp EXEC sp_msforeachtable 'sp_spaceused ''?''' SELECT a.table_name, a.row_count, COUNT(*) AS col_count, a.data_size FROM #temp a INNER JOIN information_schema.columns b ON a.table_name collate database_default = b.table_name collate database_default GROUP BY a.table_name, a.row_count, a.data_size ORDER BY CAST(REPLACE(a.data_size, ' KB', '') AS integer) DESC DROP TABLE #temp
Posted by at 29th January, 2009
using System.Text.RegularExpressions; ... public static string RemoveHTML(string in_HTML) { return Regex.Replace(in_HTML, "<(.|\n)*?>", ""); }
Posted by at 29th January, 2009
Reference articles: