0% found this document useful (0 votes)
20 views

MSSQL To HDFS Migration

1. To transfer data from Microsoft SQL Server to HDFS using Sqoop, install Sqoop on the cluster and include the Microsoft SQL Server JDBC driver JAR. 2. To extract the schema of a single table, query the INFORMATION_SCHEMA.COLUMNS view specifying the table name. 3. To extract all table schemas, refer to the provided Stack Overflow link for instructions on exporting the entire database schema to an SQL file.

Uploaded by

sujith_kumar4717
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views

MSSQL To HDFS Migration

1. To transfer data from Microsoft SQL Server to HDFS using Sqoop, install Sqoop on the cluster and include the Microsoft SQL Server JDBC driver JAR. 2. To extract the schema of a single table, query the INFORMATION_SCHEMA.COLUMNS view specifying the table name. 3. To extract all table schemas, refer to the provided Stack Overflow link for instructions on exporting the entire database schema to an SQL file.

Uploaded by

sujith_kumar4717
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Dependency:

1.Have to install sqoop in the cluster

2.Mssql jar for the sqoop transfer

To Take schema :

select * from INFORMATION_SCHEMA.COLUMNS where TABLE_NAME='tableName'

To Take all tables schema as a file:

Refer below link

https://stackoverflow.com/questions/12036458/export-database-schema-into-sql-file

Sqoop Transfer:

Syntax:
sqoop import --connect jdbc:sqlserver://sqlserver-name \
--username <username> \
--password <password> \
--driver <driver-manager-class> \
--table <table-name> \
--target-dir <target-folder-name>

Sample:
sqoop import --connect "jdbc:sqlserver://labDB;database=demo" \
--username sqoop \
--password simp1e \
--driver com.microsoft.sqlserver.jdbc.SQLServerDriver \
--table "dbo.customer" \
--target-dir "/tmp/dbo-customer"

You might also like