Monthly Archives June 2008

Windpower to the rescue

Energy crisis has never been worse in Nigeria than now. power stations are comatose, the government is reversing itself in all possible directions and no one knows what is going to happen the next minute. Earlier in the administration of Bola Tinubu of Lagos State, he pioneered the concept of independent power stations but because […]

Create a Replica Table based on another Table Schema

A quick and dirty way to create a table in MS SQL as a replica of another table without having to move data from first table to the second one. Say you want to create Table B based on Table A schema:SELECT TOP 0 * INTO TABLE B FROM TABLE A