Viewing 15 posts - 991 through 1,005 (of 13,841 total)
Your post raises some interesting points.
I can only take the senders word for it.
I wouldn't, but your way leads to an easier life!
Would you be prepared to share the code...
March 24, 2023 at 8:51 am
The FORMAT() function performs notoriously poorly. If you are processing a lot of data, I suggest you remove it and find another way (either in code, or using Excel or...
March 23, 2023 at 4:35 pm
It may be an integer-division issue.
Try multiplying by 100.0 first, to force a decimal calculation:
Successful Picks * 100.0 / Total Picks
Note also that you have misspelled 'successful'.
March 23, 2023 at 1:04 pm
I assume no one is suggesting that the act of sending this file is adding those characters?
You should be able to prove that the file structure has changed by using...
March 23, 2023 at 8:12 am
Also, why not just use
ORDER BY BusinessEntityID, OrderDate
?
It might perform better.
March 22, 2023 at 12:59 pm
Define 'properly'. It looks OK to me, unless you want to sort on the name of the month, rather than its ordinal.
March 22, 2023 at 12:36 pm
Having a single, multifunctional behemoth package is generally regarded as bad practice. Better to add five execute package tasks to your master package rather than copy everything in.
If these child...
March 19, 2023 at 10:03 pm
If you had the following two rows, which value would you select for Col4, and why?
(1,2,3,4), (1,2,3,5)
March 16, 2023 at 8:35 am
Add a data conversion component between source and destination to change the datatype of Symbol as required.
March 15, 2023 at 8:06 am
Some observations:
March 8, 2023 at 7:07 am
I'd be interested to hear how long the new version takes.
March 4, 2023 at 10:24 am
I have not opened that attachment. Rather than 'JOIN' it sounds more like you want to concatenate.
Look up the CONCAT() function. It will help you with this.
March 3, 2023 at 7:43 am
If everything about the SELECT is static other than this 'value', you may be able to create a table-valued function (link) for them.
February 21, 2023 at 11:15 am
My suggestion is to look again. I just searched for this and found such a script on my first attempt. Remember, XML files are just text files.
February 16, 2023 at 5:39 pm
Have you looked at the Execution Plans?
February 16, 2023 at 1:31 pm
Viewing 15 posts - 991 through 1,005 (of 13,841 total)