Archive for February, 2009

26
Feb
09

Destroying a hard drive

Interesting article from the BBC on destorying your computer’s hard drive.

What’s the best way to destroy a PC?

09
Feb
09

General Video Tutorials

08
Feb
09

SQL Server Performance Tips

These SQL Server Performance Tips are from Simon Harriyott’s blog.

08
Feb
09

SQL: With Ties

When you need to return the top number of rows in a result set you would use SELECT TOP which can be a percentage or number e.g.

SELECT TOP 5% … etc
SELECT TOP 5 … etc

This is fairly simple but what if the fifth, sixth and seventh rows had the same value.  You would probably want to return them as well.  This can be achieved by using WITH TIES e.g.

SELECT TOP 5 WITH TIES EmployeeID, Salary
FROM Employee
ORDER BY 2 DESC  /* the 2 represents the second column */

The result set would have 7 rows.

Also see With Ties – SQL Server Tip from Simon Harriyott’ blog for an excellent example.

07
Feb
09

New Media and Web 2.0 explained

I found this pdf recently on How to use New Media.  It’s a useful explanation of web 2.0 and includes a number of practical examples.

03
Feb
09

Web design reference

Sitepoint have released a major update to their free online reference, covering:

  • html
  • css
  • javascript

http://reference.sitepoint.com/ 




calendar

February 2009
M T W T F S S
« Jan   Jun »
 1
2345678
9101112131415
16171819202122
232425262728  

BBC Tech News

twittering