psychodad71
IS-IT--Management
Hi,
do anyone find the fault ?
------------------------------
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
ALTER PROCEDURE [Fallauskunft]
(@nr int)
AS
begin
declare @alles varchar(8000)
select @alles ='
select * from openquery (connection, ''select *
from connection..view_dale2.VP where original_vers_id ='''+ @nr+''')'
exec (@alles)
END
GO
------------------------------------
Uli
do anyone find the fault ?
------------------------------
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
ALTER PROCEDURE [Fallauskunft]
(@nr int)
AS
begin
declare @alles varchar(8000)
select @alles ='
select * from openquery (connection, ''select *
from connection..view_dale2.VP where original_vers_id ='''+ @nr+''')'
exec (@alles)
END
GO
------------------------------------
Uli