Windows error 0x8004D008, -2147168248

Detailed Error Information

XACT_E_ISOLATIONLEVEL[1]

MessageThe requested isolation level is not valid or supported.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode4 (0x004)
NameFACILITY_ITF[2][1]
DescriptionThe source of the error code is COM/OLE Interface management.[2][1]
Error Code53256 (0xd008)

Questions

1vote
1answer

Neither the isolation level nor a strengthening of it is supported

Using > Microsoft SQL Server 2008 (SP1) Trying to create transaction like so: OleDbConnection con; OleDbTransaction transaction = null; ... transaction = con.BeginTransaction(IsolationLevel.Snapshot); And get error: > System.Data.OleDb.OleDbException (0x8004D008): Neither the isolation level nor a strengthening of it is supported. > at System.Data.OleDb.OleDbTransaction.ProcessResults(OleDbHResult hr) > at System.Data.OleDb.OleDbTransaction.BeginInternal(ITransactionLocal > > > [...] read more
sql-server
database
sql-server-2008

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0