Viewing 15 posts - 2,356 through 2,370 (of 13,870 total)
I am pretty sure that if the SSIS service is not running, you can't do most SSIS related tasks such as deploying to an SSIS catalog.
I am a little...
October 22, 2020 at 8:45 pm
I don't know EF well enough to comment on that, unfortunately.
October 22, 2020 at 11:57 am
Using more appropriate data types:
DECLARE @hFrom TINYINT = 9
, @mFrom TINYINT = 0
, @hTo ...
October 22, 2020 at 11:55 am
Don't let your use of EF force you never to use temp tables, because sometimes temp tables are the best tool for the job!
For these procs, is there a final...
October 21, 2020 at 9:12 pm
Rather than assuming what the optimiser is doing, please check the execution plans to be sure.
What indexes and keys do you have on HubHistoryData?
October 21, 2020 at 9:04 pm
Locking?
October 21, 2020 at 3:55 pm
You might find performance improvements if you use this method instead.
October 21, 2020 at 3:39 pm
I have not tried this before, but have you experimented with Shared Datasets?
If you were to create one which included the calculated 'time difference' column, you could then create another...
October 16, 2020 at 3:28 pm
OK. The Previous() function should get you the value of a data item from the previous row, which you can then use to calculate the time difference. I'm not...
October 16, 2020 at 3:01 pm
?Well I have always used Daton's SQL connector for my Warehousing. You can add any Data Source here in a single place
Unless you are going to justify this...
October 16, 2020 at 2:22 pm
Do you have to do this in SSRS, or can you do it within the source query?
October 16, 2020 at 2:16 pm
Put *.* in the filespec of the Foreach loop and it will pick up whatever file is in the folder, regardless of name.
October 15, 2020 at 9:54 pm
Thanks Phil. As suggested by you i could see buffer setting has already changed 50% more from default, fast load option is already enabled, table lock to destination table...
October 15, 2020 at 1:55 pm
Database security is one of those things which in my experience is difficult to handle within SSDT.
It can be handled in environment-aware post-deployment scripts, or completely outside SSDT. Outside SSDT...
October 14, 2020 at 4:15 pm
Viewing 15 posts - 2,356 through 2,370 (of 13,870 total)