Posts

Showing posts from October, 2014

How to give a job-winning interview

The way to crack a job interview is not just by giving answers, but the ‘right’ answers. Here are some important tips on how to get it right Create a strong resume. Build a compelling case on why you fit the job role: The process of giving a job winning interview starts by forming a strong resume. A resume works as an entrance test to get an interview. A person’s resume should be concise and convey more in fewer words. For example, instead of saying, “I am an exceptional guitarist”, one can say, “I was the lead guitarist of an award winning rock band back in college”. Do your primary research on your potential employer Every recruiter expects you to have some basic knowledge about the organization and the industry that you are contemplating joining. Hence, it is advisable to do a primary research before going. After all, the employer has a lot of information about the applicant, so it’s only polite if the applicant evens the score. Hig

How to find the Table name if field name is known (Progress4GL)

Below query will be used to find the Table name if field name is known. We have taken the example of field idh_part. /**************************************************/ find first _field no-lock where _Field-name = "idh_part" . if avail _field then do:    find first _file no-lock where RECID(_File) = _Field._File-Recid .       if avail _file then             DISPLAY _File-name _Field-name.     end. /*************************************************/