Alessandro Lacava’s Blog

Google
 

July 4, 2007

Find your low-cost flights with WeeFly

Filed under: Other — alessandrolacava @ 10:37 am

Hi all,

today a new and innovative low-cost-flight search engine is out, its name is WeeFly. It lets you search for very cheap flights within a wide range of dates–among different origins/destinations–using just a single query. For example you could search for round-trip tickets from London to Milan and Paris in all the weekends between June and July. WeeFly also allows much more flexible queries. Have a look at WeeFly’s web site to find out more.


How to create a copy/backup of a table in Oracle

Filed under: Computer, Oracle — alessandrolacava @ 10:16 am

You can create a backup of a table (structure and data) in Oracle by using the following syntax:

SQL:
  1. CREATE TABLE customers_backup AS (SELECT * FROM customers)

The previous example creates the customers_backup table which mirrors the structure and data of the customers table.