This user account () has been banned from the forums
Viewing 7 posts - 1 through 7 (of 7 total)
This was removed by the editor as SPAM
December 4, 2023 at 9:03 am
This was removed by the editor as SPAM
December 4, 2023 at 9:01 am
Yeah, you can set up SQL Trace or Extended Events to catch those errors. It's like a net for those SQLExceptions. But in the long run, asking devs to handle...
November 29, 2023 at 8:51 am
It sounds like combining those three queries into one with UNION ALL is causing a slowdown. Even though the first two are fast, the third one's making things sluggish. You've...
November 27, 2023 at 7:04 am
sorry to hear about the table drop! If you've got a backup table on OneDrive, you can try restoring it. OneDrive does backup files in the cloud, but it's good...
November 21, 2023 at 8:12 am
To check the second digit after the decimal, try this:
sqlCopy code
IF (HRS * 100) % 10 <> 0 THEN
-- Add your error handling here
-- This means the second digit after...
November 18, 2023 at 9:05 am
Viewing 7 posts - 1 through 7 (of 7 total)