Click here to Skip to main content
15,886,519 members
Home / Discussions / Database
   

Database

 
QuestionAccess Application VS .Net Application Access Behind - How to Decide Pin
Member 1304435510-Mar-17 15:52
Member 1304435510-Mar-17 15:52 
AnswerRe: Access Application VS .Net Application Access Behind - How to Decide Pin
Mycroft Holmes11-Mar-17 13:05
professionalMycroft Holmes11-Mar-17 13:05 
GeneralRe: Access Application VS .Net Application Access Behind - How to Decide Pin
Member 1304435511-Mar-17 14:54
Member 1304435511-Mar-17 14:54 
GeneralRe: Access Application VS .Net Application Access Behind - How to Decide Pin
Mycroft Holmes12-Mar-17 14:31
professionalMycroft Holmes12-Mar-17 14:31 
QuestionFailed Steps of all Jobs and Disabled steps of all Jobs Pin
indian14310-Mar-17 6:30
indian14310-Mar-17 6:30 
AnswerRe: Failed Steps of all Jobs and Disabled steps of all Jobs Pin
ZurdoDev10-Mar-17 7:13
professionalZurdoDev10-Mar-17 7:13 
GeneralRe: Failed Steps of all Jobs and Disabled steps of all Jobs Pin
indian14327-Mar-17 11:04
indian14327-Mar-17 11:04 
Questioncomplilation error on stored procedure using sql??????????????? Pin
Member 130474308-Mar-17 19:48
Member 130474308-Mar-17 19:48 
create or replace procedure updateStudentResult(id int,
m1 in int,
m2 in int,
m3 in int,
tot out int,
avg out float,
grd out char)
as

begin

select marks1,marks2,marks3 into m1,m2,m3 from students where sid=id;

tot:=m1+m2+m3;
avg:=(m1+m2+m3)/3;

if avg >= 85 then
grd:='A';

elsif (avg >= 65) then
grd:='B';

elsif (avg >= 50) then
grd:='C';

else
grd:='D';

end if;
UPDATE students SET
total=tot,
average=avg,
grade=grd
where sid=id;

end;
/
QuestionRe: complilation error on stored procedure using sql??????????????? Pin
Richard MacCutchan8-Mar-17 21:24
mveRichard MacCutchan8-Mar-17 21:24 
Rant[REPOST] complilation error on stored procedure using sql??????????????? Pin
Richard Deeming9-Mar-17 1:20
mveRichard Deeming9-Mar-17 1:20 
AnswerRe: complilation error on stored procedure using sql??????????????? Pin
ZurdoDev9-Mar-17 2:02
professionalZurdoDev9-Mar-17 2:02 
AnswerRe: complilation error on stored procedure using sql??????????????? Pin
ZurdoDev9-Mar-17 9:47
professionalZurdoDev9-Mar-17 9:47 
GeneralRe: complilation error on stored procedure using sql??????????????? Pin
LOKENDRA YADAV9-Mar-17 10:12
LOKENDRA YADAV9-Mar-17 10:12 
GeneralRe: complilation error on stored procedure using sql??????????????? Pin
ZurdoDev9-Mar-17 10:16
professionalZurdoDev9-Mar-17 10:16 
GeneralRe: complilation error on stored procedure using sql??????????????? Pin
LOKENDRA YADAV9-Mar-17 10:23
LOKENDRA YADAV9-Mar-17 10:23 
GeneralRe: complilation error on stored procedure using sql??????????????? Pin
LOKENDRA YADAV9-Mar-17 10:15
LOKENDRA YADAV9-Mar-17 10:15 
GeneralRe: complilation error on stored procedure using sql??????????????? Pin
ZurdoDev9-Mar-17 10:18
professionalZurdoDev9-Mar-17 10:18 
QuestionSQL Pin
Member 111616257-Mar-17 16:34
Member 111616257-Mar-17 16:34 
AnswerRe: SQL Pin
Richard MacCutchan7-Mar-17 23:11
mveRichard MacCutchan7-Mar-17 23:11 
AnswerRe: SQL Pin
ZurdoDev9-Mar-17 9:56
professionalZurdoDev9-Mar-17 9:56 
QuestionHow to create SQL server 2016 localdb using C# code? Pin
w142435-Mar-17 20:47
w142435-Mar-17 20:47 
AnswerRe: How to create SQL server 2016 localdb using C# code? Pin
Chris Quinn5-Mar-17 23:28
Chris Quinn5-Mar-17 23:28 
GeneralRe: How to create SQL server 2016 localdb using C# code? Pin
w142437-Mar-17 22:14
w142437-Mar-17 22:14 
GeneralRe: How to create SQL server 2016 localdb using C# code? Pin
kosmas kafataridis18-Apr-17 1:22
kosmas kafataridis18-Apr-17 1:22 
Questionhow to connect table from database to table from another database? Pin
salm abdullsamad4-Mar-17 6:17
salm abdullsamad4-Mar-17 6: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.