Click here to Skip to main content
15,918,808 members
Home / Discussions / Database
   

Database

 
AnswerRe: Attach Database sql server 2000 Pin
Nouman Bhatti12-Aug-07 21:28
Nouman Bhatti12-Aug-07 21:28 
QuestionAdd/Update error Pin
Shaimmaa12-Aug-07 1:17
Shaimmaa12-Aug-07 1:17 
AnswerRe: Add/Update error Pin
Colin Angus Mackay12-Aug-07 3:51
Colin Angus Mackay12-Aug-07 3:51 
Questionprocedure or function "procedure name" has too many argument specified Pin
isiran12-Aug-07 0:35
isiran12-Aug-07 0:35 
AnswerRe: procedure or function "procedure name" has too many argument specified Pin
Colin Angus Mackay12-Aug-07 3:50
Colin Angus Mackay12-Aug-07 3:50 
Questionschedule a job Pin
Vipin.d11-Aug-07 23:39
Vipin.d11-Aug-07 23:39 
AnswerRe: schedule a job Pin
VK-Cadec30-Aug-07 9:50
VK-Cadec30-Aug-07 9:50 
QuestionCan anyone explain me this code Pin
NetBot11-Aug-07 4:20
NetBot11-Aug-07 4:20 
Hey ppl, can anyone explain me this code.


SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO







ALTER FUNCTION dbo.JoinBase(@JID INT) RETURNS VARCHAR(200)
AS
BEGIN
DECLARE @JEX VARCHAR(200),
@Qualification VARCHAR(20)

DECLARE c1 CURSOR LOCAL FAST_FORWARD FOR
select enb from I_EM inner join Ew on I_EM.e_id=Ew.e_id and empid=@JID
ORDER BY e_name
OPEN c1
WHILE (@@FETCH_STATUS = 0)
BEGIN
FETCH c1 INTO @Qual
IF (@@FETCH_STATUS = 0)
BEGIN
SET @JEX = IsNull(@JEX + ',', '') + @Qual
END
END
CLOSE c1

RETURN @JEX
END







GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO



and what does this ISNULL do????
pls help somebuddy..Sigh | :sigh:
AnswerRe: Can anyone explain me this code Pin
Colin Angus Mackay11-Aug-07 8:40
Colin Angus Mackay11-Aug-07 8:40 
GeneralRe: Can anyone explain me this code Pin
NetBot11-Aug-07 10:03
NetBot11-Aug-07 10:03 
AnswerRe: Can anyone explain me this code Pin
Colin Angus Mackay11-Aug-07 10:15
Colin Angus Mackay11-Aug-07 10:15 
AnswerRe: Can anyone explain me this code Pin
negli11-Aug-07 14:27
negli11-Aug-07 14:27 
GeneralRe: Can anyone explain me this code Pin
Colin Angus Mackay12-Aug-07 3:46
Colin Angus Mackay12-Aug-07 3:46 
AnswerRe: Can anyone explain me this code Pin
Rami Said Abd Alhalim11-Aug-07 22:37
Rami Said Abd Alhalim11-Aug-07 22:37 
QuestionSQL Query Prob Pin
Amit Kumar G11-Aug-07 2:14
Amit Kumar G11-Aug-07 2:14 
AnswerRe: SQL Query Prob Pin
Krish - KP12-Aug-07 18:23
Krish - KP12-Aug-07 18:23 
QuestionMS SQL 2005 Pin
raneesh c10-Aug-07 21:35
raneesh c10-Aug-07 21:35 
AnswerRe: MS SQL 2005 Pin
Paul Conrad11-Aug-07 4:46
professionalPaul Conrad11-Aug-07 4:46 
QuestionGrouping Problem In SQL Server Pin
R.S.Hegde10-Aug-07 20:01
R.S.Hegde10-Aug-07 20:01 
AnswerRe: Grouping Problem In SQL Server Pin
Rami Said Abd Alhalim10-Aug-07 21:38
Rami Said Abd Alhalim10-Aug-07 21:38 
AnswerSenthil' S reply for Grouping Problem In SQL Server Pin
Senthil S10-Aug-07 21:54
Senthil S10-Aug-07 21:54 
QuestionHow to auto generate custom Id value..., Pin
Member 387988110-Aug-07 18:41
Member 387988110-Aug-07 18:41 
AnswerSenthil'S Reply How to auto generate custom Id value..., Pin
Senthil S10-Aug-07 21:02
Senthil S10-Aug-07 21:02 
AnswerRe: How to auto generate custom Id value..., Pin
Rami Said Abd Alhalim10-Aug-07 22:07
Rami Said Abd Alhalim10-Aug-07 22:07 
Question[ADO.NET/C#] result of a function Pin
Mwambe10-Aug-07 3:36
Mwambe10-Aug-07 3:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.