You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been working with PostgreSQL again and i'm doing a communication between sql server 2005 and PostgreSQL 9.6. I used the Foreign Data Wrapper odbc_fdw.
I created with no problem like 11 foreign tables. But the last one, when i create imports all fields, but there's two fields that doesn't show the data. One is varchar type and the other is int type.
My query fixed to 3 fields only to show:
create foreign table nathalia.m_itinerario(
MRN varchar(100),
dep_temporal varchar(8) NULL,
Sec_itinerario int NULL
)
server sqlserver2005
options(database 'Nathalia', schema 'dbo', sql_query 'select * from m_itinerario');
The fields MRN and Sec_itinerario sends me the data Null and dced me from the postgres server.
Any idea why?
The text was updated successfully, but these errors were encountered:
I have been working with PostgreSQL again and i'm doing a communication between sql server 2005 and PostgreSQL 9.6. I used the Foreign Data Wrapper odbc_fdw.
I created with no problem like 11 foreign tables. But the last one, when i create imports all fields, but there's two fields that doesn't show the data. One is varchar type and the other is int type.
My query fixed to 3 fields only to show:
create foreign table nathalia.m_itinerario(
MRN varchar(100),
dep_temporal varchar(8) NULL,
Sec_itinerario int NULL
)
server sqlserver2005
options(database 'Nathalia', schema 'dbo', sql_query 'select * from m_itinerario');
The fields MRN and Sec_itinerario sends me the data Null and dced me from the postgres server.
Any idea why?
The text was updated successfully, but these errors were encountered: