SQL Server to Vertica Migration
1) Are there any accelerators for SQL Server 2012 to Vertica migration?
2) What is the best way to Import a SQL Server 2012 Table into Vertica. Is Export SQL Server table to delimited FIle and use the COPY Command the only quickest option?
2) What is the best way to Import a SQL Server 2012 Table into Vertica. Is Export SQL Server table to delimited FIle and use the COPY Command the only quickest option?
0
Comments
Other then the above solutions, if you dont want to go with TALEND ETL
2. The best way to migrate a table :
export table from SQL server--> land the files to Vertica Server--> run copy command
Before running the copy command deploy the ddl into vertica.
For all this you create simple bash scripts and automate the process.
Replicate the same logic in External procedure (.sh files)
and schedule it with your Linux scheduler
Hope this helps
question on sql stored procedures:
from this thread i understand whether the stored proc can be converted to a .sh file or an function. My requirement is integrate the stored procedure to a UI ( like asp.net or WPF) because my stored procedure is returning a data set. What is the best approach, can i call a vertica function through ADO.net ?
I am using the vertica ADO.net connector by the way .