Viewing 7 posts - 1 through 7 (of 7 total)
Jeff, when done right, natively compiled stored procedure achieve incredible performance gains. They are compiled software (DLLs), much like C++ code. The problem is that there are many limitations and...
February 17, 2023 at 3:26 pm
I found an alternative to my specific problem. I used the identity to also sort the data and had another column that I could use to sort the data. I...
February 16, 2023 at 7:35 pm
Unfortunately, sequences are also not allowed. That was actually my very first option.
February 15, 2023 at 9:02 pm
Truncate statement is not supported for memory optimized tables.
February 15, 2023 at 6:12 pm
Reseeding of memory optimized tables are not supported; that is, DBCC CHECKIDENT ('mytable', RESEED, 0) is not supported for memory optimized table whether done inside or outside of a natively...
February 15, 2023 at 6:11 pm
Thanks everyone. I actually solved the problem by creating a memory-optimized table storing the ASCII table and querying it inside the natively-compiled stored procedure. I can add additional fields to...
February 5, 2023 at 7:04 pm
I actually didn't think of the tally table which will speed up performance, no doubt. My problem is that I need to identify all the non-printable characters and replace them...
February 5, 2023 at 12:17 am
Viewing 7 posts - 1 through 7 (of 7 total)