i want to migrate unidata database which is multivalue to sql using dotnet code.IS this possible,one of the possibility is through SSIS but this will consume lot of time becouse we have to do ETL process to all the tables in DB .So was looking for a dot net code where i can connect to Unidatadb and migrate data to sql
migrate unidata database which is multivalue to sql using dotnet code
694 views Asked by Ayesha At
1
There are 1 answers
Related Questions in DATA-MIGRATION
- Unpivot dynamic table columns into key value rows
- How to transfer a structure from one Plone to another
- MySQL structure migration
- What is causing my images to corrupt during FTP transfer to Go Daddy server?
- Django 1.8 How Drop certain tables using manage.py?
- Insert rows returned by stored procedure into a different table - different databases and servers
- Netezza to SQL Server Data migration
- Oracle Data Migration best usage in isolated servers
- App install, with a change in the Core Data model
- accessing model manager methods in datamigration
- 1 parameter, 2 given in ... after migrating from localhost
- How to migrate data to one table to another in MySQL
- Moving Nexus Repository, Backup Only Certain Artifacts?
- Migrating to MongoDb?
- Load balancing strategy for data reading and writing cluster
Related Questions in U2
- Is there a native way to convert to UTC time in UniVerse 11.2.4+?
- What is the most efficient way to copy UniDataSet to SQL Server?
- How can I handle JSON strings in UniData?
- U2 Toolkit Insert function creating blank multi-values
- Linux dropping escape characters
- U2 Visual Studio 2013 Add-in
- Connect to PickBasic from Java
- run SQL script using Rocket Universe from AIX command line (uvsh)
- Rocket Universe Data load
- Writing to UniVerse Linked Server from SQL Server via ODBC
- How do I access MultiValue data from U2 Toolkit for .NET?
- U2 Toolkit for .NET - Entity Framework Sample "EntityFramework_CodeFirst" not working
- U2 Toolkit for .NET - Entity Framework Sample "EntityFramework_CodeFirst2" not connecting
- UniData UniQuery - two WITH
- Is there an R package for connecting to U2 / Universe / PICK?
Related Questions in UNIDATA
- How can I handle JSON strings in UniData?
- U2 Toolkit Insert function creating blank multi-values
- Convert a netcdf time variable to an R date object
- UniFile ReadNamedFields
- How can I specify the LIBPATH on a UniObjects for Java subroutine call?
- unidata odbc sql syntax for date
- Are User Defined Functions supported in UniData
- How do I access MultiValue data from U2 Toolkit for .NET?
- U2 Toolkit for .NET - Entity Framework Sample "EntityFramework_CodeFirst" not working
- UniData UniQuery - two WITH
- VSCode : mvbasic extension on editing Unidata code with MV marks in code, ie CHAR(253), CHAR(254)
- pvlib-python forecast using GFS model server error - variable not contained in requested dataset
- unidata command query data from two files
- Sanitize Input for UniData
- How to secure UniData session using UniObjects for .net
Related Questions in UNIOBJECTS
- UniObjects for Java how to open sessions to emulate connection pooling
- Connection using uniobject.NET connection to unidata account does not work and transaction fails
- What is the fastest way to GET a list of records from Universe DB file using C#.NET?
- How to use U2.Data.Client for .NET Core Web API?
- Is UniObjects supported in UniData 8.x?
- Getting a select list from an alternate index with selectMatchingAK return a "The RPC failed" error
- Universe 9+ system, UniObjects (not for .NET) - How to convert examples from VB 6 to C#
- Where clause not accepting parameterized value but accept hard coded value in linq
- UniData List all avaiable subroutines / All parameters
- migrate unidata database which is multivalue to sql using dotnet code
- How to generate and understand a list of field names in a UniData table
- Two queries related in UniObjects for .NET
- Can a remotely stored ASP app access a networked local machine?
- Unidata UniObjects for .NET - Write amendments back to unidata from modified table
- GetSchema() throws UciException "*HS.OLEDBINFO" is not in the CATALOG space"
Related Questions in U2NETDK
- What is the most efficient way to copy UniDataSet to SQL Server?
- U2 Toolkit Insert function creating blank multi-values
- U2 Visual Studio 2013 Add-in
- How do I access MultiValue data from U2 Toolkit for .NET?
- U2 Toolkit for .NET - Entity Framework Sample "EntityFramework_CodeFirst" not working
- U2 Toolkit for .NET - Entity Framework Sample "EntityFramework_CodeFirst2" not connecting
- Accessing UniData through .net
- How do I move U2 Database into SQL Server 2012 using U2 Toolkit for .NET, SSIS and Import/Export Wizard?
- Merging Tables/Files
- Universe Entity Framework very slow to select
- How to do fetch pages when querying universe database using .net sdk and sql
- How to create/consume WCF oData Service (RESTful Service) using U2 toolkit for .NET?
- Retrieve all records from universe database using universe basic subroutine
- How to use U2.Data.Client for .NET Core Web API?
- What is the fastest way to GET a list of records from Universe DB file using C#.NET?
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?
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)
You're probably getting downvoted because this is an awfully general question, and it's not particularly a programming question, but rather a big project.
One piece of advice is to flip things around and extract the information from the Unidata side "exploding" out the multivalues into flat tables that your ETL process can consume. And the challenge there (apart from writing Unibasic code) is identifying which multivalued fields are associated with each other. Unless you have very good documentation that can be tough to do.