There's a few ways you can accomplish this - Esri has products that can accomplish this within the ArcGIS ecosystem, but it sounds like you already have a process in place that does this, however, and you just need to hook-up ArcGIS as a forward-facing web app.
I develop against the JSAPI - ArcGIS API for JavaScript - so I can speak a little bit from that angle. There are quite a few ways to go about doing this, however.
I have an ArcGIS Server license, so I can't speak to your licensing needs since you mentioned you are trying to avoid buying more products. The topic has come-up before - ArcGIS Javascript API license question and ArcGIS Javascript API on personal website? - take it for what it is... I can't speak about using the API outside of being licensed for ArcGIS Server for commercial use. You should contact your Esri rep for your use case and consult all of your TOS docs and agreements.
First thing I would do, run through the JSAPI tutorial:
Build your first application | Guide | ArcGIS API for JavaScript
It's all HTML/JavaScript based - you can reference the Esri CDN so you don't even need to host anything except your web page/main module. The API can consume web services published onto ArcGIS Server (like a feature layer), but it doesn't have to be... You can write an AJAX routine to poll a db and create features from a proc call on demand - no need to hit a service hosted on ArcGIS Server.
Esri has an example showing something similar - Feature collection | ArcGIS API for JavaScript - in this sample, they are using esriRequest to pull JSON from Flickr to create points from the retrieved lat/longs. I code in .NET, so I have used ashx/page methods to run procs that return lat/longs, then constructed the JSON needed to display the layer, similar to the Flickr example. So, when the user wants to display the points, they could click a button, which would query the db, pull-back the lat/longs, create the JSON layer, then display on the map. If you do the legwork, I can envision a routine that could update the points in near real-time... I haven't had a need to do this yet, though.
On that same note, if I had to do this, I would consider streaming layers:
Stream Layer | ArcGIS API for JavaScript
Keep in mind that the "ArcGIS GeoEvent Extension for Server must be licensed and installed in your enterprise GIS in order to leverage stream services." So, you would need the extension in addition to ArcGIS Server.
StreamLayer (legacy) | API Reference | ArcGIS API for JavaScript
Stream Services—Documentation (10.3 and 10.3.1) | ArcGIS for Server
Output Connectors—Real-time Data Feeds and Sensors (10.3 and 10.3.1) | ArcGIS for Server