Click here to Skip to main content
15,891,248 members
Articles / Web Development / ASP.NET

Dynamic HTML Page creation & Search through Free Text and Meta Tags of HTML by Using Index Server

Rate me:
Please Sign up or sign in to vote.
3.73/5 (7 votes)
1 Aug 20034 min read 99.1K   929   28  
The article mainly focuses on the problem faced in jobs portal to provide the mechanism to employers/recruiters to search job seeker’s uploaded and created resumes on the basis of given template, and vice versa for the job seekers to search the jobs on the basis of the specified criteria.
��/****** Object:  Stored Procedure dbo.usp_Profile_Save    Script Date: 8/6/2003 9:52:30 AM ******/

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[usp_Profile_Save]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)

drop procedure [dbo].[usp_Profile_Save]

GO



SET QUOTED_IDENTIFIER ON 

GO

SET ANSI_NULLS ON 

GO



/****** Object:  Stored Procedure dbo.usp_Profile_Save    Script Date: 8/6/2003 9:52:31 AM ******/





CREATE  PROCEDURE usp_Profile_Save

-- Parameters of usp_Profile_Save

      

	@P_strName varchar(50),

	@P_strEmail varchar(50),

	@P_strPhone varchar(50),

	@P_strHomeLocation varchar(50),

	@P_bWillingToRelocate varchar(50),

	@P_strMaximumCommute varchar(50),

        @P_bIsEmployeed varchar(50),

	@P_strJobTitle varchar(50),

	@P_strExperience varchar(50),

	@P_bSecurityClearenceRequired varchar(50),

	@P_strHighestDegree varchar(50),

	@P_strSpokenLanugage varchar(50),

	@P_strCertifications varchar(50),

	@P_strDesiredJobType varchar(50),

	@P_strDesiredPay varchar(50),

	@P_strShiftPreference varchar(50),

	@P_strInterest varchar(200),

	@P_strSummary varchar(500),

	@P_nUserId INT,

        @P_OUT_nProfileId INT OUTPUT



/****************************************************************************

*Procedure Name : usp_Profile_Save

*

*Auther: Syed Adnan Ahmed  on 07/22/2003

*

*____________________________________________________________________________

*Param Name			Type	      	Length

*____________________________________________________________________________

	-- Parameters of usp_Profile_Save



        @P_strName                    varchar(50)

	@P_strEmail                   varchar(50)

	@P_strPhone                   varchar(50)

	@P_strHomeLocation            varchar(50)

	@P_bWillingToRelocate         varchar(50)

	@P_strMaximumCommute          varchar(50)

        @P_bIsEmployeed               varchar(50)

	@P_strJobTitle                varchar(50)

	@P_strExperience              varchar(50)

	@P_bSecurityClearenceRequired varchar(50)

	@P_strHighestDegree           varchar(50)

	@P_strSpokenLanugage          varchar(50)

	@P_strCertifications          varchar(50)

	@P_strDesiredJobType          varchar(50)

	@P_strDesiredPay              varchar(50)

	@P_strShiftPreference         varchar(50)

	@P_strInterest                varchar(200)

	@P_strSummary                 varchar(500)

	@P_nUserId                    INT

*

*

*____________________________________________________________________________

*

*Note:

*

*Tables Accessed:  tblProfile

*

*Stored Procedure Accessed: -None-

*

*Temp tables created and used:	-None-

*

*Reture Value: -None-

*

*Any Special Notes: 

*

*Revision#1    

*

*

***************************************************************************/

AS

 SET NOCOUNT ON



	INSERT INTO tblProfile

	VALUES (

	@P_strName,

	@P_strEmail,

	@P_strPhone ,

	@P_strHomeLocation,

	@P_bWillingToRelocate,

	@P_strMaximumCommute ,

        @P_bIsEmployeed ,

	@P_strJobTitle ,

	@P_strExperience,

	@P_bSecurityClearenceRequired,

	@P_strHighestDegree,

	@P_strSpokenLanugage,

	@P_strCertifications ,

	@P_strDesiredJobType,

	@P_strDesiredPay ,

	@P_strShiftPreference,

	@P_strInterest ,

	@P_strSummary ,

	@P_nUserId 

	)



SET @P_OUT_nProfileId = @@IDENTITY

RETURN @P_OUT_nProfileId





GO



SET QUOTED_IDENTIFIER OFF 

GO

SET ANSI_NULLS ON 

GO



By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Architect Version 1
Ireland Ireland
Adnan Ahmed is SharePoint Architect in Version 1(http://www.version1.com), the IT Consulting Company in Ireland and has involved with many large enterprises to help them realise real benefits of SharePoint 2007|2010.

SharePoint Architect | Blogger | IT Evangelist | MCPD SharePoint 2010 Developer| MCITP SharePoint Administrator 2010

Email: adnan.ahmed@live.ie
Owner: http://www.mossgurus.com
http://www.sp-blogs.com
Linked In Profile: http://www.linkedin.com/in/syedadnanahmed

My Blogs:
http://www.sp-blogs.com/blogs/adnan

Comments and Discussions