For every result there is a process and a formula and for every successful outcome there are three major inputs we need; a bit of hard work, a bit of patience and Time.
Although most of the time we start something with a great deal of enthusiasm but we do not continue to have the same spirit as the time goes by and sometimes we even stop having this excitement entirely. Remember,”To win a race you have to first complete it”. Same branch of philosophy applies to most of the endeavours. So keep doing the same thing for sometime and that itself would give you newer ideas and you yourself would find-out ways to make the best out of it. Not all failures are failures until you give this status to it. So work a little harder to make success out of it and you will see you will laugh on your unsuccessful attempts.
Like the case of “Rome”, which was built overnight, not all the efforts gives instantaneous results. One has to be a bit patient after putting all the hard work that one could possibly put. Remember wise man says “patience pays” and it is true and most of the time it pays with interest. So waiting for sometime would not harm but it would let you cool down and get ready for the next race.
One last but not least, factor is “Time”. While carving, give time to your sculpture and see how beautiful it is coming out. But again it does not mean that you have to sit idle and wait for the rain to come and you go shopping umbrella. Get prepared, be sure what you are going to do when you achieve what you want to achieve. It is the opportunity knocking on your door, if you loose you have to wait again. Give reasonable time, if you do not see any positive results, perhaps you would need revisit your plan of action list.
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.