Systems Administration

Data observability, enterprise resource planning, and a CRM system are three types of tech that can help businesses of all sizes save time.

3 Types of Tech That Will Save Your Business Time

It doesn’t matter what type of business you’re running or even the industry that you’re operating in. Organizations are forever looking for new and innovative ways to cut costs. They’re regularly turning to modern technology in order to do it. For example, one rising trend today for customer service lies

Find Which Port Is Being Used by a Process

There are many instances when we struggle to find out which port is being used by our applications. On Windows, you can use the same netstat command, where the filtering is performed by findstr netstat -an | findstr :80 Sample output on Windows: C:Userssridharnetstat -an | findstr :80 TCP 0.0.0.0:8081

Controlling access to individual records in a DB.

Question: I am building a VB/SQL database app in which I need to control access to individual records in a table based on an EmployeeId. The front-end VB app requires the user to enter her ID/password and builds the appropriate query to retrieve only the records associated with this employee.