Viewing 15 posts - 991 through 1,005 (of 13,838 total)
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
Is there any possibility of educating the person maintaining the table in the ways of normalisation? Just add a date column to TableB and the need for fancy querying of...
February 16, 2023 at 1:28 pm
It is possible and straightforward to reset the IDENTITY property of a column after deleting rows in its table. Would that solve your problem?
February 15, 2023 at 5:28 pm
Does the number of columns vary, depending on the number of items in the order?
February 13, 2023 at 6:29 pm
Viewing 15 posts - 991 through 1,005 (of 13,838 total)