Archive for June, 2008

Copying Records From One Table to Another Using SQL Queries

Thursday, June 5th, 2008

Copying records from one table to another within a single database is pretty trivial.
Its just a matter of running a query with the structure shown below
insert into TableA(FieldA, FieldB, FieldC)select FieldA,FieldB, FieldC from TableB
If TableA and TableB reside in different Databases you would have to use a fully qualified Table names.
Came across this one today […]

Google: Ethics vs Freedom of Information

Tuesday, June 3rd, 2008

Today I was loitering on the Internet trying to kill some time. I was reading about various conspiracies concerning oil prices , wars e.t.c.
I searched Google for the term ‘Zionism’. The results page had a ’sponsored link’ on top linking to a anti-zionism website(URL withheld) that caught my attention. Any website seeking to appear on […]