Click here to Skip to main content
15,900,725 members
Home / Discussions / Database
   

Database

 
GeneralRe: Summation in SQL Query Pin
ChandraRam14-Aug-07 3:36
ChandraRam14-Aug-07 3:36 
GeneralRe: Summation in SQL Query Pin
Blue_Boy14-Aug-07 4:52
Blue_Boy14-Aug-07 4:52 
GeneralRe: Summation in SQL Query Pin
ChandraRam14-Aug-07 5:18
ChandraRam14-Aug-07 5:18 
GeneralRe: Summation in SQL Query Pin
Blue_Boy15-Aug-07 0:19
Blue_Boy15-Aug-07 0:19 
GeneralRe: Summation in SQL Query Pin
ChandraRam15-Aug-07 1:20
ChandraRam15-Aug-07 1:20 
GeneralRe: Summation in SQL Query Pin
Blue_Boy15-Aug-07 1:25
Blue_Boy15-Aug-07 1:25 
Questionvariation in the output generated Pin
yuvachandra13-Aug-07 19:55
yuvachandra13-Aug-07 19:55 
AnswerRe: variation in the output generated Pin
Rami Said Abd Alhalim13-Aug-07 20:24
Rami Said Abd Alhalim13-Aug-07 20:24 
if you need return output parameter from stored procedure you must to set word out beside parameter
for example

declare @Time1 datetime
declare @time2 datetime
set @Time1 = '1/1/2001'--if this output parameter set out beside it
set @Time2 = '1/1/2001'

==============================================

exec dbo.Usp_Rpt_Proc1 @time1 out ,@Time2 out

but this solve must used if the two output parameter
CREATE PROCEDURE dbo.Usp_Rpt_Proc1 (@StartDate DateTime output,@EndDate DateTime output)

===============================================


exec dbo.Usp_Rpt_Proc1 @time1 ,@Time2 out

but this solve must used if the one output parameter
CREATE PROCEDURE dbo.Usp_Rpt_Proc1 (@StartDate DateTime ,@EndDate DateTime output)
====================================================
exec dbo.Usp_Rpt_Proc1 @time1 ,@Time2 ,@output out

but this solve must used if the one output parameter
CREATE PROCEDURE dbo.Usp_Rpt_Proc1 (@StartDate DateTime ,@EndDate DateTime ,@output datatype output)

if you need any thing reply

with regards


Rami Abd Alhalim
QuestionSQL db table limit Pin
firestoper13-Aug-07 19:18
firestoper13-Aug-07 19:18 
AnswerRe: SQL db table limit Pin
blakey40413-Aug-07 21:52
blakey40413-Aug-07 21:52 
AnswerRe: SQL db table limit Pin
Ronni Marker14-Aug-07 0:17
Ronni Marker14-Aug-07 0:17 
AnswerRe: SQL db table limit Pin
okdeshpande14-Aug-07 2:06
okdeshpande14-Aug-07 2:06 
AnswerRe: SQL db table limit Pin
firestoper14-Aug-07 15:09
firestoper14-Aug-07 15:09 
QuestionDate format problem Pin
Prashant C13-Aug-07 17:47
Prashant C13-Aug-07 17:47 
AnswerRe: Date format problem Pin
Krish - KP13-Aug-07 18:14
Krish - KP13-Aug-07 18:14 
QuestionMSSQL output order Pin
mvyjim13-Aug-07 8:12
mvyjim13-Aug-07 8:12 
AnswerRe: MSSQL output order Pin
Giorgi Dalakishvili13-Aug-07 8:24
mentorGiorgi Dalakishvili13-Aug-07 8:24 
GeneralRe: MSSQL output order Pin
mvyjim13-Aug-07 10:56
mvyjim13-Aug-07 10:56 
QuestionDay of week Pin
kibromg13-Aug-07 5:22
kibromg13-Aug-07 5:22 
AnswerRe: Day of week Pin
DerekFL13-Aug-07 5:48
DerekFL13-Aug-07 5:48 
GeneralRe: Day of week Pin
kibromg13-Aug-07 6:32
kibromg13-Aug-07 6:32 
QuestionCLR WebService Access Pin
DerekFL13-Aug-07 5:21
DerekFL13-Aug-07 5:21 
Questionsqlserver2005 [modified] Pin
saravanan0513-Aug-07 1:56
saravanan0513-Aug-07 1:56 
AnswerRe: sqlserver2000 Pin
Pete O'Hanlon13-Aug-07 2:04
mvePete O'Hanlon13-Aug-07 2:04 
QuestionUnexpected existing transaction --> error Pin
Jagadeesh Jupalli12-Aug-07 23:14
Jagadeesh Jupalli12-Aug-07 23:14 

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.