USE MunimMaster GO SET ANSI_NULLS, QUOTED_IDENTIFIER ON GO CREATE PROCEDURE dbo.CMSP_MunimMasterCompanyGroupGet WITH ENCRYPTION AS BEGIN SET NOCOUNT ON; SET XACT_ABORT ON; SELECT CompanyGroupId, CompanyGroupName, DefaultCompanyGroup, ServerName, ServerUserName, ServerPassword, DatabaseName, SuperPassword, SupervisorPassword, DatabaseConnectionDriverDetails, VersionUpdateProcess, DatabaseVersion FROM CompanyGroup SET NOCOUNT OFF; SET XACT_ABORT OFF; END GO