Tuesday, October 11, 2011

Hcl training

for meow

c interview:

1. http://www.mitkota.com/c-interview-questions-techpreparation.pdf
2.http://www.techinterviews.com/c-interview-questions-and-answers-3

C++ :

1. http://www.shettysoft.com/interview/C_C++_interview_questions_answers.htm

Sunday, October 9, 2011

Sql query for find the coloum name in whole database

Hi

Sql query for finding the colum name in whole database

SELECT t.name AS table_name,
SCHEMA_NAME(schema_id) AS schema_name,
c.name AS column_name
FROM sys.tables AS t
INNER JOIN sys.columns c ON t.OBJECT_ID = c.OBJECT_ID
WHERE c.name LIKE '%move_id%'
ORDER BY schema_name, table_name

Wednesday, October 5, 2011

1. http://www.mobile-application-developers.net/2011/07/android-programming-tutorial-best-for-beginners/