据我所知,已经运行了很久的代码行突然停止工作,现在它正在抛出一个AccessViolationException:
异常:
System.AccessViolationException was unhandled
Message=Attempted to read or write protected memory. This is often an indication that
other memory is corrupt.
Source=Sybase.Data.AseClient
StackTrace:
at Sybase.Data.AseClient.AseConnecti
我正在寻找连接到PyCharm中的Sybase数据库。从可用的软件包和终端安装时,我收到以下错误:
(venv64) C:\Users\xxxx\Documents\PyCharm\EOM_ML_201901>pip install sybase
ERROR: Could not find a version that satisfies the requirement sybase (from versions: none)
ERROR: No matching distribution found for sybase
(venv64) C:\Users\xxxx\Document
我正在尝试编写一个SQL查询,它需要在Sybase和Oracle数据库上都兼容。该查询如下所示:
SELECT *
INTO new_table
FROM other_table
该查询在Sybase数据库上运行良好,但在Oracle数据库上运行不佳。我找到了Oracle的等价物:
CREATE table new_table AS
SELECT *
FROM other_table
有没有办法编写第三个查询来做同样的事情,并且可以在Sybase和Oracle数据库上执行?