On the GoldMine Install CD there is an installer for the stored procedures. I can't remember how they refer to it. I think they called it Business Logic.
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[xp_GMNewRecid]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[xp_GMNewRecid]
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS OFF
GO
exec sp_addextendedproc N'xp_GMNewRecid', N'gm5sql.dll'
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
Run the above code in SQL Server Query Analyzer, in the Master DB. You have to have admin permissions to run this. (Sorry for the addendum; I forgot this was the GM and not the SQL forum).
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.