Hi folks,
I'm an Access noobie to be sure, and although it's great that most of these macros and so forth have been setup for the user I'm trying to help, the original creator is no longer available, so we're stuck crawling on all 4s basically. I have a user who is trying to run the following query to make a table, however when he does so he receives the error, "ODBC call failed. [ncr][odbc teradata rdbms] Option Parcel information is invalid. 3749"
Running a simple query to obtain the 7 rows of information this code is supposed to pull up runs fine, however when he chooses Make Table from the menu (don't remember which one, but I assume that should be fairly obvious to an Access guru... I hope.
), it blows this error. So... it seems as though we have good access to the server/database, but I can't really find any information on the web about this particular issue and how to fix it. I've found a PDF that talks about this error and Segemented Requests, but I'm not sure if this actually pertains to our issue. Anyways, hope you can help!
Here's the code he's trying to run (when making a table):
Thanks in advance! This code was apparently working until about a week ago, so not really sure why it all of a sudden took a dump. If I can provide any relevant clues I'll be more than happy to.
Thanks in advance!
Sean
I'm an Access noobie to be sure, and although it's great that most of these macros and so forth have been setup for the user I'm trying to help, the original creator is no longer available, so we're stuck crawling on all 4s basically. I have a user who is trying to run the following query to make a table, however when he does so he receives the error, "ODBC call failed. [ncr][odbc teradata rdbms] Option Parcel information is invalid. 3749"
Running a simple query to obtain the 7 rows of information this code is supposed to pull up runs fine, however when he chooses Make Table from the menu (don't remember which one, but I assume that should be fairly obvious to an Access guru... I hope.
Here's the code he's trying to run (when making a table):
Code:
[FONT=Arial][COLOR=blue][COLOR=blue][FONT=Arial]SELECT ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BAN, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.CABS_BILL_DATE, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.JULIAN_DATE, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.CARRIER_ROUTE, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILLED_ZIP_CODE, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILLED_ZIP_SUFFIX, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILLED_NAME_TAG, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILLED_NAME_TYPE, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILLED_CITY_STATE_ZIP, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.CPNI_IND, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILL_NAME_ADDRESS_1, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILL_NAME_ADDRESS_2, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILL_NAME_ADDRESS_3, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILL_NAME_ADDRESS_4, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILL_NAME_ADDRESS_5, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILLED_NAME, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILLED_ADDRESS, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.CUSTOMER_NAME, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.ACNA, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.ALT_EXCHANGE_COMPANY_NAME, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.CUSTOMER_IND, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.FINANCIAL_DATA_MONTH INTO SWBTTESTa[/FONT][/COLOR]
[COLOR=blue][FONT=Arial]FROM ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR[/FONT][/COLOR]
[COLOR=blue][FONT=Arial]WHERE (((ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BAN)="6100724017966"));[/FONT][/COLOR]
[/COLOR][/FONT]
Thanks in advance! This code was apparently working until about a week ago, so not really sure why it all of a sudden took a dump. If I can provide any relevant clues I'll be more than happy to.
Thanks in advance!
Sean