Viewing 15 posts - 1,846 through 1,860 (of 2,701 total)
good feedback.
If you don't mind do also gives the SSQL function and how its used - we may be able to help with it.
December 18, 2019 at 2:29 pm
no need for Memory Optimized.
example
create table abc
(id int)
create clustered columnstore index CCI_abc on abc with (data_compression = columnstore)
December 17, 2019 at 2:17 pm
no issues - but if you install Developer edition that is either a non prod server or you are breaking licensing terms.
Developer is not a downgrade at all - can...
December 17, 2019 at 2:14 pm
If you license your box for SQL Enterprise and if you have software assurance costs do not increase with virtualization. Without SA or with SQL Standard then yes it does...
December 17, 2019 at 10:16 am
great - do get back to us with performance stats - although as mentioned before doing it SQL alone would also work.
with this you should be able to process all...
December 16, 2019 at 11:28 am
I'll see if i get time to do that over next few weeks
will be able to test both with SAN based servers and with PC based SSD and SATA
December 16, 2019 at 11:23 am
For your example you would be much better off, in terms of performance, by having an update followed by an insert:
UPDATE p
...
December 15, 2019 at 10:58 pm
it is working as expected - you are matching on product name - "TEA" - no record exists so both are inserted.
Note that the error would happen even with a...
December 15, 2019 at 8:13 pm
can you post the full code - in pm if required - it does look ok and I dont see an error on its own
December 14, 2019 at 5:13 pm
this is a example based on your own code
Define the output columns as required, add the required variables as read only variables and within the script add the following code
from...
December 12, 2019 at 7:10 pm
If you're also looking into overall performance, don't neglect to specify both BUFFERCOUNT and MAXTRANSFERSIZE.
Yup - I did that in a few cases where squeezing any amount of time...
December 12, 2019 at 5:51 pm
Note that the domain account in this case should be a GMSA/MSA account - not a normal user account.
If this is not the type of account you created/used I would...
December 12, 2019 at 7:42 am
good to see that at least 2 members did understand what I was stating about count(*) vs count(1).
Brahmanand stated that "count(*) would need to read all data from the table"...
December 12, 2019 at 12:27 am
from my personal testing over the years splitting onto 4 files even if they are on the same destination disk will normally yield best results than 1 or 2 files...
December 11, 2019 at 9:35 pm
its not for all things - I have a particular case on a DB that I am working at the moment.
big table - 150 Million records -
Most common sql on...
December 11, 2019 at 7:56 pm
Viewing 15 posts - 1,846 through 1,860 (of 2,701 total)