• komal145 (8/27/2015)


    I am trying to run the Stored procedure by passing parameter value in oledb source "SQL Command":

    Something like below. I know that the same stored procedure when i ran in SSMS it takes 1min 53 sec.

    EXEC dbo.GetDetails '2015-08-01 00:00:00.000' , '2015-08-01 23:59:59.997'

    I have attached the error in the post below.

    Note: Variable i declared are in datetime datatype and stored procedure expecting Date. When the run the exec command passing date-time values as above it runs perfectly.

    How about some more details? The code for the procedure would be a good place to start. Where are you getting the values for the parameters? Are you ok with a procedure taking nearly two minutes to run for only a single days worth of data? That seems on the order of hundreds of times slower than it should be.

    _______________________________________________________________

    Need help? Help us help you.

    Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.

    Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
    Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/