(Steve Gordon) I recently posted about the process to upgrade from ASP.NET Core 3.1 to ASP.NET Core 5.0 (preview 1) and mentioned that I had an issue with running my unit tests from Visual Studio 16.6 (preview 1).
Community
Logging in ASP .NET Core 3.1
(Shahed C) You could write a fully functional ASP .NET Core web application without any logging. But in the real world, you should use some form of logging.
Oracle library cache cursor child generation
(Frits Hoogland) This post is about library cache SQL cursors, and how these are managed by the database instance.
How to disable and enable archive log in Oracle RAC
(Anuradha Mudgal) After the core DBA, continue our journey towards RAC environment. Today we are going to explore the steps use for “How to disable and enable archive log in oracle RAC“
Oracle 19c Automatic Indexing: Mixing Manual and Automatic Indexes Part I (I Can’t Read)
(Richard Foote) In previous articles, I discussed how Automatic Indexing has the capability to add columns or reorder the column list of previously created Automatic Indexes. However, how does Automatic Indexing handle these types of scenarios with regard to existing manually created indexes?
The DB2Night Show #224: Latest From the Lab: What’s next for Db2 v11.5
(Martin) 100% of our studio audience learned something! Keri showed the roadmap for upcoming Db2 features.
WebAssembly Used by Java-to-Web Compiler CheerpJ 2.0 to Port Java Applications to Browsers
(Bruno Couriol) LeaningTech recently released the second major iteration of CheerpJ. CheerpJ 2.0 may convert Java applications into a mix of HTML, WebAssembly and JavaScript, so that developers can run Java applications (including applets) in browsers or integrate Java libraries into web application
Being an Efficient DBA
(Grant Fritchey) Or database developer, report writer, whatever.
Error handling protip: @@Error resets after the next command
(Kenneth Fisher) The system variable @@ERROR is a quick and easy way to retrieve the error number from the last statement run and use it in your code.
ASP.NET MVC – How To Use Ajax without Passing Parameters
(Asma Khalid) In order to improve UI interactivity in web development, it is often recommended to utilize Ajax to load/process small web parts/components independently on the same page.