(morzel) A typo or change in row model in JavaScript will cause an empty column in the grid because an ag-Grid column is bound to a row property by assigning a string to field config.
Author: SSWUG Research
Cursor in SQL Server
(Jeremy Kadlec) In my T-SQL code, I always use set based operations. I have been told these types of operations are what SQL Server is designed to process and it should be quicker than serial processing.
How to set default values for MySQL JSON columns
(Shahryar Ghazi) MySQL has been making huge progress on the JSON/NoSQL front as well ie. supporting many of the JSON access and manipulation features and operations.
Getting Started with PyTorch 1.5 on Windows
(James McCaffrey) Although it’s possible to create a neural network using raw code, in most cases a better approach is to use a neural network code library. One of the most widely used neural code libraries is PyTorch.
Multiple Environments in ASP.NET Core
In this article, we’re going to cover how to set up and manage multiple environments in ASP.NET Core. If we expect our project to become large and complex, it is a good idea for us to separate our environments.
Razor Pages And Bootstrap – Lazy Loading Tabs
(Mike Brind) Tabbed interfaces are a great way for managing the presentation of large amounts of information into separate panels, where each panel’s data makes sense on its own, and only one panel is viewable at a time.
Migration methods to Autonomous Database (ADB) – Part III (SQL Developer)
(Syed Jaffar Hussain) In part III article series of Migration methods to Autonomous Database we will see how to migrate or load data into ADB using SQL Developer.
Scripting the Oracle Wallet truststore
(mathias) As you may recall, I do not like processes that requires a GUI for things that should be possible to do repeatedly and be part of automatic deployment of a full environment.
Cross-account AWS Glue Data Catalog access with Glue ETL
(Anand) To process data in AWS Glue ETL, DataFrame or DynamicFrame is required. A DataFrame is similar to a table and supports functional-style (map/reduce/filter/etc.) along with SQL operations.
Hibernate’s ResultTransformer in Hibernate 4, 5 & 6
(Thorben Janssen) Hibernate implements JPA’s standardized constructor expressions and @SqlResultSetMappings to map the results of your queries. And it also supports proprietary ResultTransformers.