Viewing 15 posts - 46 through 60 (of 251 total)
Regarding why it's slower in SSIS...SSIS needs to "validate" your query (in this case a stored procedure). It has to get metadata about the query in order to validate that...
May 13, 2019 at 12:29 pm
I sent you a private message earlier, wasn't able to reply in forum due to getting an error.
What exactly did you try and what are you using (what tool/app) to...
April 25, 2019 at 6:21 pm
Yeah I went through this with SSIS/SSDT.
That error refers to the "Microsoft Access Database Engine 2010 Redistributable" I think. You can download that from here:
https://www.microsoft.com/en-in/download/details.aspx?id=13255
There are different versions of...
April 24, 2019 at 12:32 pm
Yeah, like THROW...try putting one in a BEGIN/END block and see SQL Server complain.
April 16, 2019 at 12:35 pm
To err is human. To really foul up - it takes a computer.
April 9, 2019 at 12:30 pm
November 1, 2018 at 6:57 am
October 25, 2018 at 7:16 am
I have seen it said that EXISTS/NOT EXISTS can be faster because it can "short circuit". That is, as soon as it find a case satisfying its condition, it's done,...
October 25, 2018 at 7:13 am
I used to have an old IBM Selectric keyboard...I loved typing on that thing, my hands must have bounced 6 inches off the keyboard with every touch. I can't say...
October 17, 2018 at 6:52 am
October 4, 2018 at 1:53 pm
And the problem with a stored procedure is that you have to work around Entity Framework (with different code) to get it to work, whereas a view appears to EF...
October 4, 2018 at 7:31 am
If you're using Entity Framework (not EF Core) I'd consider using a view, not a stored procedure, for the select. If you shape the view the way the entity expects...
October 4, 2018 at 6:51 am
I kinda disagree with #27 and 30, though I guess it depends on what version of SQL Server we're talking about. I wouldn't use @@ERROR, I'd use ERROR_NUMBER() and the...
September 28, 2018 at 6:57 am
September 20, 2018 at 6:57 am
August 28, 2018 at 7:15 am
Viewing 15 posts - 46 through 60 (of 251 total)