Click here to Skip to main content
15,902,112 members
Home / Discussions / Database
   

Database

 
AnswerRe: tables Pin
Pete O'Hanlon11-Jun-08 10:49
mvePete O'Hanlon11-Jun-08 10:49 
AnswerRe: tables Pin
Christian Graus11-Jun-08 11:38
protectorChristian Graus11-Jun-08 11:38 
QuestionDatabase fields for forum project Pin
Shanmugapriya.G11-Jun-08 3:04
Shanmugapriya.G11-Jun-08 3:04 
AnswerRe: Database fields for forum project Pin
Ashfield11-Jun-08 4:40
Ashfield11-Jun-08 4:40 
AnswerRe: Database fields for forum project Pin
Colin Angus Mackay11-Jun-08 5:03
Colin Angus Mackay11-Jun-08 5:03 
GeneralRe: Database fields for forum project Pin
Pete O'Hanlon11-Jun-08 8:50
mvePete O'Hanlon11-Jun-08 8:50 
Questiona child row has multiple parents [modified] Pin
Kjetil Svendsen11-Jun-08 2:17
Kjetil Svendsen11-Jun-08 2:17 
QuestionStored Procedures Out Put Parameter Returns Null What is missed. Pin
greekius11-Jun-08 2:17
greekius11-Jun-08 2:17 
I created a table for keeping Configuration parameters. When i wanna get the value via stored proc, i got null. Could u check me my stored procedure pls.

CREATE PROCEDURE [dbo].[sp_GetConfigurationParameter]
@Key char(4),
@Type char(4),
@Value nchar   OUTPUT
AS
SET NOCOUNT ON;
SELECT @Value=[Value] FROM VpConfParameters WHERE [Type]=@Type AND [Key]=@Key


To Try
declare @Value nchar
EXEC [sp_GetConfigurationParameter] 'DBNL','DEVE',@Value
select @Value


Result
NULL :'(
AnswerRe: Stored Procedures Out Put Parameter Returns Null What is missed. Pin
SomeGuyThatIsMe11-Jun-08 2:43
SomeGuyThatIsMe11-Jun-08 2:43 
GeneralRe: Stored Procedures Out Put Parameter Returns Null What is missed. Pin
greekius11-Jun-08 3:02
greekius11-Jun-08 3:02 
GeneralRe: Stored Procedures Out Put Parameter Returns Null What is missed. Pin
SomeGuyThatIsMe11-Jun-08 4:18
SomeGuyThatIsMe11-Jun-08 4:18 
AnswerRe: Stored Procedures Out Put Parameter Returns Null What is missed. Pin
Ashfield11-Jun-08 4:45
Ashfield11-Jun-08 4:45 
QuestionMixing Select Into and Appending Data Pin
prithaa11-Jun-08 1:00
prithaa11-Jun-08 1:00 
AnswerRe: Mixing Select Into and Appending Data Pin
Ashfield11-Jun-08 2:56
Ashfield11-Jun-08 2:56 
GeneralRe: Mixing Select Into and Appending Data Pin
prithaa11-Jun-08 5:49
prithaa11-Jun-08 5:49 
GeneralRe: Mixing Select Into and Appending Data Pin
prithaa11-Jun-08 6:37
prithaa11-Jun-08 6:37 
GeneralRe: Mixing Select Into and Appending Data Pin
prithaa11-Jun-08 7:19
prithaa11-Jun-08 7:19 
QuestionConnect to DB2 database Pin
Sankalp Verma11-Jun-08 0:47
Sankalp Verma11-Jun-08 0:47 
AnswerRe: Connect to DB2 database Pin
Vasudevan Deepak Kumar11-Jun-08 1:22
Vasudevan Deepak Kumar11-Jun-08 1:22 
QuestionConvert crystal report to text file Pin
Krazy Programmer10-Jun-08 21:29
Krazy Programmer10-Jun-08 21:29 
Questionupdate same table in 3 different databases Pin
Dushan12310-Jun-08 20:05
Dushan12310-Jun-08 20:05 
AnswerRe: update same table in 3 different databases Pin
Ashfield10-Jun-08 21:02
Ashfield10-Jun-08 21:02 
GeneralRe: update same table in 3 different databases Pin
Dushan12310-Jun-08 23:47
Dushan12310-Jun-08 23:47 
GeneralRe: update same table in 3 different databases Pin
Ashfield11-Jun-08 3:02
Ashfield11-Jun-08 3:02 
GeneralRe: update same table in 3 different databases Pin
Dushan12311-Jun-08 3:30
Dushan12311-Jun-08 3:30 

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.