Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to save details of resume/CV into Sql Server - 2008. Document is in word file or pdf file only.

like, In Database I have field likes Education, Experience, Skill etc.. then in CV If I find words likes Education, Experience, Skill etc.. then I want to fetch all information about these fields.

So how can I fetch information about those fields? and How can I find that particular details was over for example Education, Experience, Skill etc..?


hello ,

I need to make the application like any one upload their cv or resume on my site and display the information same like naukri.com for example i want to fetch the education information from cv and put separately into page region then how can i fetch that information. similary i want to get experience information from cv the how i get that ?

My Question is for example how i indetify the eduction information start from one location and end for particular location in cv.

hope you understand my problem.

share|improve this question
Are you asking how you would set up the database schema? – jamesj Nov 22 '12 at 12:09
wooooooohaaaaaaat? you really need to explain better. – jrb Nov 22 '12 at 12:09
What have you tried? – Dan Puzey Nov 22 '12 at 12:09
2  
Use a PDF and a Word parser, figure out some heuristics to extract the data from the myriad different ways people write their CVs, and put them into your database. – Oded Nov 22 '12 at 12:10

closed as not a real question by Jan, Mahmoud Gamal, Oded, user714965, E.J. Brennan Nov 22 '12 at 12:53

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

So you basically want to readout a pdf and save the data in the database ?

If my assumption is correct you can use itext to read out a pdf and save the data to your database.All of these requires a bit knowledge in java and db scripts.

I have used itext api in a Java EE framework.if it helps have look on my example below

itext example

share|improve this answer
Your assumption was right. But as my question for example how i indetify the eduction information start from one location and end for particular location in cv. and not only for pdf, it must works for word document also. – user1844846 Nov 22 '12 at 12:45
@user1844846 msdn.microsoft.com/en-us/library/… – J... Nov 22 '12 at 13:11

Not the answer you're looking for? Browse other questions tagged or ask your own question.