Viewing 15 posts - 151 through 165 (of 1,988 total)
This is where talent and knowledge end up getting conflated but often aren't really the same thing. Someone who's talented should both be able to acquire new knowledge and then...
October 1, 2021 at 2:25 pm
I had someone ask me how many a couple was this morning, it was just one of those weird moments where I assumed that was just standard knowledge but the...
September 29, 2021 at 4:08 pm
Can this be done with a populated table with 24MM rows and 130 fields? I keep getting errors that the tempdb is full (?) I tried copying the table,...
September 28, 2021 at 6:22 pm
Well you could just check the number results in the return and if it's zero hardcode the desired output.
Json is tricky like that because functionally both of those represent the...
September 28, 2021 at 1:28 pm
Welp then start adding columns one by one until it breaks 🙂
September 23, 2021 at 5:16 pm
Does just this work?
SELECT
SUM(CAST([Convo] AS DECIMAL(10,2)))
FROM [a2hr].[dbo].[FinalPayroll] where period = 18
September 23, 2021 at 4:22 pm
What is the exact problem?
September 23, 2021 at 3:45 pm
This works fine for me,
$messageParameters = @{
From = "xxxx@xxx.com"
To = @("asfadsf@dsdasf.com", "djshgfkdhas@hcbvmxc.com")
Subject = "DBLocks "
Body = "Job Status"
SMTPServer = "SMTPSERVER"
}
Send-MailMessage @messageParameters
September 22, 2021 at 4:42 pm
Don't convert it to a string at all, the to parameter should just be the array if it's going to multiple addresses.
September 22, 2021 at 4:28 pm
The to list needs to be an array @() not a comma separated string 🙂
September 22, 2021 at 4:01 pm
Well there's a difference between a poor design choice and a legitimate bug. And I don't see how using while(1=1) without a proper break condition is any worse than while...
September 22, 2021 at 3:55 pm
Well you're probably going to have to have something to handle issues in the GUI, for example when all the slots are full. But this should fix the other issue.
September 21, 2021 at 9:28 pm
That kind of formatting would likely better be done in the GUI, especially if you want any kind of custom formatting if there's no matches etc.... but if you have...
September 21, 2021 at 8:49 pm
Cloud, SaaS, web application are all extremely broad terms that have a lot of overlap.
Cloud basically just means on the internet not hosted by you(there is no mythical in the...
September 21, 2021 at 6:30 pm
Where are you getting those execution times from? From SQL Server or from the application?
September 16, 2021 at 3:10 pm
Viewing 15 posts - 151 through 165 (of 1,988 total)