Viewing 15 posts - 211 through 225 (of 325 total)
Yeah, that's almost always the moment someone asks "Can you hotfix this issue - but only for one client" and you really wish it was a per-database view rather than...
August 7, 2018 at 11:41 am
+1 for Temporal Tables as a great solution to this kind of problem and +10 if you're on 2017 and can just set a retention policy. It's a lot easier...
August 7, 2018 at 11:30 am
There are various ways, all with there own benefits and after a while you just get a feel for it. That said, an approach that often works for for beginners...
August 7, 2018 at 6:42 am
I dunno, I'd take a slightly bloaty log file that can be robustly passed by known tools over a comma/tab delimited file every single time. Disk is cheap and working...
August 7, 2018 at 6:32 am
August 7, 2018 at 6:29 am
August 7, 2018 at 12:07 am
No worries. It's not impossible to make a design along those lines work, but it sounds like it hadn't been entirely thought through.
August 6, 2018 at 4:57 pm
If you transform the data at the other end, a hash based solution is unlikely to help much. About the only way to make that work is have a bunch...
August 6, 2018 at 4:10 pm
August 6, 2018 at 3:48 pm
Oops, yeah I missed the sample at the bottom. If it absolutely has to have CDATA sections, it would appear there really isn't any alternative to EXPLICIT mode.
August 6, 2018 at 3:17 pm
I don't believe you can pass a three part object name to sp_recompile, so you need to generate something like Use [DatabaseName];Exec sys.sp_recompile '[Schema].[Object]'
As to FREEPROCCACHE, it feels...
August 6, 2018 at 3:00 pm
Do yourself a favour and don't touch XML Explicit with the longest pole you can find. It descends into an unholy, unmaintainable mess in next to no time. Use Path...
August 6, 2018 at 2:42 pm
August 6, 2018 at 2:19 pm
If you're on 2017, I'd strongly recommend turning on Query Store for your databases to help diagnose these issues. It really is an absolute godsend for finding and comparing variances...
August 6, 2018 at 2:06 pm
komal145 - Monday, August 6, 2018 1:41 PMI work in In Microsoft SQL server. The above functions do not work 🙁
Which...
August 6, 2018 at 1:56 pm
Viewing 15 posts - 211 through 225 (of 325 total)