Windows error 0x000000E9, 233

Detailed Error Information

PIPE_NOT_CONNECTED[1]

MessageNo process is on the other end of the pipe.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x800700E9.

ACTIVE_EX_WORKER_THREAD_TERMINATION[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0xE9: ACTIVE_EX_WORKER_THREAD_TERMINATION.

HRESULT analysis[3]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[3][1]
DescriptionThe default facility code.[3][1]
Error Code233 (0x00e9)

Questions

2votes
1answer

How to install and update Python Libraries into SQL ML Server instance?

I have a problem with upgrading and installing python packages on SQL Server Machine Learning Services in in-database instance. I have tried both in-database installation using pip (from the proper instance) and remote client installation using sqlmlutils library. To be more precise I had a problem when I tried to [...] read more
python
sql-server
sql-server-ml-services
2votes
1answer

Assigning a character with an acute into a C int variable

Given this C instruction: int c = 'é'; At runtime, after this instruction is executed, if I have a look at the value of c, the hexadecimal value is 0xffffffe9 when I would be expecting 0x000000e9 instead... Can you explain why it behaves like this and what I should do [...] read more
c
utf-8
character-encoding
0votes
2answers

BSOD error Windows

I have been having a bad experience with Windows recently. I am not sure what is the cause. My Motherboard and Processor is brand new, while I have already switched HDDs to no avail. I have reformated and reinstalled Win 8 numerous times already, but I always have these sort [...] read more
windows-7
bsod
0votes
1answer

RuntimeError: The type numpy.ndarray(numpy.ustr) for column is not supported

I am trying to convert python dataframe data types so that they can be returned through sql server using the sp_execute_external_scripts procedure. Some columns in particular are giving me issues. Sample data: >>> df.column1 0 NaN 1 1403 2 NaN 3 NaN 4 NaN Using the method found in another [...] read more
sql-server
python-3.x
0votes
1answer

SQL Server Python INTERNAL ERROR: should have tag

I am trying to integrate SQL Server 2017 or 2019 with Qunatlib using python. I can run Quantlib code which in this particular case is returning a Qunatlib schedule object which is an enumerated list of type Quantlib.Date. The code look like this EXECUTE sp_execute_external_script @language = N'Python', @script = [...] read more
python
sql-server
pandas
quantlib
microsoft-machine-learning-server
0votes
2answers

Porting a simple MIPS32 program to MIPS64

I am having some difficulty porting the following MIPS32 assembly program to a 64-bit equivalent. The main issue that I am facing is the following line: bgtz $s2, loop ; Branch from "loop" on "$s2" greater than zero. I am not sure why this line causes an error? The instruction [...] read more
assembly
porting
mips32
mips64
edumips64

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0