Viewing 15 posts - 1 through 15 (of 6,353 total)
Now what you could do is to write a proc which does it then ties it to a certificate which has the access.
This is similar to how you can give...
November 20, 2024 at 2:15 pm
Permissions to the DMV's are detailed on their respective documentation page.
sys.database_principals
Permissions
Any user can see their own user name, the system users, and the fixed database roles. To...
November 20, 2024 at 2:11 pm
Probably allows the use of old legacy ciphers / algorithms, but just clutching at straws there, unsure of the internals.
We can only go on what the public documentation says.
Might be...
November 20, 2024 at 8:39 am
You could just do a straight select also, no need to convert the hex to the GUID as it will implicitly do this for you
SELECT...
November 19, 2024 at 4:59 pm
Are you sending via O365? SQL 2016 and below don't have DotNet set to use strong ciphers, and O365 says you need it.
There's a few things you need to change...
November 19, 2024 at 4:23 pm
Check the database mail log and verify the email is being sent to the queue, the queue is active and that there are no errors.
select * from...
November 19, 2024 at 4:14 pm
Use an older version instead unfortunately.
As per the documentation, 20.2 is only tested on 2014 and above.
November 19, 2024 at 4:06 pm
You could just do a straight select also, no need to convert the hex to the GUID as it will implicitly do this for you
SELECT * FROM...
November 19, 2024 at 4:03 pm
Probably best you join the Slack community and post in the #dbatools channel
A lot of the DBATools folks hang out there instead.
November 13, 2024 at 11:10 am
So whats in the trace file? Does it help us understand whats happening in some way?
October 11, 2024 at 1:01 pm
sp_send_dbmail is not available on Azure SQL DB, so you will need to use some 3rd party application which can integrate with your application to send mail on it's behalf,...
October 10, 2024 at 2:06 pm
Maybe one to post on an actual Oracle forum also.
Everyone here will be primarily Microsoft SQL Server focused, not to say that there may not be a few Oracle people...
October 2, 2024 at 3:10 pm
Yeah SQLAgent can't work without MSDB so if MSDB is missing, then quite rightly so would SQL Agent.
Have you checked from sys.master_files the path to MSDB?
Have you check that those...
October 2, 2024 at 3:07 pm
You'll need some app / query logic to prevent it.
IF EXISTS(SELECT 1 FROM #unique_names WHERE email = @email AND first IS NOT '' AND last IS NOT...
October 2, 2024 at 2:58 pm
Use powershell and integrate with the Azure (AZ) module to make the Azure backend responsible for doing the restore for you.
You have picked a PaaS offering, let Microsoft do all...
October 2, 2024 at 7:50 am
Viewing 15 posts - 1 through 15 (of 6,353 total)