i tried answering this a few hours ago, but HOF seems to have eaten my mail, so here goes again: >Michael, > >1) Your proc is incorrect (that's what the error message is >complaining about). You need to fix a few things: > - don't use both AS and IS in the same declaration (just AS) > - no output parameters (the proc needs to get something >back to you) > - the select needs to be INTO an output param (or you >need to OPEN a cursor variable AS this select) > - no semi-colon at the end of the select > >2) once you've fixed these, try running the proc using ><cfstoredproc> iso <cfquery> > >/t >
Also, i noticed that you created this procedure in the SYSTEM schema, which is really - really - not a good idea. You should create a separate user/schema for your web application and only grant appropriate privs. If somebody can carry out a sql injection attack against your SYSTEM schema... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:226583 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

