Question : Error message "INSERT permission denied on object 'tblTableName'

Hello,

Thank you for looking at my question.

I have written a small VB routine that should insert record to a SQLServer table - in fact on my pc it does precisely that. However, from another machine it doesn't.

The connection string is attached:

The connection to the SQL Server database is by ODBC connection on each pc with NT authentication of the user.

The user and the account in the connection string both have INSERT permissions on the table tblInvRegister.

Can anybody help?


Thank you
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
Set dbInvoice = New Connection
    dbInvoice.CursorLocation = adUseClient
    dbInvoice.Open "PROVIDER=MSDASQL;dsn=SCLSystem;uid=anodising;pwd=xxxxx;database=SCLSystemSQL;"
 
    Set adoInvoiceRS = New Recordset
    adoInvoiceRS.Open "SELECT * FROM tblInvRegister", dbInvoice, adOpenStatic, adLockOptimistic
    
    intRecs = adoInvoiceRS.RecordCount
    
    adoInvoiceRS.MoveLast
    
    With adoInvoiceRS
        .AddNew
Open in New Window Select All

Answer : Error message "INSERT permission denied on object 'tblTableName'

as by the error message, the permissions are missing.
eventually, dsn=SCLSystem is pointing to another server?
Random Solutions  
 
programming4us programming4us