Viewing 15 posts - 2,446 through 2,460 (of 2,567 total)
Really really depends on the volumes you are going to be loading, how many times you need to do it and on the whole infrastructure you have to play with.
February 17, 2017 at 3:56 pm
January 24, 2017 at 5:20 pm
Looks like normal issues with loading onto cluster indexes.
As the table is partitioned the fastest way would be to populate staging tables per partition and then using the...
January 16, 2017 at 6:34 am
as an advise whenever doing this type of conversions always select the individual parts on their own to see what the resulting value is.
SELECT SUM(vol)
FROM TABLE
January 13, 2017 at 2:06 am
January 12, 2017 at 12:05 pm
in Addition to the above (really hard to read forums now) it seems a tad bit slower loading the forums initial page.
January 12, 2017 at 3:55 am
why not the 2013 or even the 2016 version of the ACE driver?
2013 - https://www.microsoft.com/en-ie/download/details.aspx?id=39358
2016 - https://www.microsoft.com/en-ie/download/details.aspx?id=50040
You do not need to buy any special product in...
January 11, 2017 at 1:28 pm
If the server is Clustered then only TEMPDB can be on the local SSD
If it isn't then placing the DB on SSD could be an option.
And regular backups (every...
January 11, 2017 at 1:19 pm
you need to change that bit of code to be dynamic sql - that way you can check for the existence of the column and only execute it if available
January 11, 2017 at 2:38 am
you do not need visual studio - it is advisable, but not a requirement.
SSDT will install on its own a Visual Studio Shell which contains all that is needed to...
January 10, 2017 at 2:36 am
One thing I would look at is splitting the call to the function dates into temp tables.
e.g. get distinct values of the dates that are being passed to the functions,...
January 6, 2017 at 11:04 am
change that foreach to a parallel.foreach is probably an option.
https://msdn.microsoft.com/en-us/library/dd460720(v=vs.110).aspx has a simple example.
and if required look for other examples on the net.
December 21, 2016 at 3:09 am
Thanks Steve. Indeed no pun intended with RTFM.
David, as per the link I added (from the manuals) there are indeed ways to do it - JDBC from what i could...
December 20, 2016 at 12:06 pm
Viewing 15 posts - 2,446 through 2,460 (of 2,567 total)