Viewing 15 posts - 1 through 15 (of 1,837 total)
I haven't seen pressure to reach 0% downtime where I work, but we still struggle with some basic issues, so I'm not sure if things are more focused on those...
March 24, 2023 at 6:42 pm
I wish I better understood dev-ops so I could participate in an intelligent discussion on this topic, but even though the company I work for likes to pretend it follows...
March 24, 2023 at 2:03 pm
So this weekend I ended up trying to do a repair on the shared components of 2019, but that didn't seem to do it. I ended up doing a repair...
March 13, 2023 at 12:32 pm
Jonathan, I like your enthusiasm, but I'm thinking your query will return IDs that don't have any of the 3 key description values where as the OP sounds like they...
March 11, 2023 at 1:51 am
Maybe I'm a bit old-school, but I'm still a big fan of dimensional modelling based on the Kimball methodology. I believe the Kimball group now operates as Decision Works, and...
March 11, 2023 at 1:11 am
I think you need to provide some more information about the data in this table. Is there only 1 row per description per ID? What is the primary key of...
March 11, 2023 at 12:42 am
In truth, the account the procedure runs under doesn't even need
sysadmin
privileges (and I would suggest it shouldn't).db_backupoperator
is all it really needs to perform this task.
Just...
July 30, 2020 at 2:54 pm
another option is to use the great free tool SentryOne Plan Explorer:
https://www.sentryone.com/plan-explorer
It gives you a lot more information than the standard execution plan in Management Studio, including actual I/O,...
July 28, 2020 at 7:43 pm
And one more thing: Your dynamic query starts with UNION ALL... and that's going to cause a syntax error. Not sure why you have that in there, and maybe...
July 24, 2020 at 5:13 pm
I think the original SQL has some redundant parts in it, I believe it can be simplified to:
SELECT DATEADD(DAY, -8, DATEADD(WK, DATEDIFF(WK, 0, GETDATE()), 0));
Looking at the...
July 23, 2020 at 5:52 pm
This is great advice! All too many times I've seen commit messages that are generic like "fix" or something else fairly useless. The worst is if you work someplace where...
July 23, 2020 at 3:56 pm
I think you misunderstood what Grant was telling you to do. You can't create a VIEW inside of a PROCEDURE, just take your original query and put that in the...
July 23, 2020 at 3:17 pm
I have to admit many of the R or Python questions I get right are an educated guess, I don't really know anything about either of those languages. This one...
July 23, 2020 at 2:41 pm
ugh, I edited it and made it worse, so I went back to my original post, sorry for any confusion, but glad you found help from this.
July 23, 2020 at 2:25 pm
I think this would work best if you had a separate table already that had a list of asset_name and security_code values, but it looks like all you might need...
July 23, 2020 at 2:18 pm
Viewing 15 posts - 1 through 15 (of 1,837 total)