Welcome to AspAdvice Sign in | Join | Help

March 2009 - Posts

Installing Ubuntu in VirtualBox

installing ubuntu - linux into virtual machine in my case using virtualbox i have tried to use microsoft virtual pc but eventually i cannot mount the ubuntu iso file 1. First of all get your installation file prepared - ubuntu download - www.ubuntu.com
Posted by mo meng | 0 Comments

SQL - Concatenate rows

Below is an example on how to concatenate mulitple rows into a single column SELECT Substring (Convert(varchar, (SELECT DISTINCT col1 + ',' AS [text()] FROM tbl1 WHERE condition = 'condition1' FOR XML PATH(''))), 0, LEN(Convert(varchar,
Posted by mo meng | 0 Comments

Serialization sample

Serialization - storing an object in my case a dataset as byte and database why i use serialization: To enchance the performance / response time of loading a page whereby it contains a huge set of data stored in a ViewState It needs to take a long time
Posted by mo meng | 2 Comments