Click to See Complete Forum and Search --> : stored procedures


Lynn
October 5th, 1999, 01:58 AM
Hi
Can anyone give me an example of how to create a stored procedure using data view from scratch? Are there any debuggers for stored procedures? I keep getting error messages for my procedures.
Lynn

Lothar Haensler
October 5th, 1999, 03:23 AM
sample:

Create Procedure Helloworld
as
print "Hello,world"




VB 6 comes with a TSQL Debugger - that I have never used... AFAIK it's an Add-In.
You need to have a syntactically correct SP before you can debug it, though.