Viewing 11 posts - 1 through 11 (of 11 total)
May 11, 2017 at 11:19 am
Phil, I believe the key here is what you're allowed to put after the "AS OF".
"dd" is not a reserved word, as far as I know, and wrapping it...
May 11, 2017 at 11:17 am
whenriksen (12/21/2016)
Tally table provides the power of a rocket launcher with the labor of a pop cap.
I've put some comments inline. However, I don't have any temporal tables in...
December 22, 2016 at 8:54 am
This feels a bit dirty, but here's what I came up with:
DECLARE @Sql VARCHAR(max)
DECLARE @DateStart DATETIME
DECLARE @DateEnd DATETIME
SELECT @DateStart = MIN(SysStartTime)
,@DateEnd = GETDATE()
FROM SchemaName.TableName
SELECT @Sql =...
December 21, 2016 at 1:25 pm
This certainly looks like it would facilitate what I'm trying to do. Thanks!
Also, great point on the UNION.
December 21, 2016 at 12:30 pm
Vlad-207446 (8/17/2015)
what if you go through all of this trouble and still need more space?
let say you know what you are doing, and before...
August 17, 2015 at 5:59 am
WOW !!!!
Talking about sparking ideas! I did not know you could do that with the calender control 🙂
Your printscreen made me think of some uses of my own!
If the code...
July 29, 2015 at 6:43 am
Theo Ekelmans (7/28/2015)
http://www.ekelmans.com/FTP/Web/GoogleCpuLoadInfoV1.0.sql
And a new version of the script...
July 28, 2015 at 1:12 pm
I'd also love to see how you pulled in CPU/Disk I/O. Our current server host is having some disk issues, so it would be nice to show them when...
July 28, 2015 at 6:44 am
Thanks, Jeff, I'll be sure to look into these.
June 12, 2015 at 6:43 am
Thanks for the reply.
How would you filter out pertinent statistics so that only those which really need to be updated are affected?
I've ran successful backups before, and luckily our SQL...
June 11, 2015 at 8:00 am
Viewing 11 posts - 1 through 11 (of 11 total)