Viewing 15 posts - 196 through 210 (of 1,988 total)
Using named parameters is also a good time to strongly type cast them, that let's someone know real quick if they've entered a value that's not expected.
July 21, 2021 at 9:45 pm
Adding the filter for file size should be straight forward, just pipe it through a Where-Object before the ForEach
Get-ChildItem "C:\Temp\*.csv" | Where-Object {$_.Length -gt 0}
July 19, 2021 at 6:00 pm
Hmm.... SSIS is decent for a tool that's essentially included free with SQL Server(compared to say Oracle's nothing), but it's obviously not something that has a super high priority put...
July 15, 2021 at 2:57 pm
That's interesting what you said, Brian, about you company not typically rolling back a release even with a bug, unless the bug is really egregious. Because we release seldom,...
July 8, 2021 at 3:14 pm
The most important step is to understand the point at which you can actually roll back. That might be anytime, for example if you've just changed some text or a...
July 7, 2021 at 4:43 pm
Seems to be working fine for me? Execute Process Task waits for the process to complete, then depending on the return code you can branch to a...
July 7, 2021 at 1:48 pm
I don't disagree with this comment, but... There is a precedence constraint between this task and the unzip task. Why would the Execute Process task mark "successful"...
July 6, 2021 at 9:45 pm
First step just add some simple file logging to the powershell script, just a hello at the start and good by eat the end to a temp file. That will...
July 6, 2021 at 5:48 pm
That makes sense, I was curious since we're using stock jira/confluence, so it's mostly just for an information store and communications not really process oriented.
July 5, 2021 at 7:56 pm
On premise means we can limit access a lot better and we have control of the backups and the raw data (filesystem and database). Plus on premise (Server) is...
July 5, 2021 at 4:26 pm
And all this makes me wonder what value you're actually getting with on premise Jira vs just using the hosted option.
July 5, 2021 at 3:19 pm
Well SQL server has decided it's cheaper to use another index to run the query then do the key lookup for whatever other fields it needs. And clustered indexes are...
July 2, 2021 at 3:10 pm
Well the #temp tables will be created with the database default collation so that will cause it to be out of sync. Is there a reason you can't change the...
July 2, 2021 at 2:48 pm
Well is the script trying to do joins between the two databases?
July 2, 2021 at 2:00 pm
That's hilarious. I wonder if the salary is entry level.
Nah, this is basic knowledge people should be born with, so intern.
July 1, 2021 at 6:07 pm
Viewing 15 posts - 196 through 210 (of 1,988 total)