Viewing 15 posts - 1 through 15 (of 30 total)
I'd be interested in seeing the same type flow with a delimited file.
April 13, 2018 at 6:47 am
(Nice.) --> scratch that part. Looked good anyway 🙂
Any easy way to fix my 'NOT MATCHED' 'x' input issue?
What I need is if there is an 'x' value on...
November 1, 2016 at 1:52 pm
Thank you . Much cleaner.
I was all happy getting that part to work but missed a input case. When the user gives me a record that does not...
November 1, 2016 at 1:42 pm
Probably a better way but this seems to do what I want. Allows the users to feed me an "x" to explicitly clear a field, and if they do...
November 1, 2016 at 1:03 pm
Great, thank you. Dissecting and learning now.
The UDF is just a user defined field. A text string they can give me to tie into a different data source...
November 1, 2016 at 12:31 pm
drew.allen (11/1/2016)
You do realize that for most purposes ISNULL and COALESCE are the same. I'm confused why you think that ISNULL won't work, but COALESCE will.Drew
I figured it was...
November 1, 2016 at 10:19 am
Yes, I was not familiar with that function. That should do it. Thank you.
November 1, 2016 at 9:38 am
OK, but that's no good :ermm:
July 6, 2016 at 9:52 am
Appreciate the explanation and help. That produces duplicate rows though.
ProjectNoProjectTypeLocationChildDefFinish
abc123new 111 ...
July 6, 2016 at 9:43 am
In your sample data ProjectType was either "new" or "std" there was no empty string ('').
You are changing it to an empty string in your SELECT statement via CASE. So...
July 6, 2016 at 8:29 am
Got it. Can't use ChildDef but can just repeat the criteria that it used. I tried this to get both cases and it worked
WHERE (
p.ProjectType <> 'New' AND...
July 6, 2016 at 7:55 am
I made one small change so I get "new" or "newChild" in the ChildDef field.
How can I restrict this to just rows with one or the other of those 2...
July 6, 2016 at 7:04 am
Works, I'm digesting now. I think I was having some trouble understanding the virtual tables (my noob description) that get created in here and at what point they were...
July 5, 2016 at 1:27 pm
I thought I had a handle on this and was able to make some mods for my real problem. But I ran into an issue I didn't anticipate originally....
July 5, 2016 at 12:24 pm
Thank guys VERY MUCH. All work perfectly of course. I'm studying to dissect and comprehend the mechanics. I get it when I read it, now to get...
July 1, 2016 at 1:19 pm
Viewing 15 posts - 1 through 15 (of 30 total)