The query I made in oracle does not work with the linked server with SQL Server 2008.
OLE DB provider "MSDAORA" for linked server "ORACLE" supplied incorrect metadata for column "DATETIME_INS". The data type is not supported.
Inquiry:
select * from ORACLE..U_GERAN.CELLSTATS4
What modification needs to be done to complete the request.
Try
SELECT * FROM OPENQUERY(ORACLE, 'select cast(DATETIME_INS as DATE) from U_GERAN.CELLSTATS4')
You can add other columns to the query after this column has worked.
Source: https://habr.com/ru/post/1403427/More articles:Download PDF file and save to SD card - javahow to find the point closest to most points when we have some blocks between them! (in 2D array - Snake Game) - algorithmIf debugable is set to false or true, it does not change anything - androidWhat is the complexity of the time and space of the FP-Growth algorithm? - algorithmBarcode image processing with Delphi 6 using StretchDIBits - Missing dashed lines at the output - image-processingASP.NET MVC: how is this possible? The parameter dictionary contains a null entry for the parameter 'x' - performanceWhy does Mahout not yet have linear regression - mapreduceCan I reuse the SOLR instance that comes with Tridion? - c #I2C slave receiver on stm32f4 - embeddedIs there a markup language to describe the values? - textAll Articles