Viewing 15 posts - 3,526 through 3,540 (of 5,111 total)
July 13, 2017 at 3:35 am
July 13, 2017 at 3:19 am
If they just need SELECT just GRANT them that:
USE msdb;
GO
GRANT SELECT ON sysmail_allitems TO [UserName];
July 13, 2017 at 3:06 am
Perhaps this helps:CREATE TABLE #Sample (X xml);
GO
INSERT INTO #Sample
VALUES (
'<session id="342338">
<properties dateModified="2015-02-27" manuscript="Test_1_0_0_0" engineVersion="2.0.0" cultureCode="en-US" cultureName="United States [english]" caption="Test"...
July 13, 2017 at 2:56 am
A simple change would be:SELECT Contact, Role, SecretarysExpert
FROM (
SELECT ExpertID, Expert AS [Contact], 'Expert' AS [Role], '' AS [SecretarysExpert] FROM #tblExperts
UNION
SELECT E.ExpertID, Secretary...
July 12, 2017 at 9:27 am
July 12, 2017 at 9:00 am
Thanks for your reply. But the snag is harder than that. 🙂
John may wear...
July 12, 2017 at 8:13 am
I currently have the pleasure of doing a brief proof of concept around running SQL Server...
July 12, 2017 at 7:37 am
July 12, 2017 at 5:53 am
I'm wondering if you seem to be over thinking this, as AD groups actually seem like a good solution to this.
Say you have following Schemas for the following...
July 12, 2017 at 5:44 am
July 12, 2017 at 5:22 am
Not a question for help, we fixed the problem, but just wondered if anyone knows of any updates "recently" that caused problem with the Log on as Service permissions. Our...
July 12, 2017 at 2:20 am
July 11, 2017 at 10:17 am
Viewing 15 posts - 3,526 through 3,540 (of 5,111 total)