Please be aware that the SAP SQL Anywhere Forum will be shut down on August 29th, 2024 when all it's content will be migrated to the SAP Community.

Details: QuickBooks Enterprise 14.0 MS Access 2013

I have successfully imported several QuickBooks tables into MS Access however when I attempt to import some tables I get the following message: ODBC—call failed. [Sybase][ODBC Driver][SQL Anywhere]Permission denied:you do not have permission to select from “v_SalesOrder” (#-121)

I found this chart:

Permission denied: %1 
Error constant  SQLE_PERMISSION_DENIED
ODBC 2 state    42000
ODBC 3 state    42000
Parameter 1 Description of the type of permission required.
Severity    16
SQLCODE -121
SQLSTATE    42501
Sybase error code   262
  Probable cause
You do not have the required permission to perform the specified action. 
The message specifies the actual permission required and the object being acted upon. 

Can anyone point me where I need to look?

asked 10 Oct '14, 14:46

HappyJohn's gravatar image

HappyJohn
30113
accept rate: 0%

edited 10 Oct '14, 17:39

Breck%20Carter's gravatar image

Breck Carter
32.5k5417271050


In simple terms, the user (ie the database user id in your ODBC DSN or your connection string) you have used to connect to the SQL Anywhere database doesn't have SELECT rights on the table/view v_SalesOrder. You need to connect with a different user id with the appropriate rights or you could connect as DBA and grant the rights to the user id (e.g. GRANT SELECT ON v_SalesOrder TO <USER ID>)

In SQL Anywhere (like most RDMSs) each database user can be given different rights to the various objects in the database - i.e. some users may be given all rights to everything, others just allowed to read data from a sub-set of tables.

What I can't tell you is whether QuickBooks will allow you to do that - it maybe that the user rights they are giving simply won't permit that. You would need to contact your QB support.

permanent link

answered 10 Oct '14, 15:07

Justin%20Willey's gravatar image

Justin Willey
7.7k137179252
accept rate: 20%

edited 10 Oct '14, 15:11

QuickBooks support could NOT come through. I have QB admin privileges and I gave myself QB table access to the "QBReportAdminGroup" and all other available groups. And then I had access to all the QBReportAdminGroup tables. In MS Access I could see QBAdvancedReportGroup tables however even with my QB admin rights, QBAdvancedReportGroup was not even listed as an available group to give myself access. One QB user said these tables weren't available. Thank you...your answer helped me to clarify my thoughts...

(10 Oct '14, 18:45) HappyJohn
Replies hidden

Is there a possibility that "v_SalesOrder" is not a table but a view and you have not granted permission to views? I'm not sure whether MS Access would show/list views in the same way as tables...

(12 Oct '14, 14:48) Volker Barth

In MS Access I could see QBAdvancedReportGroup tables however even with my QB admin rights, QBAdvancedReportGroup was not even listed as an available group to give myself access.

If my understanding is correct, then "QBAdvancedReportGroup" is a SQL Anywhere user group. Such a group won't be listed in MS Access because MS Access has a totally different user/group management concept. It should be sufficient to grant the permissions on the SQL Anywhere side, and then the corrsponding tables/views/stored procedures and the like should be listed in MS Access. Do you use its Table Import Wizard?

(13 Oct '14, 03:37) Volker Barth
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×16

question asked: 10 Oct '14, 14:46

question was seen: 7,632 times

last updated: 13 Oct '14, 03:37