I am trying to set up a synchronization model to sync my consolidated Oracle database with a remote SQL Anywhere database. I have a couple Views on the consolidated Oracle database that I want to pull into the Sql Anywhere database as tables. I want to pull them over as they touch 4-5 tables (gotta love good normalization) and only have 7-8 columns that I need read access to (i.e. I will never try to update them. I just need to pull from the consolidated to the remote db). How do I do this?
Sybase sql anywhere sync a Database view(pull from consolidated to remote)?
801 views Asked by runxc1 Bret Ferrier At
1
There are 1 answers
Related Questions in ORACLE
- sqlplus myusername/mypassword@ORCL not working with Oracle on Docker
- Oracle setting up on k8s cluster using helm charts enterprise edition
- Oracle Managed Data Access Client can't work from IIS but work for local debug environment
- If composite indexing created - indexing is called?
- Oracle Http server ISNT-07551
- why here not creating table?
- Data migration from Oracle Database Clob to GCP Bucket
- SQL Alchemy custom type, forcing blob bind parameter
- How to send message to syslog agent in plsql
- Whatever the data available in previous record it should add to the new record
- I have an Oracle SQL query that is giving me a "ORA-00918: column ambiguously defined" error on a line that is a comment line
- 'ORA-12170: TNS:Connect timeout occurredORA-12170: TNS:Connect timeout occurred' ERROR while working on oracle with laravel
- Is their any way i can open parallel query tabs
- VSCode Libraries not showing for New Java Project
- I can't ssh to my instance, Connection refused
Related Questions in SYNCHRONIZATION
- I need assistance with scripting between tabs for Google Sheets
- Transfer SQLite Database via USB-Cable
- How to avoid re-syncing entire tables between microservice databases upon schema changes?
- Qualcomm Diag frame Time synchronization in Quectel EC25
- Parallel programming: Synchronizing processes
- Passing arguments to OpenCL kernel, before execution finished
- Context Cancels not triggering on a blocking Stream.Recv() in Go gRPC Bi-Directional Stream
- How can I proactively close a synchronous tungstenite websocket connection?
- Weird race-condition in java ThreadPoolExecutor
- How to make Offline database with online synchronization in android app using JAVA. Plesae suggest me code or any related tutorial
- Critical section control with atomics
- stm32 FreeRTOS Interrupt cannot run smooth as i think
- How can I change MongoDB Sync Driver Logging level to SEVERE using PaperMC?
- Strange output in a synchronization problem using binary semaphores in C
- How to ensure consistency in process synchronization
Related Questions in SQLANYWHERE
- Can I fix this problem in R or does this require setting up TLS encryption?
- Unable to connect 64-bit data source through OLEDB connection in C# WebAPI
- Azure Data Factory | Sybase database | Error While pulling Data
- MobiLink Profiler fails to start on ONE instance of SQL Anywhere. Error seems to indicate that it's not finding the Java folder
- Conflict Between MSODBC and SQL Anywhere Drivers in Dockerized Debian
- Sql Anywhere : Find difference between two tables with same columns
- Cannot get a combined field to work using the SQL Anywhere 17 List Function
- How do I get the articleID and supplierID with the shortest delivery time?
- Why [unixODBC][Driver Manager] doesn't see sqlanywhere12 library in /opt if path in php exists
- PHP PDO: SQLSTATE[08S01] SQLConnect: -829 [SAP][ODBC Driver][SQL Anywhere]TLS handshake failure
- Excel Data Connection to SQL Anywhere - Ignore Null value eliminated in aggregate function Error
- I need the query to only show count(sku) > 10
- SQL Anywhere 17 and PHP functions: sasql_disconnect vs sasql_close
- How to set the default connection charset for SqlAnywhere 11 Windows network server?
- What does adding a comma and a number mean in a Sybase SQL where expression?
Related Questions in MOBILINK
- MobiLink Profiler fails to start on ONE instance of SQL Anywhere. Error seems to indicate that it's not finding the Java folder
- SQLE_NOT_PUBLIC_ID Sybase mobilink error
- UltraLiteJ Error[-1305]: MobiLink communication error -- code: 201, parameter: 128, system code: 0 Error
- Sybase Mobilink Hardware requirements
- Sync failed:-857 The remote database identified by remote ID '%1' is already synchronizing or the database connection is unusable:
- MySQL mobilink synchronization with SQL Anywhere
- MobiLink synchronization scripts generation
- Mobilink with MySQL on Linux
- How to setup a mobilink client and server and test the synchronisation?
- SyBase SQL anywhere check if Synchronization is needed?
- Mobilink error with Syncing to Production Oracle DB Options
- Sybase sql anywhere sync a Database view(pull from consolidated to remote)?
- Registering Mobilink with Mobile Device Center on Vista has errors
- How do you get Mobilink to synchronize tables so that the most recent updated table is not overwritten?
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?
Popular Tags
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)
MobiLink can certainly support synchronizing with views, but that isn't supported in synchronization models because views don't have primary keys (which sync models need, as outlined on the first page of the wizard), and uploading to views requires an updatable view or "instead of" triggers.
A workaround is to temporarily define a table with the same schema as the view, plus appropriate primary key definitions. It would be simplest to use the same name for the table, but for that you'd need to use a different database. Pick that database/table when loading the consolidated schema, and define that table mapping to be download only.
Then you should be able to deploy that model to the Oracle database with the view. If you had to use a different name for the table than for the view, you should deploy to file and globally replace the table name with the view name in the generated SQL file.