Reading Time: < 1 minuteIt looks like your putty sessions are stored in the registry.
Author: Marc Olivier Meunier
Marc has spent the past few years putting oil on the fire of growth companies. He leads by example and puts a lot of emphasis on inclusion, constantly working to create a safe environment. A warm leader with a passion for memorable experiences and innovation.
Marc is available for contracting as a fractional Head of Customer Experience.
Find Marc on Linkedin
Reading Time: 2 minutesIf you need to setup some webmin rule for bypassing authentication for a specific URL, it’s VERY easy to setup.
This is something that can be needed if you have a windows server behind a proxy and that server needs direct access to the internet in order to be activated:
Activation fails when you try to activate Windows 2008 over the Internet…
Reading Time: 3 minutes
Today I got an interesting call from my boss. I am going to become an assessor for other trainers at Nokia Siemens Networks. This means that I will have to assess the training capabilities of my peers.
Since I have been a respectable trainer for the past 5 years I have indeed accumulated a good experience.
I feel very proud that my efforts are rewarded with this opportunity.
Reading Time: < 1 minute
If you are looking for the last SQL query ran by a specific process, try this:
select substr(sa.sql_text,1,1000) txt from v$process p, v$session s, v$sqlarea sa where p.addr=s.paddr and s.username is not null and s.sql_address=sa.address(+) and s.sql_hash_value=sa.hash_value(+) and spid=&SPID;