Viewing 15 posts - 2,386 through 2,400 (of 2,905 total)
I could be wrong, but I think the problem is you are doing incorrect data type conversion.
You are dividing an int by an int which will produce an int....
July 21, 2017 at 2:24 pm
July 20, 2017 at 2:56 pm
July 20, 2017 at 2:32 pm
No problem. As for IT being repetitive, it depends on where you work as well. Where I work, I was slowly building up a list of canned responses to people...
July 20, 2017 at 1:50 pm
The best approach (from my understanding) is to not force reuse of old values. The primary key, for best performance, should be an ever increasing value.
Why do you...
July 20, 2017 at 12:26 pm
So 1/6 of your data has the longest MethodNames. This is likely part of what is causing the slowness.
What is the max length of that column?
Also, what...
July 20, 2017 at 12:17 pm
We have things set up that way where I work.
The only thing you need to be careful of is that SSIS operates in separate memory space than SQL...
July 20, 2017 at 11:17 am
July 20, 2017 at 10:38 am
One more thing that I don't understand is - if I remove the column
July 20, 2017 at 10:02 am
It is free and works for most things. Anybody who has worked with a 2012 SSIS catalog (possibly 2014 and 2016 as well... I did not test those) has probably...
July 20, 2017 at 9:10 am
July 19, 2017 at 2:36 pm
Not to be mean, but if you can't adjust the query and you can't de-duplicate the data, what do the developers think you can do?
The only other option...
July 19, 2017 at 11:10 am
Looking at the execution plan, the slowness appears to be caused by the sorting which is due to the DISTINCT.
It looks like you have a LOT of duplicate...
July 19, 2017 at 10:30 am
1 - My education is some university, no degree. Plus I got my MTA in database fundamentals. Experience is 7 years as a database administrator and current position database administrator
July 18, 2017 at 3:42 pm
Ok, if you need to sum those up, you would want something more like:SELECT TOP 1 passenger_name, fare + commission + gst AS total_cost
FROM ##invoice
WHERE...
July 18, 2017 at 2:55 pm
Viewing 15 posts - 2,386 through 2,400 (of 2,905 total)