Monday, 31 October 2016
Business in A.P and Telangana
Sunday, 30 October 2016
Thought of the day
Saturday, 29 October 2016
How can I achieve Peaceful mind?
Yes, you are aware of all stereotypical methods to get peaceful mind, but here is available some non-conventional methods. That is "Ignore", if you simply ignore what other people think about you, you can have 99℅ chances to achieve peace.
Also do not try to impress everybody since it's very tough job to satisfy and win everyone, for that you need to waste time,money or both in some cases. If you no more required to impress others you are saving that time. Do some useful work with that time.
Make yourself busy with something to avoid some talkative people and non sense debates on politics and movies and especially on third person.
Thursday, 27 October 2016
Thought of the Day
It's better to follow your own path imperfectly, than following others path perfectly. - Bagavad Gita.
Monday, 17 October 2016
How to find table wise list of column in Teradata
Example:-
SELECT * FROM DBC.COLUMNS;
Above query will show all the tables and their columns.
If you know the table or view name then you can specify that in the where condition.
Example:-
SEKECT * FROM SBC.COLUMNS
WHERE TABLENAME = 'TABLE_NAME';