Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: rebecca_robareThe solution to this is to use a cast expression in the SQL statement of the DBQuery node, for example,
select
serv_ord_days_to_complete_dur
,service_order_completed_date
,service_order_created_date
,cast(service_order_key as varchar (25)) as order_key
from ndw_shared_views.service_order_fact
I should probably have figured it out sooner - it's a much simpler solution than I was looking for!