Wednesday, July 23, 2014

Norris Numbers

http://www.teamten.com/lawrence/writings/norris-numbers.html

Norris’ number, the untrained programmer can write 1,500 lines.
With Thoughtful class and package decomposition will let you scale up to 20,000 lines.

Friday, July 18, 2014

Tool to choose a open source lincens

http://choosealicense.com/

If you don't use any license, the default copyright laws apply.

Thursday, July 17, 2014

How to use Bulk insert to insert one column in a mutitple columns table?

One of solutions is:
Create a view from that table with only column you want to update.
The use bulk insert:
bulk insert TableView
from 'July17_2014.csv'
with (fieldterminator = ',', rowterminator = '\n')