Click here to Skip to main content
15,895,192 members
Home / Discussions / Database
   

Database

 
GeneralRe: SQL Server Stored Procedure Encryption Pin
SimulationofSai14-Apr-08 23:46
SimulationofSai14-Apr-08 23:46 
GeneralRe: SQL Server Stored Procedure Encryption Pin
Syed Mujtaba Hassan15-Apr-08 2:15
Syed Mujtaba Hassan15-Apr-08 2:15 
QuestionSQL If statement Pin
jonhbt14-Apr-08 7:20
jonhbt14-Apr-08 7:20 
GeneralRe: SQL If statement Pin
Blue_Boy14-Apr-08 7:31
Blue_Boy14-Apr-08 7:31 
AnswerRe: SQL If statement Pin
Zoltan Balazs14-Apr-08 7:48
Zoltan Balazs14-Apr-08 7:48 
AnswerRe: SQL If statement Pin
Ashfield15-Apr-08 1:32
Ashfield15-Apr-08 1:32 
GeneralMsg 8162: Formal parameter was defined as OUTPUT but the actual parameter not declared OUTPUT Pin
Sivu14-Apr-08 5:10
Sivu14-Apr-08 5:10 
GeneralRe: Msg 8162: Formal parameter was defined as OUTPUT but the actual parameter not declared OUTPUT Pin
Mark J. Miller14-Apr-08 6:20
Mark J. Miller14-Apr-08 6:20 
Based on your post, I can't tell what's happening. I copied and pasted your snippet and it runs fine (see below). Maybe you could post the entire header along with the code you're using to call the procedure it might be easier to help figure out what's wrong.

Here's what I tried:
<br />
CREATE PROCEDURE [GV_SUPP_VALUATION_EDIT]<br />
@ACTIVE_USER_ID INTEGER = 0, <br />
@VALUATION_ID INTEGER = 0,<br />
@ACTION VARCHAR(50) = 'SAVE', <br />
@ERROR VARCHAR(500) = '' OUTPUT<br />
AS<br />
PRINT 'PROCEDURE [SDE].[GV_SUPP_VALUATION_EDIT]'<br />
go<br />
<br />
DECLARE @ERROR VARCHAR(500)<br />
EXEC [GV_SUPP_VALUATION_EDIT] 0, <br />
0,<br />
'SAVE', <br />
@ERROR OUTPUT<br />


Mark's blog: developMENTALmadness.blogspot.com

Funniest variable name:
lLongDong - spotted in legacy code, was used to determine how long a beep should be.
- Dave Bacher

GeneralRe: Msg 8162: Formal parameter was defined as OUTPUT but the actual parameter not declared OUTPUT Pin
Sivu14-Apr-08 6:35
Sivu14-Apr-08 6:35 
GeneralRe: Msg 8162: Formal parameter was defined as OUTPUT but the actual parameter not declared OUTPUT Pin
Sivu14-Apr-08 6:33
Sivu14-Apr-08 6:33 
GeneralRetrieving the value of an autonumber is Delete sql statement Pin
Quinton13-Apr-08 23:49
Quinton13-Apr-08 23:49 
GeneralRe: Retrieving the value of an autonumber is Delete sql statement Pin
Blue_Boy14-Apr-08 0:06
Blue_Boy14-Apr-08 0:06 
GeneralRe: Retrieving the value of an autonumber is Delete sql statement Pin
ChandraRam14-Apr-08 19:59
ChandraRam14-Apr-08 19:59 
Questionis Microsoft.ApplicationBlocks.Data.dll compatible in VS2005? Pin
Mustanseer M S13-Apr-08 21:16
Mustanseer M S13-Apr-08 21:16 
AnswerRe: is Microsoft.ApplicationBlocks.Data.dll compatible in VS2005? Pin
Pete O'Hanlon13-Apr-08 22:17
mvePete O'Hanlon13-Apr-08 22:17 
GeneralWHERE Filter Pin
swjam13-Apr-08 19:25
swjam13-Apr-08 19:25 
GeneralRe: WHERE Filter Pin
Sivu14-Apr-08 19:39
Sivu14-Apr-08 19:39 
GeneralImceda SQL IDE Pin
Derec Roofie13-Apr-08 0:58
Derec Roofie13-Apr-08 0:58 
GeneralRe: Imceda SQL IDE Pin
Pete O'Hanlon13-Apr-08 10:17
mvePete O'Hanlon13-Apr-08 10:17 
GeneralUrgent!! Pin
dheka12-Apr-08 2:13
dheka12-Apr-08 2:13 
GeneralRe: Urgent!! Pin
Mycroft Holmes13-Apr-08 15:32
professionalMycroft Holmes13-Apr-08 15:32 
GeneralRe: Urgent!! Pin
DerekFL14-Apr-08 4:04
DerekFL14-Apr-08 4:04 
GeneralIdentity Field Overuse vs. Bad Primary Keys Pin
ClarenceJr11-Apr-08 5:38
ClarenceJr11-Apr-08 5:38 
GeneralRe: Identity Field Overuse vs. Bad Primary Keys Pin
Michael Potter11-Apr-08 5:56
Michael Potter11-Apr-08 5:56 
GeneralRe: Identity Field Overuse vs. Bad Primary Keys Pin
Mark J. Miller11-Apr-08 9:34
Mark J. Miller11-Apr-08 9:34 

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.