I have a sybase stored procedure which is having an issue.
Here If I use the insert statement directly the insert works perfectly as shown:
insert
into dbo.StudentData
( studID
, studLetters
, studCode
, studTelecast
, studName
, monthCode
, reportDate
, startTime
, endTime
, startDateTime
, endDateTime
, cost
, duration
, creationTime
)
values
( 113
, 'ABCD'
, 222
, 333
, 'One'
, 02
, getDate()
, getdate()
, getdate()
, getdate()
, getdate()
, 999
, 11
, getdate()
)
;
But if I use the stored proc I'm getting the following error :
[EXEC - 0 row(s), 0.000 secs] [Error Code: 102, SQL State: 42000] Incorrect syntax near ')'.
exec dbo.sp_loadStudData(113, 'ABCD', 222, 333, 'One', 02, getDate(), getdate(), getdate(), getdate(), getdate(), 999, 11, getdate() )
I am not able to find out what the issue is but the stored proc got created successfully without any errors. The stored Proc is as foll:
create proc dbo.sp_loadStudData
(
@studID int,
@studLetters varchar(255),
@studCode int,
@studTelecast int,
@studName varchar(25),
@monthCode int,
@reportDate datetime,
@startTime datetime,
@endTime datetime,
@startDateTime datetime,
@endDateTime datetime,
@cost int,
@duration int,
@creationTime datetime
)
as
begin
set nocount on
insert into dbo.StudentData(studID,studLetters,studCode ,studTelecast ,studName ,monthCode,reportDate,startTime,endTime,startDateTime,endDateTime,cost,duration,creationTime)
values(@studID,@studLetters,@studCode ,@studTelecast ,@studName ,@monthCode,@reportDate,@startTime,@endTime,@startDateTime,@endDateTime,@cost,@duration,@creationTime)
end
go
EXEC sp_procxmode 'dbo.sp_loadStudData', 'unchained'
go
IF OBJECT_ID('dbo.sp_loadStudData') IS NOT NULL
PRINT '<<< CREATED PROCEDURE dbo.sp_loadStudData >>>'
ELSE
PRINT '<<< FAILED CREATING PROCEDURE dbo.sp_loadStudData >>>'
go
GRANT EXECUTE ON dbo.sp_loadStudData TO developers
go
GRANT EXECUTE ON dbo.sp_loadStudData TO web_group
go
GRANT EXECUTE ON dbo.sp_loadStudData TO crd_group
go
GRANT EXECUTE ON dbo.sp_loadStudData TO wd_group
go