• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer navigation

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • Solaris
    • Oracle Linux
    • VCS
  • Interview Questions
  • Database
    • oracle
    • oracle 12c
    • ASM
    • mysql
    • MariaDB
  • DevOps
    • Docker
    • Shell Scripting
  • Big Data
    • Hadoop
    • Cloudera
    • Hortonworks HDP

Resetting an Application User’s Password in P6 Professional Using SQLite

by admin

This post explains how to reset an application user’s password for an SQLite database. There is only one P6 user per SQLite database, so if the user gets “Invalid Username or Password” and cannot remember the password, this solution can be used to reset the password.

Connecting SQLite Database

1. To connect to the SQLite database, the Command-Line Shell For SQLite is required. Download the Command Line Shell For SQLite from http://www.sqlite.org/download.html

2. You may also want to connect to the database using a GUI. Go to http://sqlitebrowser.org to download. When using the GUI, you can just type the “update” statement noted below in the Execute SQL tab to run.

Reset Application User’s Password

1. Extract sqlite3.exe from your download (Example: sqlite-tools-win32-x86-3130000.zip).

2. Cut/paste sqlite.3.exe into the directory containing your SQLite database. (Example: C:\Users\username\Documents\).

Note: It is recommended to make a backup of your existing database before proceeding. Copy/paste the PPMDBSQLite.db file to make a backup.

3. Double-click sqlite3.exe to open command prompt.

4. Type the following command to connect to the P6 database

.open PPMDBSQLite.db     ### (or use whatever file name is present on your system)

5. Run the following command to reset the password to a null (blank) password:

update users set passwd = null where user_name = '[application username]';

If you are unsure of the username, run the following query first to obtain it:

select user_name from users;

6. After running the update to null the password, select “write changes” at the top to apply the update. (For GUI only, not command line).

7. If you would like to define a new password other than null, after logging in, go to Edit > User Preferences > Password tab.

Filed Under: Oracle Apps

Some more articles you might also be interested in …

  1. How to reset your forgotten Primavera P6 user password using database query
  2. Parameters Of Different Configuration Files To Download And Upload Seed Data Types
  3. Fndload Value Set Download Upload Command
  4. How to read all modules assigned to user from Primavera P6 EPPM database
  5. FNDLOAD program Examples
  6. How to Reset a Primavera P6 Application User Password
  7. How to Change the P6 User Login Name in SQLite Database
  8. Application Engine Concepts
  9. How to check Oracle Apps/EBS version
  10. FNDLOAD Commands to Download Different Seed Data Types

You May Also Like

Primary Sidebar

Recent Posts

  • protonvpn-cli Command Examples in Linux
  • protonvpn-cli connect Command Examples
  • procs Command Examples in Linux
  • prlimit: command not found

© 2023 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright