smartquerry read only
-
sbslavonac
- Posts: 35
- Joined: Mon 02 Apr 2007 09:14
smartquerry read only
After installing version 6.05, all queries are set to read only when user connect.
I can work normally but useres keep getting read only error when trying to modify records.
Has anything changed on user rigths in 6.05
Boris
I can work normally but useres keep getting read only error when trying to modify records.
Has anything changed on user rigths in 6.05
Boris
-
sbslavonac
- Posts: 35
- Joined: Mon 02 Apr 2007 09:14
Found what was changed.Plash wrote:We could not reproduce the problem. Please describe the problem more detailed. Specify the SQL text for the TSmartQuery component that is read-only, and the script to create tables used in the query.
Select statment on table with no primary key
Select rowid, t.* from test_data
and using ROWID for insert, update... switches querry to readonly if user is not shema owner
while
Select t.rowid, t.* from test_data
work normaly for all users
In my scenario the following query is readonly
And this is readwrite :
I'm connecting with a different user then systools. And SYST_PARAM_VALUE is a public synonym.
All based on 6.10.
Any ideas?
Greetings
Jens
Code: Select all
SELECT V.*, ROWID
FROM SYST_PARAM_VALUE V And this is readwrite :
Code: Select all
SELECT V.*, ROWID
FROM systools.SYST_PARAM_VALUE V
All based on 6.10.
Any ideas?
Greetings
Jens