T.Tran
T.Tran

Reputation: 1

how to change the path of the preference files in PL/SQL Developer version 9

my pl/sql developer give me an error (file access denied) every time I execute a sql statement in sql window. it is running fine in command window. when I look in support info I notice the Preference files are located as follow

Preference Files

C:\Program Files\PLSQL Developer\Preferences\Default\Default.ini C:\windows\system32\config\systemprofile\AppData\Roaming\Preferences\USER\default.ini

and I don't have access to this file hence I got the error. C:\windows\system32\config\systemprofile\AppData\Roaming\Preferences\USER\default.ini

is there a way to change the path to

C:\Users\USER\AppData\Roaming\PLSQL Developer\Preferences\USER\Default.ini

thanks inadvance

Tuan

Upvotes: 0

Views: 3695

Answers (1)

William Robertson
William Robertson

Reputation: 16001

There is a prefpath command-line argument, so you can start PL/SQL Developer using something like:

"C:\Program Files (x86)\PLSQLDeveloper\plsqldev.exe" userid=un/pw@svc prefpath="%APPDATA%\Preferences"

Upvotes: 0

Related Questions