Click here to Skip to main content
15,890,670 members
Home / Discussions / Database
   

Database

 
AnswerRe: moving column in sql Pin
GenJerDan10-Jun-11 11:21
GenJerDan10-Jun-11 11:21 
AnswerRe: moving column in sql Pin
David Skelly12-Jun-11 22:40
David Skelly12-Jun-11 22:40 
GeneralRe: moving column in sql Pin
Milad.Biroonvand13-Jun-11 7:50
Milad.Biroonvand13-Jun-11 7:50 
AnswerRe: moving column in sql Pin
thatraja13-Jun-11 0:03
professionalthatraja13-Jun-11 0:03 
GeneralRe: moving column in sql Pin
Milad.Biroonvand13-Jun-11 7:53
Milad.Biroonvand13-Jun-11 7:53 
GeneralRe: moving column in sql Pin
Pete O'Hanlon13-Jun-11 9:01
mvePete O'Hanlon13-Jun-11 9:01 
QuestionGet Percentages Of Rows With Date In Them - Grouped Pin
Kevin Marois10-Jun-11 5:48
professionalKevin Marois10-Jun-11 5:48 
QuestionSQL Function problem Pin
Etienne_12310-Jun-11 0:07
Etienne_12310-Jun-11 0:07 
Anyone have any ideas why this won't work? I just want to check whether some fields are not null before I set the value of @UserName

IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = Object_ID('[dbo].[__Reporting_GetUserName]') 
AND type in (N'FN', N'IF', N'TF', N'FS', N'FT'))
BEGIN
DROP FUNCTION [dbo].[__Reporting_GetUserName]
END

BEGIN
EXEC dbo.sp_executesql N'
CREATE FUNCTION [dbo].[__Reporting_GetUserName] (@userId int)
RETURNS VARCHAR(MAX)
AS
BEGIN

DECLARE @UserName VARCHAR(MAX)

SET @UserName = 
(
	IF [FirstName] is not null 
	BEGIN
	SELECT [FirstName] + '' '' + [LastName]
	FROM __User
	WHERE Id = @userId
	END
)

RETURN @UserName
END
'
END

AnswerRe: SQL Function problem Pin
PIEBALDconsult10-Jun-11 2:47
mvePIEBALDconsult10-Jun-11 2:47 
AnswerRe: SQL Function problem Pin
Eddy Vluggen10-Jun-11 6:18
professionalEddy Vluggen10-Jun-11 6:18 
QuestionSQL with variable amounts of fields Pin
Expert Coming9-Jun-11 19:58
Expert Coming9-Jun-11 19:58 
AnswerRe: SQL with variable amounts of fields Pin
Roman_wolf10-Jun-11 3:44
Roman_wolf10-Jun-11 3:44 
GeneralRe: SQL with variable amounts of fields Pin
Expert Coming10-Jun-11 12:02
Expert Coming10-Jun-11 12:02 
AnswerRe: SQL with variable amounts of fields Pin
David Skelly12-Jun-11 22:38
David Skelly12-Jun-11 22:38 
QuestionSQL 2005 Pin
lyngocquy9-Jun-11 7:05
lyngocquy9-Jun-11 7:05 
AnswerRe: SQL 2005 Pin
jschell9-Jun-11 8:14
jschell9-Jun-11 8:14 
GeneralRe: SQL 2005 Pin
lyngocquy9-Jun-11 9:15
lyngocquy9-Jun-11 9:15 
GeneralRe: SQL 2005 Pin
Mycroft Holmes9-Jun-11 14:26
professionalMycroft Holmes9-Jun-11 14:26 
GeneralRe: SQL 2005 Pin
jschell10-Jun-11 12:38
jschell10-Jun-11 12:38 
AnswerRe: SQL 2005 Pin
AspDotNetDev9-Jun-11 8:16
protectorAspDotNetDev9-Jun-11 8:16 
AnswerRe: SQL 2005 Pin
Eddy Vluggen9-Jun-11 10:23
professionalEddy Vluggen9-Jun-11 10:23 
QuestionAccess AS SQL Front End Pin
mjackson119-Jun-11 5:03
mjackson119-Jun-11 5:03 
AnswerRe: Access AS SQL Front End Pin
Nagy Vilmos9-Jun-11 5:41
professionalNagy Vilmos9-Jun-11 5:41 
AnswerSample Code Pin
David Mujica9-Jun-11 7:56
David Mujica9-Jun-11 7:56 
JokeRe: Sample Code Pin
Mycroft Holmes9-Jun-11 14:17
professionalMycroft Holmes9-Jun-11 14:17 

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.