(Ron L’Esteve) In my last article, Load Data Lake files into Azure Synapse DW Using Azure Data Factory, I discussed how to load ADLS Gen2 files into Azure SQL DW using the COPY INTO command as one option.
Other News
Use Inheritance, Abstract Classes, And Polymorphism In TypeScript
(Bipin Joshi) Object oriented programming languages such as C# allow you to inherit functionality from base class. TypeScript also offers inheritance capabilities so that your classes can inherit from other classes. TypeScript doesn’t support multiple inheritance (although your class can implement m
MySQL Compressed Binary Logs
(Jesper Krogh) On a busy server, the binary logs can end up being one of the largest contributors to amount of disk space used. That means higher I/O, larger backups (you are backing up your binary logs, right?), potentially more network traffic when replicas fetch the logs, and so on.
Migration methods to Autonomous Database (ADB) – Part II (MV2ADB)
(Syed Jaffar Hussain) In part II of migration methods to ADB blog series, we will look into MV2ADB tool details and usage.
How To Integrate Bootstrap/HTML Template In ReactJS
(Sanwar Ranwa) In this article, we will learn how to integrate theme or HTML-bootstrap template in a React.js project.
SQL SERVER – Resolving Last Page Insert PAGELATCH_EX Contention with OPTIMIZE_FOR_SEQUENTIAL_KEY
(Pinal Dave) Today’s blog post is actually a follow-up blog post of SQL SERVER – Last Page Insert PAGELATCH_EX Contention Due to Identity Column.
Database change tracking using MySQL EE Audit
(Ted Wennmark) Use MySQL Enterprise Audut plugin to track data changes on specific tables.
Application Setting ‘useJavaAsRegexEngine’ Tells CFML To Use Java’s RegEx Engine For Built-In Re-Functions In Adobe ColdFusion 2018
(Ben Nadel) So, yesterday, when I was looking something up in the Adobe ColdFusion RegEx documentation, I saw something that blew my mind!
When To Use dgmgrl / vs dgmgrl sys@tns
(mdinh) There’s been discussion on twitter about using dgmgrl / vs dgmgrl sys@tns.
Testing Validation Attributes with xUnit
(Daan Acohen) To test the validation of data models for REST API Controllers, just creating an instance of the controller class and calling the intended method is not an option.