Viewing 15 posts - 4,426 through 4,440 (of 4,476 total)
Sorry...I missed your last edit. What permissions are you changing?
And I forgot to ask, are you also looking at who is the owner of the files?
Sue
August 16, 2016 at 5:29 pm
The only thing I've ever seen like that is the file attributes getting marked as read only. But I've often seen the security changes, ownership changes on files when moved...
August 16, 2016 at 5:15 pm
A couple of things to try, check would be:
Double check the permissions and make sure the effective permissions have the service account has full control.
Make sure the file attributes didn't...
August 16, 2016 at 4:29 pm
theresa.ravens (8/16/2016)
August 16, 2016 at 3:45 pm
How did you connect to SQL Server initially to create your own login? You'd need to connect to the instance somehow to create a login.
Sue
August 16, 2016 at 2:42 pm
You answered your own question. ALTER LOGIN requires ALTER ANY LOGIN permission.
Refer to: https://msdn.microsoft.com/en-us/library/ms189828(v=sql.110).aspx
Sue
August 16, 2016 at 2:30 pm
If the failures are something with database mail, you can query the catalog views to see if there are issues showing up. You could take a look at these:
SELECT *...
August 16, 2016 at 12:47 pm
It sounds like you might not be a system administrator in SSRS. Can you access Report Manager, view any of the site settings or security from there? You many need...
August 16, 2016 at 12:39 pm
I though the number of row mods needed was based on the number of rows in the table, and was either a fixed number or a percentage of the...
August 16, 2016 at 12:14 pm
You can deploy reports using BIDS, Report Manager or using rs.exe. Probably other ways as well (e.g. Posh script). How you do it for each is fairly different.
This article...
August 15, 2016 at 4:43 pm
You can't do it with a view since you want this parameterized. You can use a function or a stored procedure when you want something similar to what would behave...
August 15, 2016 at 2:21 pm
Andrew Causon (8/12/2016)
As a developer coming into an organisation where data security...
August 12, 2016 at 1:06 pm
The advantage to setting it up would be that SQL Agent could use Database mail for jobs, alerts, etc.
I'm not sure what the disadvantage would be to setting it...
August 12, 2016 at 11:51 am
Take a look at sp_altermessage. You can set the Is_event_logged value in sys.messages with something like:
EXEC sp_altermessage
@message_id = NNNNN, --Your message number
@parameter = 'WITH_LOG',
@parameter_value = 'True'
Sue
August 12, 2016 at 11:28 am
Duh...sorry about that. Pasted the same link to the stairway article instead of the forum.
This is the Posh forum:
http://www.sqlservercentral.com/Forums/Forum1351-1.aspx
Sue
August 11, 2016 at 12:43 pm
Viewing 15 posts - 4,426 through 4,440 (of 4,476 total)