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

It's possible to use an array variable in a stored procedure

Status
Not open for further replies.

ejanakieff

Programmer
Sep 9, 2003
62
0
0
ES
I want to know if it's possible to create a temporal array in a Stored Procedure or in an User Function.

And if it's possible, how can I do it.

Thanks,
Eva Janakieff
 
u can't
but why do u need arrays? u can create temporary tables - it's much more convenient..
create table #t1 (
f1 int,
.....
)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top