-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I wrote a Log class derived from System.Diagnostics.TraceListener like so
public class Log : TraceListener
This acts as a wrapper to Log4Net and allows people to use System.Diagnostics Tracing like so
Trace.Listeners.Clear();
Trace.Listeners.Add(new Log("MyProgram"));
Trace.TraceInformation("Program…
>>> More
-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
Listen to Kurt Larsen, Vice President of Oracle Support provide an update on the cost savings and problem avoidance provided to customers using Oracle Diagnostics within the E-Business Suite!
>>> More
-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
Oracle Diagnostics Support Pack is available as a patch and can be applied using adpatch. Installation is easy. Just follow the steps in Doc ID 167000.1, eBusiness Suite Support - Oracle Diagnostics Support Pack Installation Guide
For information on how to run the Diagnostics from a menu within…
>>> More
-
as seen on SQL Blogcasts
- Search for 'SQL Blogcasts'
This is nothing exciting but I've always found this startup procedure very useful. All this simple procedure does is send you an email if the SQL Service Starts. If your Server is a cluster it will tell you which node you're on. -- On it's own this procedure can't actually be…
>>> More
-
as seen on SQL Blogcasts
- Search for 'SQL Blogcasts'
I had an interesting experience with a database I essentially know nothing about. On the server is a database which stores session state, Microsoft provide the code/database with their dot net, so I'm told. Anyway this database has sat happily on the production server for the past 4 years I guess…
>>> More