|
|
Re: Pro*C - how to compile with SQLCHECK when access to meta-information requires a SET ROLE [message #496504 is a reply to message #496495] |
Mon, 28 February 2011 11:14 |
|
Agitatra
Messages: 2 Registered: February 2011
|
Junior Member |
|
|
Dear Michael,
thanks a lot for the fast reply!
However...
O.K. this is a bit embarrassing - outing me as a newbie, but what is the: "development server" and how do I activate roles in it?
I currently call: "proc" form the command line, having the database access parameters in the default configuration file. Do I have to put any parameters in there, into another configuration file or some place else?
Do you mean by: "development server" the actual database? In this case I'm doomed, I'm afraid. The only database that I can use for this purpose is the production database, and I neither have the slightest chance to alter it, nor is it possible to get get its schema. Even if something like it might exist, I won't get access to it.
Again, thanks a lot.
Cheers
Mark.
|
|
|
Re: Pro*C - how to compile with SQLCHECK when access to meta-information requires a SET ROLE [message #496509 is a reply to message #496504] |
Mon, 28 February 2011 11:31 |
|
Michel Cadot
Messages: 68732 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
Quote:what is the: "development server"
it is the one on which you develop and compile your program.
Quote:how do I activate roles in it?
Ask your DBA to grant the roles by default to the account you compile the program with.
Quote:Do I have to put any parameters in there, into another configuration file or some place else?
You have to give the connection parameter either in the configuration file or on the proc command line.
Quote:The only database that I can use for this purpose is the production database
Developer should have NO access to the production server.
Create a database to develop on it.
Regards
Michel
|
|
|