ODBC Magento SQL
Posted: Sun 23 Apr 2017 20:35
This query gets no errors
Select *
FROM openquery(MLT_MAGENTO,'Select *
from SalesOrders s where s.updated_at >= ''2017-04-22''')
This query returns an error.
[Devart][ODBC][Magento]Error accessing web service. Allowed memory size of 536870912 bytes exhausted (tried to allocate 32 bytes)
Msg 7350, Level 16, State 2, Line 14
Cannot get the column information from OLE DB provider "MSDASQL" for linked server
Select *
FROM openquery(MLT_MAGENTO,'Select *
from SalesOrders s where s.updated_at >= ''2017-04-22'' and s.updated_at <= ''2017-04-23''')
I am not sure what is going on.
Select *
FROM openquery(MLT_MAGENTO,'Select *
from SalesOrders s where s.updated_at >= ''2017-04-22''')
This query returns an error.
[Devart][ODBC][Magento]Error accessing web service. Allowed memory size of 536870912 bytes exhausted (tried to allocate 32 bytes)
Msg 7350, Level 16, State 2, Line 14
Cannot get the column information from OLE DB provider "MSDASQL" for linked server
Select *
FROM openquery(MLT_MAGENTO,'Select *
from SalesOrders s where s.updated_at >= ''2017-04-22'' and s.updated_at <= ''2017-04-23''')
I am not sure what is going on.