Forum Moderators: open
I have a stored procedure that pulls a specified recordset from the DB. However, I added a field to the table and this field is not being returned in the recordset.
I don't know how to modify the stored procedure or even go in and see exactly what it is that the stored procedure is doing.
Any help would be greatly appreciated.
Thanks very much.
Ben
If all that's in there is a Select statement, then it should be a simple matter to just add the field to the select statement like you would with any query. (Before you start making any changes, make a backup of the original procedure- cut & paste everything into a text file as a minimum so you can quickly paste it back if you've mucked things up badly.)
If it's more complictaed than that, then contract with a SQL programmer or spend some time going through SQL Server Books Online (always a GREAT resource!).
FWIW, a little less than a year ago I didn't have a clue about stored procedures. Now I use them daily.
[edited by: LifeinAsia at 10:50 pm (utc) on Dec. 6, 2006]
I haven't used 2005 yet, but it sounds like they've made things much easier. Thanks for the update!
So now that you've got access, how difficult does the actual code look?
I would recommend SQL Server 2005 Express if you're looking to try something new. It's interface is a bit...odd at first, but it gives quite an array of tools in one place.
Thanks again for your help.