Viewing 15 posts - 256 through 270 (of 2,897 total)
Does Standard have less RAM available ?
Instance ->> Properties ->> Memory
Or other settings ?
June 23, 2021 at 3:49 pm
LAG function ?
https://docs.microsoft.com/en-us/sql/t-sql/functions/lag-transact-sql?view=sql-server-ver15
June 17, 2021 at 4:31 pm
If your database is large, you make want to select "Compression".
Also, a "Clean-Up" task to delete old backups and logs after X days/weeks.
Probably dozens of videos or blogs on strategies,...
June 17, 2021 at 4:21 pm
I am not familiar with AG, but at least I can bump your post.
June 17, 2021 at 3:29 pm
If your database is small, a daily full will run quickly and take few resources. If it's huge, may be better to run a Full less frequently and take Differentials...
June 17, 2021 at 3:00 pm
It all depends on the chance that the data or code will be needed later.
If the jobs are no longer needed, you could script them to a file before deleting...
June 17, 2021 at 2:54 pm
At my previous job, i set up a process to check for any blocking processes. It would run every minute, and write the information to a table, so I could...
June 17, 2021 at 2:30 pm
WHERE NAME NOT LIKE 'RECA-%'
That will eliminate them from results. The request was to remove the characters 'RECA-' but keep the remaining characters.
June 15, 2021 at 1:16 pm
Maybe the DBA likes calls late at night asking why the application is hung.
June 14, 2021 at 9:00 pm
If you are running SELECT it is only for display.
UPDATE will change the data in the table.
https://docs.microsoft.com/en-us/sql/t-sql/functions/replace-transact-sql?view=sql-server-ver15
June 14, 2021 at 6:24 pm
Look at the REPLACE function, and replace with '' (2 quotes, without space between them)
June 14, 2021 at 6:18 pm
Or, if you cannot add a ModifiedDate column, you could create Insert/Update triggers, and write to an audit table. You'd also need to manage it by deleting old audit data...
June 14, 2021 at 2:27 pm
In 1 database, I have a user type 'K'
K - ASYMMETRIC_KEY_MAPPED_USER
I don't know much about it. Not sure if I will need to migrate it to a new server project...
June 11, 2021 at 3:04 pm
Thanks for the original script, and everyone's tips & improvements.
June 10, 2021 at 6:22 pm
Thanks ! I will give them a try.
June 4, 2021 at 3:08 pm
Viewing 15 posts - 256 through 270 (of 2,897 total)