I Have A Problem With Primavera 6

  • Hello There ..

    i wish from you to help me in fixing this problem in primavera 6

    i installed the program correctly and it were working very well but today i am trying to enter the username and password to enter to the program but it views for me this error message :

    Primavera

    the user is already logged in. please use another login name

    i wish to help me to fix this problem i tried to restart the pc several times but the same problem shown and when i open task manager no Primavera Process Shown .

    wish to help me as soon as possible thank you

    Hamzah Abu Safieh

  • 1. Query the USESSION table for the users 'session_id':

    select session_id from USESSION where delete_session_id is NULL and user_id = (select user_id from users where user_name = '<Enter User Name>');

    2. Delete the users records in the table UPKLIST:

    Delete from UPKLIST where session_id = <session_id>;

    3. Delete the users records in the table PROJSHAR:

    Delete from PROJSHAR where session_id = <session_id>;

    4. Delete the users records in the table USESSION

    Delete from USESSION where session_id = <session_id>;

  • walidkilani (8/29/2012)


    1. Query the USESSION table for the users 'session_id':

    select session_id from USESSION where delete_session_id is NULL and user_id = (select user_id from users where user_name = '<Enter User Name>');

    2. Delete the users records in the table UPKLIST:

    Delete from UPKLIST where session_id = <session_id>;

    3. Delete the users records in the table PROJSHAR:

    Delete from PROJSHAR where session_id = <session_id>;

    4. Delete the users records in the table USESSION

    Delete from USESSION where session_id = <session_id>;

    After waiting for an answer for three years and nine days, Hamzah went home yesterday. You just missed him.

    “Write the query the simplest way. If through testing it becomes clear that the performance is inadequate, consider alternative query forms.” - Gail Shaw

    For fast, accurate and documented assistance in answering your questions, please read this article.
    Understanding and using APPLY, (I) and (II) Paul White
    Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply