Viewing 3 posts - 1 through 4 (of 4 total)
I ended up being away from this project for a while, but I found a workaround for the specific problem I described. However, I ran into a somewhat similar...
June 21, 2005 at 1:15 pm
On the stored function side, I tried this:
CREATE FUNCTION rbperm
(@project_id int = 0,
@empid int = 0)
RETURNS INT
AS
BEGIN
declare @rbq nvarchar(1000)
set @rbq = (SELECT pj_role_based_query FROM projects WHERE pj_id = @project_id)
set @rbq...
June 10, 2005 at 11:04 am
What I'm after is to use query text that is already stored in the database, not to exec a stored procedure. (I'm doing this as part of an implementation...
June 9, 2005 at 1:12 pm
Viewing 3 posts - 1 through 4 (of 4 total)