Viewing 15 posts - 796 through 810 (of 3,507 total)
How about a CREATE TABLE script and maybe some sample data?
March 11, 2020 at 1:37 am
How about posting the query? Pin the tail on the donkey isn't that much fun.
March 9, 2020 at 8:23 pm
Please read this article:
Your post lacks several things that enable folks like me to help you:
March 6, 2020 at 12:36 am
Yeah I get that this is a "Course requires Prerequisite" question, generally speaking. But what's your question?
how about explaining the real-world scenario you're trying to figure out? Something like "I'm...
March 6, 2020 at 12:08 am
And a whiteboard, while I'm thinking my way through it. But #1 tool is my brain.
March 5, 2020 at 7:50 pm
Check this out on Andy's website, CozyRoc
EMail him and ask him if his EDI solution stuff will solve your problem. See if you can test it out. I just can't...
March 5, 2020 at 4:33 am
If you have some money, buy Andy Leonard's SSIS stuff that does this already. Then just use his. It would be hard to find someone that knows much more about...
March 4, 2020 at 4:24 pm
There's nothing attached. But if it works when you run it under your account and not when it runs under a system account, there's likely a permissions issue causing the...
March 3, 2020 at 8:56 pm
What if you create a dataset of (Strategic Shift,1)(Day case,2), (Same day EC,3), (Elective,4), (Emergency,5), (Non-Elective,6) and then sort by that? (Maybe you need to create a calculated column in...
February 29, 2020 at 7:53 pm
Besides being out of support? (or is that 2008?) Kind of depends on how you use/what you use SQL Server for. Some of the new features may be part of...
February 26, 2020 at 1:53 am
WHERE datediff (YY, birthdate , Getdate()) % 4 = 0 ?
February 25, 2020 at 6:29 pm
A little normalization is a beautiful thing. Your problem is that your table fails the 1NF test, so you have to use DelimitedSplit8K to break up that delimited string into...
February 24, 2020 at 10:41 pm
If you're adding one column to another, like [column A] + [column B], you can use
CASE WHEN [some column] = 0 THEN <true part> ELSE <false part> END
where the True...
February 24, 2020 at 8:59 pm
Oh, okay. I'll try it out. Thanks, Phil!
February 24, 2020 at 8:06 pm
Viewing 15 posts - 796 through 810 (of 3,507 total)