Viewing 3 posts - 1 through 3 (of 3 total)
August 4, 2017 at 3:56 am
I think you're referring to this sp:
USE master;
GO
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE PROCEDURE [dbo].[Search] @Search VARCHAR(255)
AS
May 25, 2017 at 2:06 am
Create the login on primary db first. And then, give it the permissions you want. After that, get the SID of the login by using this code:
select sid from sys.syslogins
where...
January 19, 2016 at 2:48 am
Viewing 3 posts - 1 through 3 (of 3 total)