Viewing 3 posts - 31 through 33 (of 33 total)
Thanks for that I did that to get the correct size of the log ut in general I don't leave the auto grow option on due to other deterimental impacts...
June 14, 2010 at 1:06 am
#1179683
Worked a treat!! Amazing what a little setting like that could do. Server built with the wrong default paths but never picked up until now.
December 8, 2009 at 4:44 am
#1089112
You are probably best creating DB roles and applying the permissions to that role,
eg
USE DBName
go
CREATE ROLE UPDATE_ROLE
GRANT EXECUTE ON [dbo].SP TO [UPDATE_ROLE]
GRANT SELECT, DELETE, INSERT, UPDATE ON [dbo].[tblStartup] TO...
September 23, 2009 at 2:10 am
#1057332