I have a stored procedure that "de-concatenates" a text column that was poorly designed. The column has results from a survey where the responses are:
Healthy lifestyles
Healthy lifestyles,Mens health
Healthy lifestyles,familiy health,cancer prevention
Family health, bone and joint care.......
ect.
The procedure works fine, but the application won't allow me to use a sproc as a list table to allow the users to query the information on the front end. It requires a view.
From everything I can find, you can't call a sproc from a view. Is that correct? Or am I missing something.
The vendor says you can, but so far I haven't been able to make it work. I am fairly new to TSQL, so this could be my inexperience.
Healthy lifestyles
Healthy lifestyles,Mens health
Healthy lifestyles,familiy health,cancer prevention
Family health, bone and joint care.......
ect.
The procedure works fine, but the application won't allow me to use a sproc as a list table to allow the users to query the information on the front end. It requires a view.
From everything I can find, you can't call a sproc from a view. Is that correct? Or am I missing something.
The vendor says you can, but so far I haven't been able to make it work. I am fairly new to TSQL, so this could be my inexperience.