Howto Install BGInfo

1). Create c:\BGInfo\ 2). Download exe, run exe, create your configuration, save bgi file as C:\BGInfo\bginfo.bgi 3). Click Start, Programs, right-click “Start Up” and choose “Explore all users” 4). Create …

Rebuild INVALID Oracle Objects

1234567891011SELECT ( case when object_type = ‘VIEW’ THEN ‘ALTER VIEW ‘ || object_name || ‘ COMPILE;’ when object_type = ‘PROCEDURE’ THEN ‘ALTER PROCEDURE ‘ || object_name || ‘ COMPILE;’ when …

Install Windows Service Manually Command Line

Create your windows service EXE: Install the service into the control panel of Windows: 1C:\> sc create [service name] binpath= "c:\program files(x86)\path\to\exe\file.exe" To remove the service from the control panel …

Passwordless Authentication with SSH

When doing things like secure automated backups via ssh and/or rsync over ssh, you will need to setup passwordless authentication so that you are not prompted to enter the password …