Okay, let’s get serious. I have figured out ways to make the better use of the above training at home. Here are the rules;
1. Keep a pen and an A4 size paper (why, because you get it free at office) with you all the time.
2. During the week if you plan/remember something to do in the weekend, take a quick note of it.
3. While taking note prioritize it and mention the time you are going to do it.
4. Always there would be usual stuff to do, make a list of the same and do the above.
5. If you spend more time shopping groceries and waiting at the cash register, split it by doing some/most during the weekdays. You would at least spend less time waiting at the cash register.
6. If you have community provided laundry rooms use it either on early Saturday or late Sunday, I have observed it stays busy for rest of the weekend.
7. Shuffle your tasks and see which one is time saving, movie to grocery on Friday, and grocery to movie on Sunday etc.
8. Try not to postpone the task; next week would be as busier as this week.
9. If you encounter with any unplanned task (you invited someone as a courtesy and the other fellow took it seriously), see how much time it is taking and how can you avoid it (not the courtesy but the invitation).
10. House cleaning is the most favorite job that everybody loves, if you are the odd man out, hire a housekeeper. Find in craigslist under services. They clean better with nominal fees, worth trying.
11. If you have a party to attend, arrange for the gifts and route to the venue during the week.
12. If you are planning to eat out, try to fix a place beforehand, last minute entry would surely get you food but you would have less choice.
Our Random Articles
- Somdev Devvarman ousts Xavier Malisse 6-1, 3-6,7-6(5)
- How To Choose A Good Online Traffic School
- New Year Wishes 2010
- New Year Wishes
- How to use EXTRACT function with date and time columns
More Links




4 Comments
Material that you are providing is very easy to learn. But it is much better than this , if you ll give the full material of this at ONE LINK.
Thank you
Suresh.
That is right Suresh. This is the reason I have given all the links in one page, please visit this
http://readvitamin.com/teradata/
Hope this helps.
Hi. Can anyone tell me how to extract time from timestamp?
For Example
timestamp=’2008-03-28 14:11:04′
i want time ’14:11:04′ from timestamp through query.
Thanks in advance.
Hi Vaideesh,
If you need only time, you can probably try the following;
SELECT time;
To answer your question you should do something like this.
SELECT CAST(VaideeshTime as time(0)) from timestamp;
VaideeshTime
——–
14:11:04
Hope that helps.