Viewing 15 posts - 1,531 through 1,545 (of 2,701 total)
have a look at the following links - they contain some good information even if not exactly what you are asking for.
and you may have seen some of them already.
May 13, 2020 at 7:45 am
you may need to speak with the supplier of the file and see how they are generating the file.
you could also try HxD (https://mh-nexus.de/en/hxd/) to edit the file and pick...
May 12, 2020 at 10:59 pm
you may need to look at adding a codepage to your bulk insert command
or alternatively use powershell - but again you will need to specify the correct codepage to load...
May 12, 2020 at 7:14 pm
it can be SQL Server - but without the code for both procs there's not much we can say
May 12, 2020 at 10:46 am
nearly there as not too hard to put a sample code was it?
unpivot has one small issue - the columns need to be hardcoded (or dynamic SQL used) and they...
May 12, 2020 at 10:25 am
when volume of data changes so change plans - sometimes its just that.
could you supply us with the new explain plan - maybe that will tell us why but fact...
May 12, 2020 at 6:36 am
lets see if I can
a recursive CTE works by having a "anchor" set - that is the sql before the union. - this is the start point for all records...
May 11, 2020 at 9:21 pm
I think that you can do that using another CTE.
and I do advise the use of () around the formula blocks so there is no ambiguity of what is calculated...
May 11, 2020 at 7:36 pm
google for unpivot - or use a outer apply selecting each column and its value with a case statement and a group by
when you have some code showing what you...
May 11, 2020 at 5:56 pm
SSDT is for the client machine to develop the packages - Not to be installed on the server
Note that to load CSV/Excel files you do not need SSDT - that...
May 9, 2020 at 2:00 pm
if you are working with SQL 2019 and get R configured and up and running you can write Excel files with it - and probably easier than with SSIS
There was...
May 9, 2020 at 12:33 pm
did you try cleaning the query and using exists instead of not in ?
Assuming that the query is exactly as you supplied the following could be changed - may or...
May 8, 2020 at 9:19 pm
Adding to the sql from Chris above.
you wanna search for any module that has
you also need to look for...
May 8, 2020 at 8:16 pm
if only the where is generated but remaining query remains the same maybe changing it slightly could influence QE to choose a different path.
note that for the following the index...
May 7, 2020 at 4:36 pm
Something that seems a bit obvious to me but hasn't actually been posted in this thread is that you really need to simplify your proc. Anything that is 3300...
May 7, 2020 at 2:27 pm
Viewing 15 posts - 1,531 through 1,545 (of 2,701 total)