Viewing 15 posts - 1 through 15 (of 65 total)
SSMS all the way... we have Visual Studio and use that for source control (used to be TFS, now git) but I do all the work in SSMS and copy...
June 17, 2019 at 3:35 pm
The transaction log records what happens in the database (the changes since a certain point - when the last full backup took place), whereas a full backup records the current...
June 12, 2019 at 9:04 am
I fell into this game as a youngster, but pretty quickly discovered that there's no reward, the extra hours rarely earn you pay, appreciation or even get noticed.
Recent years have...
June 11, 2019 at 2:40 pm
I came up with a DB deployment strategy years ago when we were a 3-person team, and we still use it now that the team has grown to about 15...
March 24, 2017 at 6:27 am
165GB in 10 min 24 sec, which would mean just over an hour for 1TB (63 minutes).
DB files on SAN disk, SQL 2008 standard, Red Gate SQL Backup with level...
November 4, 2016 at 3:10 am
At the risk of outing myself as a pale imitation of a database professional, I work to live, not the other way around.
Apart from being on call (which now I've...
October 14, 2016 at 3:01 am
Thanks Gail,
I can see where I was getting confused, it all makes sense now.
I've not spent any time digging into deadlocks before, so thanks for your help. I'll do better...
October 10, 2016 at 10:50 am
xsevensinzx (9/12/2016)Can't you just do that in code documentation? I think that's the biggest hurdle for me on justification. In all my stored procs for example, you have a boilerplate...
September 13, 2016 at 5:07 am
A quick update:
By reducing the compression on those backups, I dropped the CPU spikes from 95%-ish down to 90% or less most of the time, and that has had the...
June 9, 2016 at 6:13 am
Sergiy (6/1/2016)
Did you check sp_configure 'user connections'?
User connections is 0, but that wouldn't make any difference to the trigger operation - if the users were being rejected bit that would...
June 2, 2016 at 4:25 am
I had done much the same (the logic is a little different, but separating out the username test)... and removing the logging completely - the rejected logins get written to...
June 1, 2016 at 9:05 am
Thanks for the guidance Sergiy, I looked into what you suggested and implemented most of your ideas.
CREATE TRIGGER [<the trigger>]
ON ALL SERVER
WITH
EXECUTE...
May 31, 2016 at 4:40 am
It's still happening - clearly related to the 90%+ CPU on the server (not the instance, that isn't reporting CPU pressure, just the server).
Do you have any idea what mechanism...
May 26, 2016 at 6:18 pm
Thanks for looking at this for me.
I guess connection is possible by other means, but for ordinary users, they would still pass the trigger, and the restricted user would be...
May 26, 2016 at 7:47 am
I would have thought a logic error would be a logic error all the time, not just for 4 minute bursts? That's why I am looking at outside factors.
This is...
May 26, 2016 at 5:41 am
Viewing 15 posts - 1 through 15 (of 65 total)