How do you set the command timeout in SSIS?

25,857

Right Click on the Datareader source and click edit. Go to Tab Component Properties and under Group Custom Properties has CommandTimeout

Share:
25,857

Related videos on Youtube

Jeremy
Author by

Jeremy

Software Developer

Updated on July 09, 2022

Comments

  • Jeremy
    Jeremy almost 2 years

    I have a datareader source firing some sql which takes longer than 30 seconds to run, so it's timing out. I can not find a command timeout property on the datareader source component, or the data flow task. Is there some way to set a longer command timeout in SSIS?

  • Jeremy
    Jeremy over 14 years
    All I have for properties on the Custom Properties group is SqlCommand and UserComponentTypeName
  • Fahad
    Fahad over 14 years
    I am using VS.net 2005. But I think that shouldn't be an issue with VS.net 2008. Its strange that property is missing. Try OLE Db Data Source. See if that has the property.
  • Jeremy
    Jeremy over 14 years
    Yup, the OLE DB Source has a command timeout, but the DataReader Source does not!

Related