declare @prm nvarchar
select @prm as NewField, phone
From tblAddress
This query validates/runs fine on my sql server, but when I try to run it from access, it doesn't prompt for the parameter. As well, when I look at it in access it shows this.
ALTER procedure test
as
declare @prm nvarchar
select @prm as Shift, phone
From tblsite
Why can't acces select a parameter?
select @prm as NewField, phone
From tblAddress
This query validates/runs fine on my sql server, but when I try to run it from access, it doesn't prompt for the parameter. As well, when I look at it in access it shows this.
ALTER procedure test
as
declare @prm nvarchar
select @prm as Shift, phone
From tblsite
Why can't acces select a parameter?