web 2.0

Deleteing/Dropping all the user tables in an oracle schema

If for whatever reason you need to drop all of your tables, and cannot delete an recreate the schema... run this and spool it's output into another sql script...

select 'drop table '||table_name||' cascade constraints;' from user_tables;

Tags: , ,

Snippet

Selecting the names of all user tables in an Oracle Database

Found this useful in a pet project of mine where it was neccesary to enumerate all of the user tables in an oracle database...

SELECT TABLE_NAME FROM USER_TABLES;

Useful for names, however this is just *one* field of many... if you replace TABLE_NAME with * you get all the meta information for the user tables.

 

Tags: , , ,

Snippet

How to save $500 a year on your phone bill

Since I primarily use my Cell phone for business and pleasure I found my usage of my home phone weaning.  However this meant that my Cell phone Usage increased as well as my long distance bill.  I wanted to keep a land line, but I was getting tired of paying the $45.00 / month for it and not really using it.  Not to mention I was looking for a way to reduce my long distance.

The Magic Jack

I do most of parts shopping at a largish part supplier here called Memory Express.  For about a year now they have been advertising the magic jack as the greatest invention since sliced bread.  Replace your phone line and save money.  We've heard this before... Shaw Cable offers a VOIP service similar to this and charges $20.00 / mo., Vonage charges $19.95 / mo. etc.  I didn’t really think much of it until I decided to do a little investigating on the internet.  Apparently they include one YEAR of local and long distance (they give you a local phone number) with the purchase price of the device! More...

Tags: , , ,

Reviews

Three components of a website. A simplified primer on website construction

Could it really be a simple as these three components to create your own website? Shouldn't you hire an expensive web developer to make your website for you? If you only need a simple blog type site, then chances are no. As a developer, I can and will design complex website systems for companies to make things easier for them to manage a large site,  but blog sites (generic and themed) are a literally a dime a dozen and be set up in less than 30 minutes on a budget of less than 500.00

General Topography of a website

Let's use easy123websites.ca as an example of a website out there on the internet. The first thing that you when you want to come here is type in their address in the address bar of your internet browser and hit go and the website appears... seems simple enough, but there are a few things going on behind the scenes

Websites are nothing more than a collection of code sitting on special computers called servers that are connected to the internet. A good analogy of the how servers are interconnected on the internet is to visualize a house and all of the connecting houses and streets in its neighborhood. Servers that connect to the internet have unique  More...

Tags: , , ,

General