Quantcast
Channel: SQL Server Integration Services forum
Viewing all articles
Browse latest Browse all 24688

Migrating a large number of tables from Rdb to SQL Server

$
0
0
Hello Everyone,
I am currently trying to migrate tables and data out of Rdb on OpenVMS using SQL Server Integration Studio (SSIS). While I can do this on a per-table basis I have a rather large amount of tables and data that needs to be migrated, making manually setting up a separate task for each table a monstrous affair. I want to be able to set the migration up using the "Import and Export Data" wizard included with SQL Server 2008, but since Rdb isn't already set up to be migrated I need to add the mappings in the ProviderDescriptors.xml file (Usually located here: C:\Program Files\Microsoft SQL Server\100\DTS\ProviderDescriptors). Using the .dll file included with ORDP I'm able to establish a connection but the driver isn't reporting the tables back to the Import and Export tool. I've pulled values using the getSchema method in the driver (supplied below) and have placed these in an entry in ProviderDescriptors.xml (also supplied below).
   
Provider Descriptors Entry
    <dtm:ProviderDescriptor SourceType="Oracle.DataAccess.RdbClient.RdbConnection">

<dtm:SchemaNames
TablesSchemaName="Tables"
ColumnsSchemaName="Columns" 
ViewsSchemaName="Views" 
/>

<dtm:TableSchemaAttributes
TableCatalogColumnName=""
TableSchemaColumnName="OWNER"
TableNameColumnName="TABLE_NAME"
TableTypeColumnName="TYPE"
TableDescriptor="User"
ViewDescriptor="VIEW"
SynonymDescriptor ="SYNONYM"
NumberOfTableRestrictions="3"
/>

<dtm:ColumnSchemaAttributes
NameColumnName = "COLUMN_NAME"
OrdinalPositionColumnName="ID"
DataTypeColumnName = "DATATYPE"
MaximumLengthColumnName = "LENGTH"
NumericPrecisionColumnName = "PRECISION"
NumericScaleColumnName = "SCALE"
NullableColumnName="NULLABLE"
NumberOfColumnRestrictions="3"
/>

<dtm:Literals
PrefixQualifier="&quot;"
SuffixQualifier="&quot;"
CatalogSeparator="."
SchemaSeparator="."
/>
</dtm:ProviderDescriptor>



Has anyone successfully managed to migrate data out of Rdb using the Import and Export tool supplied with SQL Server Management Studio?


Viewing all articles
Browse latest Browse all 24688

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>