Viewing 15 posts - 1 through 15 (of 24 total)
There shouldn't be an issue with that big of a leap in faith.
The only things to watch out for are the upgraded encryption defaults. If apps accessing the database are...
April 8, 2026 at 9:16 pm
Hi Brandie, will writing a subquery work for this issue? Such as the below example?
select sum(count)
from
( select servername, count = count(*)
...
April 8, 2026 at 9:06 pm
Hi Stan,
I don't believe the .dll references in your script and GAC entries will be deployed along with your package deployment. That's something you'll have to set up on the...
March 27, 2026 at 10:55 pm
Hi Adri
I went through the same domain migration and had to clone existing windows logins/groups to the new domain which looks like you're attempting to do. Here are 2 steps...
March 27, 2026 at 12:02 am
Personally, I'd separate the user database data and log files into separate volumes.
As for the tempdb database, AWS EC2 uses solid state drives (SSD) so there's no need to create...
March 25, 2026 at 10:06 pm
There's usually a maintenance job of some sort that runs nightly. For example, I have the History Cleanup job running daily at 4am.
I would just add a job step to...
October 3, 2024 at 9:34 pm
Just set all grantor to SA. Who really minds who granted what permission. It's going to be a DBA with sysadmin access doing it.
update internal.project_permissions
set grantor_sid = 0x01
September 10, 2024 at 5:26 pm
Just set all grantor to SA.
Who really minds who granted what permission? It's going to be a DBA with sysadmin access doing it.
update internal.project_permissions
set grantor_sid = 0x01
September 10, 2024 at 5:25 pm
Try beefing up your DR with more CPU and RAM so it can restore faster. Some companies setup DR servers on lower resources from PRD in order to save costs. ...
June 19, 2024 at 9:46 pm
A server upgrade would just be a once in a while event and not recurring with high frequency. I'd recommend using SSDT and using the Business Intelligence > Integration Service...
June 19, 2024 at 9:32 pm
DMK is only needed if you want to maintain sensitive values in your package as you restore the SSISDB database to another server instance. If DMK is not restored, the...
June 10, 2024 at 6:10 pm
Try not to specify the idPool column twice in the same Update statement and get rid of the Select statement.
The select statement where criteria is the same as the update...
June 10, 2024 at 5:41 pm
select rp.name as database_role, mp.name as database_user
from sys.database_role_members drm
join sys.database_principals rp on (drm.role_principal_id = rp.principal_id)
join sys.database_principals mp on (drm.member_principal_id = mp.principal_id)
order by rp.name
--...
September 11, 2020 at 6:42 pm
Try this for SQL Server 2008 R2 and above
The sizes will convert to mb, gb, or tb depending on how large the drive is.
The query only works with one server. ...
August 29, 2020 at 2:05 am
Those are very good points. I too have taken safety precautions given the fact that my account has access to everything. For the app, I use my windows credentials to...
August 5, 2020 at 9:02 pm
Viewing 15 posts - 1 through 15 (of 24 total)