Viewing 15 posts - 106 through 120 (of 5,842 total)
That's really slick Drew - well done!! 😎
October 26, 2017 at 1:13 pm
There is no concern whatsoever for insert trigger performance for your situation, as long as you aren't doing table scans on massive tables do to the joins or get the...
October 26, 2017 at 9:26 am
I have worked on numerous SQL Server systems with > ten thousand queries per second (on STANDARD edition), and one system, also Standard, that would occasionally touch over 100K/sec.
October 26, 2017 at 9:24 am
Always set up a profiler trace when applications exhibit wierd behavior. That will be telling I suspect.
Oh, did you check the SQL Server error log for anything...
October 24, 2017 at 9:48 pm
If the data is actually stored as datetime, I think datepart(hour) is the way to go. If it IS actually stored as varchar(23) then just do a substring to pull...
October 24, 2017 at 7:13 pm
I've consulted on SQL Server for over 2 decades for scores of clients ranging from Mom-and-Pops to Fortune 100 and guess what, they ALL produce crappy designs and crappy code...
October 23, 2017 at 12:32 pm
The most important thing you said there Drew was "...should be...". But sadly they aren't. Probably 99% of all columns I have ever seen in SQL Server applications (25 years...
October 20, 2017 at 11:57 am
October 19, 2017 at 1:54 pm
Do you have a link for the ghost record creation for keeping track of the uniquefier value? I thought I had one but cannot find it.
October 10, 2017 at 2:56 pm
October 10, 2017 at 12:58 pm
October 6, 2017 at 2:46 pm
Don't have time to give this much thought this morning but I must get one VERY important point out: I would NOT rely on auto-update stats to handle this particular...
October 6, 2017 at 7:06 am
search web for sql server in-memory oltp checkpoint files. You could do garbage collection or memory management too instead of checkpoint files.
If you do a lot of DML...
October 5, 2017 at 7:27 am
October 3, 2017 at 8:36 am
Viewing 15 posts - 106 through 120 (of 5,842 total)