Viewing 8 posts - 1 through 8 (of 8 total)
I got a solution through msdn forums. For those who are interested.
search query with results into #matches
open a CURSOR on the #matches table
FETCH ...............
WHILE @@FETCH_STATUS = 0
BEGIN
Code SnippetEXEC msdb.dbo.sp_send_dbmail@recipients=N'developercharlie@gmail.com',@body='Message...
June 23, 2008 at 5:53 am
I am working on a Job Portal
This is the scenario.
I have word Document Saved (resume of the Candidate) in one Table and another Title (Resume Header) column thats saved in...
June 18, 2008 at 5:17 am
I found a solution through another form member. for those who have the same issue please go thru the following link
June 18, 2008 at 3:00 am
samples of query given below
----------------------------------------------------------------------
Select a.intJobPostingID, b.strCompanyName,a.strJobTitle,a.strJobDesc,
c.strCity,dbo.fnState(c.intState,c.intCountry) as 'intState',
Convert(varchar,a.dtAuditDate,101) as 'dtAuditDate',
Convert(varchar,A.dtExpDate,101) as 'dtExpDate'
from tblJobPosting a
left join tblCompany b on a.intCompanyID = b.intCompanyID
left Join tblJobPostingCon c on a.intJobPostingID = c.intJobPostingID
where a.boolActive...
June 16, 2008 at 4:47 am
Script Tree is missing in my setup
May 9, 2008 at 6:18 am
Script Drop is missing in my Generate Script wizard. Can anyone tell me how to include this option in my wizard
May 9, 2008 at 6:14 am
The details given above are from Management STudio ----->Help---About. I do get the version mentioned by you next to my SQL instance in Management studio. What should I do to...
May 9, 2008 at 6:02 am
I have SQL Server 2005 SP2 installed partially. Few features didn't install.
I donot get Create drop statements before Create statements scripts in Generate Script Wizard
Details of my SQL are...
May 9, 2008 at 5:53 am
Viewing 8 posts - 1 through 8 (of 8 total)