We have to design a system where we have an application which will show data. The source of data is a third party Db which exposes apis to fetch data out of it. We have our db - Sql server where we will store this data. From the UI of the application , whenever we want , we can pull this data from this third party tool by a button click. Question is - whenever there is a button click to pull data, should the data from this third party tool first go and store in our Sql db and then we should fetch this onto our UI. Or data should be fetched directly onto UI first , instead of storing in DB first and then later on Save button click this should get stored in our DB.
Design Query - Pull data from a third party data source and show it on UI
281 Views Asked by SunilA At
1
There are 1 best solutions below
Related Questions in SQL-SERVER
- Dynamic query creation with Array like implementation
- 'pyodbc.Cursor' object has no attribute 'callproc', mssql with django
- Driver com.microsoft.sqlserver.jdbc.SQLServerDriver claims to not accept jdbcUrl, ${SPRING_DATASOURCE_URL}: GitHub Actions
- PHP Laravel SQLServer could not find driver
- Upsert huge amount of data by EFCore.BulkExtensions
- How to locate relevant tables or columns in a SQL Server database
- Cannot delete SQL datafile (.mdf) as its currently in use
- Writing query in CTE returning the wrong output
- Group By Sum and without Group by sum Amount is different
- plan_handle is always different for each query in SQL Server Cache
- Adding a different string to a table fails
- The specified data type in the EF modelBuilder doesn't correspond to the one that is created
- SQL71561: SqlComputedColumn: When column selected
- How to Solve Error Associated with Trusted Authority
- SQL Server Data Model and Insert Performance
Related Questions in ARCHITECTURE
- Where to store secret token for an embeddable web widget?
- Separation of Students and Users in NestJS Microservice architecture
- What's the right ZMQ architecture for my scenario?
- Javers in microservice architecture
- How to prevent users from creating custom client apps?
- How to manage different repositories for different clients with the same project?
- Adding users file storage feature to my application
- Transform Load pipeline for a logs system: Apache Airflow or Kafka Connect?
- Shoulld I decode JWT only on auth server?
- How to stored last ~1500 events in Sorted Set in Redis
- Should data be standardized on the backend or the client (front-end, mobile app)?
- Can I treat CNN channels separately to make placement predictions?
- How to handle sync distributed transaction in microservices?
- Database design, authentication and authorization in a microservices ticketing system
- Is there any example or design of a queue system in microservices?
Related Questions in APPLICATION-DESIGN
- How to create a framework compatible with different java versions?
- What software functionality requires triggering callback functions by adding or removing dynamic attributes?(matlab2020 code)
- Software design aspect - Rule driven vs configuration driven design
- Insert created forms inside application page
- How can I make my makefile put my project together the way I need it?
- How to build model my application which adds child elements dynamically in spring boot
- Managing data storage in a linux application written in Python
- HANDLING MULTIPLE INSERTS IN A MICROSERVICE
- Base classes, abstract methods or Design flaw?
- Stopping a running void in java
- In modern application design, how do you implement / between TransferOject and BusinessObject
- Customer Deduplication in Booking Application
- How to design a package that can potentially take any data source and convert it into an extensible, read-only configuration object?
- How to handle a multi tenant with database per tenant application where each database has a different schema
- Approving API submit request before actually submitting it?
Related Questions in WEB-APPLICATION-DESIGN
- How does E-commerce platforms with microservices architecture use Redis for Caching?
- Will a new instance of Singleton scoped object in a WebApplicationContext be created if the application is closed and started again in Spring MVC
- Differentiating MVC layers in Codeigniter4 (Libraries vs Helper vs Models)
- Python Flask web application hanging when called multiple times
- Design Query - Pull data from a third party data source and show it on UI
- Advice on separating parts of java web application
- how to move an inner html style tag to css correctly?
- How/Where I can learn the structure of a real world Java web application with sample code and explanation
- How to load properties into environment from zookeeper before initialising beans in web application
- How to Build AutoComplete feature?
- Can I put all Application Services to the front end in DDD?
- Web UI code and microservices in the same monorepo?
- Designing custom workflow in JAVA and Spring
- Web Application with Background Job That Loops Forever
- Is it possible to open a WebSocket to client localhost?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Think about the following points