Exporting online database using mysql query - database

I have a database called transportdb it contains certain Datatables with some data so now i want to export this complete MySql database with all data using sql query in Mysql

Related

How to filter on SSIS from Oracle Source

I am using SSIS to pull the data from Oracle database (OLE DB Source) to SQL server (OLE DB Destination).
I'm struggling to filter the data on Oracle level.
The requirement is to read the ID in SQL database and fetch those ID's from Oracle database. The ID is available in SQL server.
How to apply the filter from SQL to Oracle database level?
Query a database based on result of query from another database
See the post with LoopUp Transformation.
"This is a classic case for using LookUp Transformation. First, use a OLE DB Source to get data from the first database. Then, use a LookUp Transformation to filter this data-set based on the ID values from the second data-set. Here is the steps for using a LookUp Transformation:"

Strategy to migrate data from Oracle Database to MongoDB

I have an existing Oracle database with production data. I am planning to move to MongoDB, so I want to migrate my existing data in Oracle database to MongoDB. The Data Model of data stored in Oracle database and MongoDB will be different.
I am planning to get all the data from Oracle database as json using https://blogs.oracle.com/jsondb/generating-json-data. Once I will have the json file with all the data I will import that in the MongoDB. In case the data extracted from Oracle database is not per my required I will create a utility to convert the data to multiple json file for each collection.
I need to some suggestions if there are better ways to this and is my solution right approach for the problem?

Create database schema based on ajax response data

I want to reproduce the database schema of private sever based on the data that returns by ajax response. My steps: convert json to xml and use it as database schema.
I want to use SQL Server 2012 as RDBMS but don't know how to import xml as database schema. (I know about PostgreSQL which perfecty works with xml but I need SQL Server)
May be there are any tools in SQL Server or external? Or any ideas how to create database schema based on ajax response data.

Migrating data from one MSSQL DB to another

I was wondering if there is a safe/clean and efficient way to transfer data from one MSSQL DB to another on following terms:
both DB's have exactly the same structure.
I need to be able to choose from which tables I'll export data, and then drop the data from new new table.
So it would look like this:
drop data from beta DB
insert data into DB from old DB
Does MSSQL has some sort of import/export wizard or some sort of tool which could help me with this ?
There is a built-in wizard for data import/export in Sql Server Management Studio:
right click on you DB
click "Tasks"
select "Import data..." or "Export data..."
here you can select a source and a destination for you data transfer operations (for example you can chose SQL Server DBs as source and destination and transfer data from tables in the old DB to the same tables in the new DB), but I think that you'll need to write your own script to drop old data
Here is a screenshot that shows how to open this wizard:

How to store data from MongoDB accessed by REST API in SQL-Server database as Table

I am newbie and needs guidance or resources to read. I have two databases, one is in Azure SQL-Server 2012 and the other is in MongoDB at remote location. I access the Azure SQL-Server data using Sql Server Management Studio (SSMS) from my PC and the data of Mongodb in browser using REST API. The retrieved data is in JSON format.
For analysis I want to merge the data from Mongodb in to SQL-Server. I don't know how to store the results of the REST API query as a table in SQL-Server 2012? Note that the columns I want to retrieve from MongoDB are not sub-structured so can easily fit in Relational database.
Azure SQL Database supports OPENJSON function that can parse JSON tet and transform it into a table see https://azure.microsoft.com/en-us/updates/public-preview-json-in-azure-sql-database/

Resources