Posts by Fernando Gonçalves • 21 points
4 posts
-
0
votes2
answers177
viewsQ: Run an SQL script in transaction without it blocking other scripts accessing the same table
Can anyone tell me if there is a way I can execute an SQL Server script in transaction without it blocking other scripts that try to access the same table? I created a program in c# that accesses my…
-
0
votes1
answer62
viewsQ: SQL execution pouch while executing another program in transaction
I created a program that accesses my database in transaction READ UNCOMMITED. _oConn.BeginTransaction(IsolationLevel.ReadUncommitted, _transactionName); Everything that runs within that transaction…
-
1
votes2
answers248
viewsA: Error while trying to connect to another Rabbitmq server
I found the solution to my problem. It was necessary to change the door. Port = AmqpTcpEndpoint.UseDefaultPort, Then my connection code got that way: var factory = new ConnectionFactory() { HostName…
-
1
votes2
answers248
viewsQ: Error while trying to connect to another Rabbitmq server
I am trying to send a message to another machine in my network that already has the rabbitmq installed. The following error occurs: Error message: None of the specified endpoints Were Reachable When…