hello
i have a query in SQL Server 2005, that uses the DENSE_RANK() function which returns a bigint.
in my SSIS package, I have a recordset object which detects the field as [DT_I8]. I am trying to map a package variable to this field values in a loop but I keep getting a conversion error. The variable type is int64 which should map to bigint.
I am confused with all theses different names for the same types.
bigint = DT_I8 = int64 ?
My package runs if I use the object type, but Visual Studio will stop responding when it has looped through 30000 records, I think because the Object type makes it consume a lot of memory ?
i have a query in SQL Server 2005, that uses the DENSE_RANK() function which returns a bigint.
in my SSIS package, I have a recordset object which detects the field as [DT_I8]. I am trying to map a package variable to this field values in a loop but I keep getting a conversion error. The variable type is int64 which should map to bigint.
I am confused with all theses different names for the same types.
bigint = DT_I8 = int64 ?
My package runs if I use the object type, but Visual Studio will stop responding when it has looped through 30000 records, I think because the Object type makes it consume a lot of memory ?