Viewing 15 posts - 1,051 through 1,065 (of 39,524 total)
Recommended practice, back up each time to a new file.
If this feels complex use Ola's script: https://www.sqlservercentral.com/scripts/sql-server-backup-integrity-check-index-and-statistics-maintenance
January 27, 2023 at 5:18 pm
This encrypt by default has been a pain, since lots connection strings need altering. thanks for posting the note.
January 27, 2023 at 5:15 pm
Seems to work. Used two databases here:
Results are :
1 X
2 NULL
USE compare2
GO
CREATE TABLE TriggerTest (myid INT, mychar CHAR(1))
GO
CREATE TRIGGER tri_triggertest ON dbo.TriggerTest FOR INSERT
AS
BEGIN
...
January 27, 2023 at 5:00 pm
Indexing would be the only way I see to make this faster. Whether you use a CASE or Phil's solution, I wouldn't expect one to be appreciably faster.
I did an...
January 27, 2023 at 4:53 pm
I'd wonder as well if there were some personal connection or perhaps some other non-business reason.
The only reason most people care about where you are in the cloud is governance....
January 27, 2023 at 4:39 pm
Thanks, a data migration issue. I'll log this.
January 26, 2023 at 3:56 pm
A related problem I see is that they know where the data is, but the same data is in so many different places there is no understanding of what...
January 26, 2023 at 3:55 pm
I'm remembering SQLSlammer. Many SQL shops got caught out even though they had patched every SQL Server they knew about.
It was the MSDE instances they didn't know about that...
January 26, 2023 at 3:55 pm
It's not even mundane things. I see some orgs that sell to other businesses and give them trials or PoCs with live data. When those companies move on without being...
January 25, 2023 at 9:12 pm
That is does. Especially with all the self-services stuff in many orgs.
January 25, 2023 at 9:09 pm
I think this was a place where either a redirect was incorrect or the post should have been edited.
I've manually updated the link for this one.
January 25, 2023 at 5:18 pm
I think the biggest challenge, as you allude to, is the effort to track and ensure this stuff is handled well. I've been concerned about the restore/replay issues, and ensuring...
January 24, 2023 at 7:04 pm
The correct answer to this will depend on the setting of ANSI_NULL_DFLT_ON, since the NULLability of the CHAR column isn't specified.
The default is NULL for columns if not specified...
January 20, 2023 at 4:30 pm
Yeah, lots of people like typing. Esp technology people
January 20, 2023 at 4:12 pm
Michael has some good ideas, but what I'd do is not run this on a huge table. Get 20-30 rows and work out your logic and query. Then look at...
January 18, 2023 at 9:24 pm
Viewing 15 posts - 1,051 through 1,065 (of 39,524 total)