Viewing 15 posts - 3,451 through 3,465 (of 13,874 total)
Good thought. You are correct about my current use of the REST API. Will have a go at this at some point.
July 17, 2019 at 2:54 pm
A new bump in the road with one person in the office. I'm working on a improving performance for a procedure and send it to code review with him....
July 17, 2019 at 1:29 pm
Additionally, using options such as SET ROW COUNT are session wide and prone to unintentional mistakes if it is left active. Additionally, if you are just playing in...
July 15, 2019 at 1:03 pm
It's a warning, not an error. The help text provides a reasonable explanation as to why the warning has been generated.
July 15, 2019 at 12:59 pm
The staging table / stored procedure route is the way I would go. T-SQL will likely blow away anything you can code in SSIS to do this.
July 12, 2019 at 8:52 pm
You might find that you can expand the data ranges very rapidly in T-SQL, by joining to an appropriate calendar table or numbers table (it's hard to be sure what...
July 12, 2019 at 8:18 pm
SET ROWCOUNT 10
SELECT ...
SET ROWCOUNT 0
July 12, 2019 at 8:13 pm
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
Viewing 15 posts - 3,451 through 3,465 (of 13,874 total)