Versions: All released versions of Collect and DataGarage
The following steps are a guide on the basics of how to set up a Microsoft Access data source for use with Collect or DataGarage.
Create an ODBCAccess connection type.
- Go to Collect/Setup/Connection Types.
- Click on the Sources icon next to the SQLSERVER Target connection record.
- Add a new record using the following information:
Source Connection Type: ODBCAccess
ODBC driver: Driver={Microsoft Access Driver (*.mdb)} - Save record.
Next, copy the Data Types from SQLSERVER to ODBCAccess using SQL Server Management Studio.
- Execute the following statement to extract the necessary records to modify and copy.
USE [DataGarage]
SELECT *
INTO [Temp_ztTargetSourceConnectionTypeDataConversion]
FROM [ztTargetSourceConnectionTypeDataConversion]
WHERE TargetConnectionType = 'SQLSERVER' and SourceConnectionType = 'SQLSERVER' - Execute the following to update the temp table with the ODBCACCESS source connection type.
USE [DataGarage]
UPDATE [Temp_ztTargetSourceConnectionTypeDataConversion]
SET SourceConnectionType = 'ODBCACCESS' - Execute the following to update the original table with the new values.
USE [DataGarage]
INSERT INTO [ztTargetSourceConnectionTypeDataConversion]
SELECT * FROM [Temp_ztTargetSourceConnectionTypeDataConversion] - Delete the temporary table.
USE [DataGarage]
DROP TABLE [Temp_ztTargetSourceConnectionTypeDataConversion]
Finally, add and run a Manual Assemble (CranPort) package from Collect (DataGarage). It must be a Manual Assemble / CranPort package.