I created the following sp as dbo then run it as cmss_user. The table gets created but then the select fails with ('aarobtmp does not exist'). cmss_user has db_owner. Can anyone help?
CREATE PROCEDURE rob_tmp_1
AS
SELECT glt_urn,
glt_code,
glt_description
INTO aarobtmp
FROM ncm_general_list_type
SELECT * FROM aarobtmp
GO