Posts by Tábata Gonçalves • 143 points
6 posts
-
0
votes1
answer71
viewsQ: Service Bus - Performance Test with Service Bus
I need to do performance tests on Microsoft Bus Service. I am using jmeter for performance test, understand that the Jmeter can be configured to put messages, someone knows how I can configure the…
-
1
votes0
answers87
viewsQ: Creating Azure Cosmos DB Collections
Well I was creating a Poc with Generic Interface for handling my data, but I had difficulties to do with Webapi MVC, I did with good old MVC. But for the whole JSON issue, I think I lose a lot if I…
-
1
votes2
answers872
viewsA: Update only in one column character - Oracle
Good do not know the DBA rules of your system, but it is not recommended this kind of column name. If your question concerns the registration of the Address/Lougradouro column: update table set…
-
7
votes1
answer542
viewsQ: Difference between Absolute Expiration and Sliding Expiration
I am doing a POC with generic cache in C# and followed a model that shows Absolute Expiration and Sliding Expiration. Some could explain these concepts better to me? //This is for Absolute…
-
3
votes5
answers1059
viewsA: Is it possible to convert a 16-bit number to a single byte?
A 16-bit value is best represented as a short instead of int for using Bitconvert.Getbytes(short). So as an alternative: byte lowByte = (byte) (numero & 0xff); byte highByte = (byte) ((numero…
-
1
votes2
answers967
viewsA: Add and split results in the same query
Good morning Diego, I would separate to not give problem with aggregation, because at first we think of Subquery, but I think so can arrive at the same result. I hope it helps! DECLARE @Total…
mysqlanswered Tábata Gonçalves 143