Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi, I am trying to execute a SQL

Status
Not open for further replies.

rummage

MIS
Apr 8, 2003
33
US
Hi,

I am trying to execute a SQL Server Stored procedure from WebFocus. The SQL stored procedure inserts a row in one of the tables in the databse. My code is as follows

SQL SQLMSS BEGIN SESSION

EX GOA01_SQL.dbo.spgoa_Insert_DPCIOfInterest
'E0C7EBAA-1236-4AE5-ABD3-01DF39E135A3','81','7','';

SQL SQLMSS END SESSION

There are four parameters to this stored procedure. But after executing the procedure, the insertion of the row did not take place. There is no display of error. But the code has failed. What could be the reason?

Thanks
Thambaiya
 
Test this :

SQL SQLMSS

EX GOA01_SQL.dbo.spgoa_Insert_DPCIOfInterest
'E0C7EBAA-1236-4AE5-ABD3-01DF39E135A3','81','7','';

END
 
Thanks FOCMAN. Now the code work. I rally thank you for all your help.

Thambaiya
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top