0% found this document useful (0 votes)
126 views

How To Reset P6 R8.3 Password in Sqlite Database: Description

This document provides instructions for resetting passwords in a Primavera P6 R8.3 SQLite database. It describes downloading a SQLite database viewer application to access the database file and reset passwords by updating the users table to set passwords to null or new values. A second document discusses resetting the admin account password in Primavera applications by altering the users table using SQL*Plus commands.

Uploaded by

zikint mendeng
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
126 views

How To Reset P6 R8.3 Password in Sqlite Database: Description

This document provides instructions for resetting passwords in a Primavera P6 R8.3 SQLite database. It describes downloading a SQLite database viewer application to access the database file and reset passwords by updating the users table to set passwords to null or new values. A second document discusses resetting the admin account password in Primavera applications by altering the users table using SQL*Plus commands.

Uploaded by

zikint mendeng
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

How to reset P6 R8.

3 password in SQLite Database


August 10, 2015 by skrentala

Description

The latest version of Primavera R8.3 standalone installations uses a new database technology called SQLite.
If a user forgets their usernames and passwords and they are not the default options (admin admin) then the
following process must be followed to gain access to the SQLite database and reset the password.

Solution

An SQLite database viewer application must be downloaded and installed alongside the SQLite database
file. The database viewier is used to access the database and reset the password.

Steps

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. Extract sqlite3.exe from your download
3. Cut/paste sqlite.3.exe into the directory containing your SQLite database. (Example:
C:\Users\username\Documents\)
4. Double-click sqlite3.exe to open command prompt
5. Type the following command to connect to the P6 database

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

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

update users set passwd = null where user_name = ‘<application username>’;

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

Primavera Tricks: Resetting admin account on primavera application


February 24, 2016 Mohamed Yahia

o Symptoms : The user is unable login to primavera application .


o
o Cause: May be the user forgot his password or changed the default password.
o

 Resolution: Resetting the admin account password by altering users table.

1. Login SQL plus: sqlpus sys/<default_password> as sysdba;


2.
3. Start CMD as an administrator then type:
1. Alter “users” table:
2.

Update users Set Password=null where user_id=(select user_id from users where
user_name=’admin’);

commit; — if oraclexe

Try to Login to Primavera application with admin account with no password.

N.B: Admin account is an application account, Not a database account like: sys, system, pubuser,
admprm$pm….

How do I download SQL*Plus for Windows?


9 Answers

Jeff Smith, Senior Principal Product Manager at Oracle (2011-present)


Answered Jan 11 2017 · Author has 179 answers and 262.6k answer views

If you’d like to download JUST a command-line interface for the Oracle Database, we do have one
available. It’s SQLcl. Less than 20 MB. Just requires you have an Oracle JRE installed.

Oracle SQLcl

Supports everything SQL*Plus has to offer, plus adds much more, including:

 an inline editor - ability to edit your code as you type it


 query history/recall
 custom commands - make your own
 automatic formatting of query results to XML, CSV, JSON, INSERT statements and more
 support for client-side JavaScripting
 smart formatting of output to screen, no need to use COL commands anymore
 tab completion for table, view, and column names
24.7k Views · View Upvoters

You might also like