SeanMay
12-16-2008, 01:19 PM
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. http://www.utteraccess.com/forums/images/icons/smile.gif ), 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):
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_DAT E, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.CARRIER_RO UTE, 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_NAM E_TAG, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILLED_NAM E_TYPE, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILLED_CIT Y_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_NAM E, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILLED_ADD RESS, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.CUSTOMER_N AME, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.ACNA, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.ALT_EXCHAN GE_COMPANY_NAME, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.CUSTOMER_I ND, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.FINANCIAL_ DATA_MONTH INTO SWBTTESTa
FROM ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR
WHERE (((ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BAN)="6100724017966"));
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. http://www.utteraccess.com/forums/images/icons/smile.gif ), 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):
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_DAT E, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.CARRIER_RO UTE, 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_NAM E_TAG, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILLED_NAM E_TYPE, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILLED_CIT Y_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_NAM E, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BILLED_ADD RESS, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.CUSTOMER_N AME, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.ACNA, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.ALT_EXCHAN GE_COMPANY_NAME, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.CUSTOMER_I ND, ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.FINANCIAL_ DATA_MONTH INTO SWBTTESTa
FROM ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR
WHERE (((ACCESS_VIEWS_R2_V82109_ACCESS_NAME_ADDR.BAN)="6100724017966"));
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