You are accessing the Members Only area for DynDeveloper.com using guest access. The member experience is slightly different
Jude
4Penny.net
Points: 7384

8/28/2018 8:40:19 AM

Run a script against all Dynamics GP company databases

* This article, and all our great .NET Development documentation, Is available on the .NET Development menu

I received an email today that asked how to run a SQL command against all company databases, so let's look at that technique

The request was to run this code:

USE DATABASE
DECLARE @O_iErrorState int, @I_dAgingDate datetime
select @I_dAgingDate = convert(varchar(10), GetDate(), 102)
EXEC dbo.rmAgeCustomer 0, '', 'þþþþþþþþþþþþþþþ', @I_dAgingDate, 127, 0, 0, '', @O_iErrorState OUT
SELECT @O_iErrorState
4Penny.net
Version: All
Section: SQL Scripts
--declare a variable to hold a concatonated SQL script
DECLARE @command varchar(1000)
--at the end, we call sp_MSforeachdb. That command will run a script in each database on the server
--so, for our command, we first issue a 'use'
--USE ?
--the '?' is a place holder for the current db
--the 'if not exists' statement looks into DYNAMICS..SY01500 to see if this is a company db. If it is not, we exit and loop
SELECT @command = 'USE ?; if not exists (select 1 from dynamics..sy01500 where interid = db_name()) begin print ''exiting '' + db_name() return end; print ''working in '' + DB_NAME();'
--this is the statement requested
SET @command = @command + 'DECLARE @O_iErrorState int, @I_dAgingDate datetime; '
SET @command = @command + 'select @I_dAgingDate = convert(varchar(10), GetDate(), 102);'
SET @command = @command + 'EXEC dbo.rmAgeCustomer 0, '''', ''þþþþþþþþþþþþþþþ'', @I_dAgingDate, 127, 0, 0, '''', @O_iErrorState OUT;'
SET @command = @command + 'SELECT @O_iErrorState'
PRINT @command
--this is where the magic happens. execute @command against all the databases
EXEC sp_MSforeachdb @command

Please leave a comment

Add a Comment



Not Subscribed. You will not receive emails on article changes or comment additions

Comments

body header
chase
Member since
07/26/18
Points: 800

We use this script. You may have to go in and change it, to meet your tables/settings.

USE [msdb]
GO

/****** Object:  Job [EXEC xsp_rmAgeCustomer]    Script Date: 8/28/2018 8:47:15 AM ******/
BEGIN TRANSACTION
DECLARE @ReturnCode INT
SELECT @ReturnCode = 0
/****** Object:  JobCategory [[Uncategorized (Local)]]    Script Date: 8/28/2018 8:47:15 AM ******/
IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1)
BEGIN
EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]'
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback

END

DECLARE @jobId BINARY(16)
EXEC @ReturnCode =  msdb.dbo.sp_add_job @job_name=N'EXEC xsp_rmAgeCustomer',
        @enabled=0,
        @notify_level_eventlog=0,
        @notify_level_email=0,
        @notify_level_netsend=0,
        @notify_level_page=0,
        @delete_level=0,
        @description=N'EXEC xsp_rmAgeCustomer',
        @category_name=N'[Uncategorized (Local)]',
        @owner_login_name=N'sa', @job_id = @jobId OUTPUT
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
/****** Object:  Step [EXEC xsp_rmAgeCustomer]    Script Date: 8/28/2018 8:47:15 AM ******/
EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'EXEC xsp_rmAgeCustomer',
        @step_id=1,
        @cmdexec_success_code=0,
        @on_success_action=1,
        @on_success_step_id=0,
        @on_fail_action=2,
        @on_fail_step_id=0,
        @retry_attempts=0,
        @retry_interval=0,
        @os_run_priority=0, @subsystem=N'TSQL',
        @command=N'EXEC xsp_rmAgeCustomer',
        @database_name=N'GPAMM',
        @flags=0
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
EXEC @ReturnCode = msdb.dbo.sp_add_jobschedule @job_id=@jobId, @name=N'EXEC xsp_rmAgeCustomer',
        @enabled=1,
        @freq_type=4,
        @freq_interval=1,
        @freq_subday_type=8,
        @freq_subday_interval=6,
        @freq_relative_interval=0,
        @freq_recurrence_factor=0,
        @active_start_date=20180404,
        @active_end_date=99991231,
        @active_start_time=60000,
        @active_end_time=175959,
        @schedule_uid=N'5e059b56-9da6-413b-8a05-2e37c8154c89'
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)'
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
COMMIT TRANSACTION
GOTO EndSave
QuitWithRollback:
    IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION
EndSave:

GO

Table Definition Quick Links
All Tables
SOP Tables
RM Tables
GL Tables
POP Tables
HR Tables
PM Tables
UPR Tables
IV Tables
Olympic Tables
3