Viewing 15 posts - 2,341 through 2,355 (of 2,857 total)
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
It might just be me, but I think you are making this more complicated than it needs to be.
The way I would do it would be to have...
July 18, 2017 at 2:35 pm
I can answer some questions too. I'm kind of like Danny_Dba though in that there are some questions I wont' be able to answer.
I have been a DBA...
July 18, 2017 at 12:02 pm
I had not read that, but it was a fun read. I do...
July 17, 2017 at 2:18 pm
Viewing 15 posts - 2,341 through 2,355 (of 2,857 total)