It was couple of years back that my friend had written this article on my blog - Interview Questions and Answers – Perspectives of an Author. I know...
database-tools
Top 3 Sample Databases for PostgreSQL
If a developer is attempting to learn a new process or test some code, it’s best to utilize a test environment such as a sandbox rather than the...
Setting Permissions in AD or Windows Registry
ActiveDirectory Module We already illustrated previously how you can use Get/Set-Acl to read and write permissions to files and folders. The truth...
Catching Errors in Native EXEs (Part 2)
All versions Here is yet another approach that you can use to detect errors emitted by console applications: $ErrorActionPreference = 'Continue'...
The #1 Data Modeling Issue – Being ‘Dead’ Right – By Len Silverston, Universal Data Models, LLC
While many data modelers are very open minded and not righteous at all in their attitudes, over the years, I have heard the following statements...
Replacing NTFS Permissions with SDDL Information
All PowerShell versions With Get-Acl, you can output the security information from files and folders as plain text in SDDL format (Security...
How to Connect your Applications to your Data
This is a video replay from the DataU online conference. An Application Programming Interface (API) brings your own applications closer to your...
Cloud Databases – A Primer
Ever since the era of Cloud Computing featuring SaaS(Software as a Service) pioneered by Salesforce, Databases have not been left behind. Databases...
Cloning NTFS Permissions
All PowerShell Versions Here is some simple code that reads the NTFS permissions from one folder and applies the exact same settings to another....
Catching Errors in Native EXEs (Part 1)
All Versions When you run native console EXE commands such as robocopy.exe, ipconfig.exe, or similar commands, you can handle errors raised by these...
Exploring Microsoft SQL Server System Databases
The Microsoft SQL Server System comprises of four key System Databases master model msdb and tempdb The following table outlines the key points...
Empower your Applications with Embarcadero Team Server APIs
The Team Server REST Application Programming Interface (API) allows one application to talk to another application directly and securely. Team...
Result Cache Using Rapid SQL
Hi! The Result Cache is a newer structure for Oracle11 and newer databases. This feature remembers the invariables and return...
Oracle 12 New Limits
Hi! I’ve been working on PL/SQL topics and wanted to share with you a new Oracle12 feature. Oracle12 now allows for much longer...
3 Things You Didn’t Know About Black Box Trace
Black Box Trace In earlier versions of SQL Server, there have been situations where root cause analysis was never possible because data saved by SQL...
Using WMI Inheritance
All Versions WMI classes are inherited from each other, and that’s something you can take advantage of. Take this line: PS> Get-WmiObject...
Data Modeling Source Control Demystified
This video replay from the Data U online conference gives you an overview of the challenges faced by organizations wanting to implement a secure...
Finding Process Owners
All PowerShell versions To find out who owns a particular process and how many instances are running, try this simple piece of code: $ProcessName =...
Top 3 Security Concepts Any DBA Must Know
DBAs understand how critical and important security is but due to other administration priorities, it can often take a back seat. When working...
3 Tips for Technical Presentation That Every Developer Must Know
Over the past decade, I have developed and given many technical presentations that range from being cultural, based on depth of audience or on...
Parsing DISM Log File
PowerShell 2.0 and later In your Windows folder, you find all kinds of system log files. One is DISM.log which contains information about the...
Top 2 Errors When Working with Datetime Conversions
Working on universal applications has its own challenges. Often I have seen developers resort to unwanted conversions inside the database based on...
Setting Active Directory Attributes
ActiveDirectory Module To set AD attributes for a user account, PowerShell uses hash tables. That’s a versatile approach that lets you specify...
SQL Safe and AlwaysOn Availability Groups
With the release of version 7.4 in August, SQL Safe added AlwaysOn Availability Group support by taking into account the preferred replica when...