Project Management
Notizie sulla certificazione PMP
OnlinePMCourses Online Project Management Video Courses to Build Your Project Career
- Fabulous Project Meetings: How to Make them Happen Every Timeby Mike Clayton on 15 September 2025 at 4:55
Every project manager I have met spends a lot of their time in meetings. So, how can you Lead an excellent project meeting? The post Fabulous Project Meetings: How to Make them Happen Every Time appeared first on OnlinePMCourses.
- Data Analytics, AI, and the Future of Project Management – with Martin Paverby Mike Clayton on 11 September 2025 at 4:55
What is the future of Project Management? Martin Paver is convinced it lies in AI and data analytics. Don’t miss this sensational interview! The post Data Analytics, AI, and the Future of Project Management – with Martin Paver appeared first on OnlinePMCourses.
- 10 Revealing Questions to find the Best Project Management Course for Youby Mike Clayton on 8 September 2025 at 4:55
Do you want to find the best Project Management Course for you? Of course you do. It is an important decision. The post 10 Revealing Questions to find the Best Project Management Course for You appeared first on OnlinePMCourses.
- What is Whole Life Costing?by Mike Clayton on 4 September 2025 at 4:55
In this video, I’ll answer the question, what is Whole-life costing? And I’ll consider how it compares to Life Cycle Cost. The post What is Whole Life Costing? appeared first on OnlinePMCourses.
- Leadership Books for Project Managers: What are my Top 10 Books?by Mike Clayton on 1 September 2025 at 4:55
Project professionals must lead. Yet leadership isn’t in most project management books or courses. Here’s my list of great leadership books. The post Leadership Books for Project Managers: What are my Top 10 Books? appeared first on OnlinePMCourses.
- From Project Manager to Trusted Leader: 8 Routes to Long-Term Professional Successby Mike Clayton on 25 August 2025 at 4:55
It’s easy for a project manager to be technocratic. To succeed, you must move from being an efficient textbook-follower to a trusted leader. The post From Project Manager to Trusted Leader: 8 Routes to Long-Term Professional Success appeared first on OnlinePMCourses.
- Use a Burndown Chart to Spot Problems | Top 7 Burndown Chart Anti-patternsby Mike Clayton on 21 August 2025 at 4:55
Burndown chart anti-patterns signal issues in performance, estimation, or process. Here are 7 anti-patterns, what causes them, and what to do. The post Use a Burndown Chart to Spot Problems | Top 7 Burndown Chart Anti-patterns appeared first on OnlinePMCourses.
- Great Charisma: 7 Secrets for Being a Charismatic PMby Mike Clayton on 11 August 2025 at 4:55
Does Project Management require charisma? We get things done through people: our team and our stakeholders. So, the answer is… ‘YES!’ The post Great Charisma: 7 Secrets for Being a Charismatic PM appeared first on OnlinePMCourses.
- How to Create a Burndown Chart in 10 Easy Stepsby Mike Clayton on 7 August 2025 at 4:55
A Burndown chart is a way to visualize progress. It plots outstanding work against time. But, how can you build your own? The post How to Create a Burndown Chart in 10 Easy Steps appeared first on OnlinePMCourses.
- How to Get the Best from Your Project Team with Situational Leadershipby Mike Clayton on 28 July 2025 at 4:55
Situational Leadership is a simple and compelling idea. If you want to get the best from someone, choose a leadership style that suits the situation. The post How to Get the Best from Your Project Team with Situational Leadership appeared first on OnlinePMCourses.
Articoli Project Management
Primavera P6: ridurre il DB locale PPMDBSQLite per velocizzare l’esecuzione dell’applicazione
Ciao come va? Se sei arrivato fino a qui potresti avere bisogno di velocizzare l’esecuzione dell’applicazione Oracle Primavera P6.
La breve guida è riferita alle installazioni con il DB locale di Primavera PPMDBSQLite.db e alla versione P6 Professional R16.2 (x64) anche se questa procedura può funzionare anche con altre versioni.
Per le problematiche riferite a DB Oracle Server in rete chiedete supporto al vostro amministratore IT.
Veniamo al problema, in pratica per ordine e per velocizzare P6 ho rimosso molti progetti dal Primavera ma la dimensione del DB non è mai diminuita.
Come vedi sotto, nel corso del tempo avevo fatto delle copie de DB e si può vedere come la dimensione sia sempre aumentata, seppure abbia a volte cancellato intere annualità di progetti.
Questo penso che sia il problema per cui quando copio un Progetto, o quando ne importo uno grande il processo di import non mi va mai alla fine, o fallisce oppure devo spegnere il programma e riavviare.
Così come altri database, sqlite non riduce le dimensioni dei datafile automaticamente quando vengono cancellati i dati. Quantomeno non lo fa per default.
Per risolvere il problema prima effettuati una copia di sicurezza de DB stesso, chiudi P6, e poi connettiti al database con la console di amministrazione, ovvero lanciando il comando:
sqlite3 NomeDB
sqlite3 PPMDBSQLite.db
Una volta connesso, va lanciato il comando
VACUUM;
che comprime il datafile
Alla fine si esce dalla console con il comando
.q
Purtroppo probabilmente non hai quel comando disponibile sul PC, il comendo sqlite3 deriva da una installazione sqlite stand alone che esula dall’istallazione di primavera P6 che ha il driver del DB già al suo interno.
Per cui ho installato il pacchetto:
sqlite-tools-win32-x86-3290000.zip
(1.71 MiB) A bundle of command-line tools for managing SQLite database files, including the command-line shell program, the sqldiff.exeprogram, and the sqlite3_analyzer.exe program.
(sha1: f009ff42b8c22886675005e3e57c94d62bca12b3)
Dal sito
https://www.sqlite.org/download.html
A.C:\Users\ofgod>cd \Users\ofgod\Downloads
C:\Users\ofgod\Downloads>cd sqlite-tools-win32-x86-3290000
C:\Users\ofgod\Downloads\sqlite-tools-win32-x86-3290000>sqlite3.exe \TEMP\PPMDBSQLite.db
SQLite version 3.29.0 2019-07-10 17:32:03
Enter “.help” for usage hints.
sqlite> VACUUM;
sqlite>
sqlite>
sqlite> .q
C:\Users\ofgod\Downloads\sqlite-tools-win32-x86-3290000>
Ora il file è quasi la metà come dimensione e spero siano stati ricostruiti anche gli indici.
Adesso P6 lavora meglio ed è veloce come ala prima installazione vuota dello stesso applicativo.
Buon lavoro, ricorda prima di fare questa operazione esporta e svuota progetti non più recenti da P6,
Chiudi P6
Fai una copia di sicurezza del PMDBSQLite.db
Lancia sqlite3 e poi i comandi interni ricordando il ; dopo lo statemend VACUUM.
Buon lavoro
A.D.D.
Devi effettuare l'accesso per postare un commento.