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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi Folks, I am trying to call a

Status
Not open for further replies.

rummage

MIS
Apr 8, 2003
33
0
0
US
Hi Folks,

I am trying to call a SQL stored procedure from WebFocus using two parameters. The parameters are '40709297-9D5F-4D26-BF76-9159F0D664D9','0'

It is giving me two errors.
First when I save this, it says
'One of the line is longer than 80 char. Do you want to save?'
After I save and run, I get the SQL code error 170. Incorrect syntax.

The complete code is the following. Please help me fix it.

SQL SQLMSS
EX GOA01_SQL.dbo.spgoa_GetSummaryDataA '40709297-9D5F-4D26-BF76-9159F0D664D9','0';
TABLE FILE SQLOUT
PRINT *
END
 
LET
NO=40709297-9D5F-4D26-BF76-9159F0D664D9;
END
SQL SQLMSS
EX GOA01_SQL.dbo.spgoa_GetSummaryDataA 'NO','0';
TABLE FILE SQLOUT
PRINT *
END

 
Hi first of all the length of the the line is greater than 80 characters either do it the way Zushi as given solution or try to break that 81 charater line so that you dont exceed 80 charaters.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top