Questions tagged [escalation]
21 questions
13
votes
2 answers
Trace why a transaction is escalated to DTC
Is there any way to determine precisely why a System.Transaction TrasactionScope is being escalated to the DTC? We are hitting a bump with one of our components that seem to escalate the transaction while all other components (which seem deceptively…

soren.enemaerke
- 4,770
- 5
- 53
- 80
7
votes
5 answers
SQL Server lock escalation issue
I am reading SQL Server lock escalation from MSDN Page about SQL Server lock escalation
My question is, seems the major reason why there is lock escalation is to reduce overhead to maintain more locks (e.g. when more row locks are acquired for a…

George2
- 44,761
- 110
- 317
- 455
5
votes
1 answer
Nested TransactionScope and/or nested connections causing MSDTC escalation
I am trying to avoid MSDTC escalation in my application. I am using LINQ with SQL Server Express 2008 R2, and later will be using the full version.
I have written a database wrapper class which creates connections as necessary and disposes of them…

enashnash
- 1,578
- 1
- 15
- 36
3
votes
1 answer
Escalating Privilages in Python Script
I am looking for a way to escalate privileges within a python GUI app I'm developing. My desired model is GUFW. I like how you don't have to run the main program as root, but when you do anything "rooty," you have to "unlock" it.
I have a program…

narnie
- 1,742
- 1
- 18
- 34
3
votes
1 answer
How to determine if elevated priveleges are required to start a process without checking-by-failure
How do I go about checking whether privelege elevation is required to start a subprocess without trying first then failing?
I need to start a subprocess command from within python code. In some cases it works fine, in other cases it turns out that…

Matt Warren
- 669
- 8
- 18
3
votes
1 answer
Entity Framework 6 prevent transaction escalation when using multiple contexts that refer to the same database
I've stubled upon a problem, and I'm unable to find an answer (or my google skills are really rubbish).
Our solution is an ASP MVC4 C# website and multiple class libraries. We use MS SQL2008 and EntityFramework 6.
Let's say I've got Foo and Bar…

Andrew Jaginoff
- 71
- 5
2
votes
3 answers
C Privilege Escalation (With Password)
I need to write a C program that will allow me to read/write files that are owned by root. However, I can only run the code under another user. I have the root password, but there are no "sudo" or "su" commands on the system, so I have no way of…

AriX
- 1,647
- 2
- 18
- 24
1
vote
1 answer
Schedule a Maximo escalation for multiple days?
Dear Stackoverflow community,
In Maximo (IBM Control Desk) I have an escalation that I would like to run on 00:00 (midnight) on Tuesday and on Thursday. Using the GUI, I can only select one day and not two.
GUI
: Every (om de) 1 week (weken) on (op…

Niek Jonkman
- 1,014
- 2
- 13
- 31
1
vote
1 answer
ansible lookup plugin privilege escalation does not seem to work
It seems that the ansible lookup plugin does not adhere to privilege escalation and it is not clear to me if this is by design.
I have looked for an answer to this, but though I have found many similar questions, I haven't yet seen one which seems…

Marco Mazzucco
- 91
- 6
1
vote
2 answers
Ansible privilege escalation prompt problem
---
- name: Transfer and execute a script.
hosts: jumpbox
remote_user: pppruser
any_errors_fatal: true
gather_facts: no
become: true
become_method: su
become_user: splunk
become_flags: '-s /bin/sh'
tasks:
- name: Transfer the…

Prithiviraj Pandurangan
- 21
- 1
- 3
1
vote
2 answers
What is the difference between interrupting escalation event and error event?
As I understand escalation event is used to inform parent process. If escalation event is interrupting, it means that regular flow will be ignored and a new flow will be handled. But it is similar to error event. What is the difference?

Montroz
- 73
- 1
- 2
- 14
1
vote
2 answers
How to privilege escalate www-data when you're logged in as www-data
On Linux, how can I give www-data more permissions/privileges when I am logged in as that user? whoami = www-data
A bit of background. I have performed an ethical hack on a web application, I have managed to upload a file by bypassing the extension…

D14
- 19
- 1
- 1
- 3
1
vote
2 answers
Finding cause of Lock escalation
While running SQL Server Profiler I reached some Lock:Escalations. When I searched for Statements having same SPID as Lock:Escalation event I realized that one of delete statements causes this.
Is there any way to find out why lock escalation in…

romsac
- 67
- 8
1
vote
1 answer
Avoiding Escalation to DTC for SQL Azure
I was testing my code by disabling MSDTC and wanted to make sure that no transaction within my code gets escalated(Trace why a transaction is escalated to DTC). Now the code seems to work fine and there isn't any peoblem related to DTC. Should I be…

imrn
- 297
- 2
- 12
0
votes
0 answers
MSDTC error on different databases, same server
I'm currently trying to correct this error:
System.Transactions.TransactionManagerCommunicationException: Network access for Distributed Transaction Manager (MSDTC) has been disabled. Please enable DTC for network access in the security…

CMPerez
- 905
- 1
- 10
- 25