Viewing 15 posts - 3,436 through 3,450 (of 13,855 total)
If they really are NULL (and not just empty strings), simply add a WHERE clause to your query:
WHERE NOT (LoanID IsNull and LoanNum is NULL)
July 12, 2019 at 3:44 pm
For each file Extract the patient Id from the file name Check whether the extracted patient Id matches a row in the SQL Server lookup table If a match...
July 11, 2019 at 8:37 pm
Is this the required process? If not, what is?
For each file
Extract the patient Id from the file name
Check whether the extracted patient Id matches a row in...
July 11, 2019 at 7:22 pm
Hi - Need your help in this. Below is the scenario : 1. I have got of files with the format (Name_ID_PatientID_currenttimestamp.pdf), these files are generated daily. Highlighted yellow...
July 11, 2019 at 6:48 pm
You could also write the above as follows, which may be easier to read
with all due respect, such constructions are "easier to read" if you...
July 11, 2019 at 2:45 pm
So the number of columns returned = (number 0f commas + 1), is that correct?
What happens if the number of commas varies by input data row?
What should the columns be...
July 11, 2019 at 2:30 pm
I was using join in wrong order as i should use Dev as driver table instead of addrs in join conditions. but only issue with this as it's pulling NULL...
July 11, 2019 at 1:39 pm
I do not have a solution, though maybe there is a a clumsy workaround.
Use the Transfer All Jobs option, then adapt your existing T-SQL to drop those jobs on the...
July 10, 2019 at 7:09 pm
To (INNER) join table T1 in database DB1 to table T2, in database DB2, you can use this syntax (assuming you are running the query from the context of DB1)
SELECT...
July 10, 2019 at 6:39 pm
I ran the query using your formatted query but it's just executing (running almost 7 minutes and still running) as looks like because of the CROSS JOIN, it's doing...
July 10, 2019 at 3:48 pm
I have a text file where the data looks like below, i want to keep this in excel file WEST|"DERF|"OIQWER.txt|"74773|"|"|"P|"XA|"|" X100|"123344|"MN|"584|"|"|"|"|"|"|"|"585488|"9.00|"|"|"|"|"|"|"|"|"OL|"|" COUNT|"3
If there's a question here, I...
July 9, 2019 at 11:35 pm
As far as I can see, BD.Morg.loan does not appear anywhere in your query. Are you sure about that error message?
Here is a formatted version of your query, which may...
July 9, 2019 at 6:39 pm
A reformatted version. Don't know how you can read the one you posted!
SELECT [Event Type] = EventType
,[Company Number] = ccro
...
July 9, 2019 at 1:35 pm
I guess I should have checked which forum I was in, before answering 🙂
July 8, 2019 at 2:07 pm
You've been here long enough to know that providing pictures is not the best way of asking for help. Instead, please provide DDL, sample data in the form of INSERT...
July 8, 2019 at 1:59 pm
Viewing 15 posts - 3,436 through 3,450 (of 13,855 total)