Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Qlikview ODBC error Teradata

Hi Experts,

I am getting below ODBC error while trying to reload data from Teradata connection:

"SQL##f - SqlState: S1000, ErrorCode: 0, ErrorMsg: [Teradata][ODBC Teradata Driver] Major Status=0xd0000 Minor Status=0x80090303-Failure ODBC CONNECT TO TD1"


ODBC driver is working fine if I do just select. Only during reload I am getting this error.

Any help will on this please? I did some google but didnt get any resolution. I tried OLE DB as well, but that has its own set off issues which I think better to avoid for the scope of this discussion.

Thanks,

Debi

2 Replies
Anil_Babu_Samineni

Can you set this before load statement and then run

SET ErrorMode = 0;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Not applicable
Author

Thanks Anil,

I added that in script and now my script looks like below:

SET ErrorMode = 0;

ODBC CONNECT TO TD1;

SQL SELECT * FROM "PDL_BASE_VIEWS"."ADDRESS_D";

But now there is no error, but no output as well.