Skip to content

Instantly share code, notes, and snippets.

@DarkAllien
Created November 24, 2016 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DarkAllien/82cc559e019d5e027361b222b81d1177 to your computer and use it in GitHub Desktop.
Save DarkAllien/82cc559e019d5e027361b222b81d1177 to your computer and use it in GitHub Desktop.
USE [new database on SCCM DB Server];
GO
IF OBJECT_ID('[REP].[spSU_States_Update_Groups_per_Collection]', 'P') IS NOT NULL
DROP PROCEDURE [REP].[spSU_States_Update_Groups_per_Collection];
GO
CREATE PROCEDURE [REP].[spSU_States_Update_Groups_per_Collection] @pCollID VARCHAR(8),
@pSUGS VARCHAR(4000)
AS
BEGIN
--your procedure Here
END;
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment