Questions tagged [executiontimeout]

32 questions
1
vote
3 answers

Different execution time for same query - SQL Server

I have a query: Select a from tbl_abc where id in ( select id from tbl_xyz where mainid = 12) When I am executing this query, it is taking 1-2 seconds to execute, but when I am using the same query in stored procedure, the below query is taking…
Zerotoinfinity
  • 6,290
  • 32
  • 130
  • 206
1
vote
2 answers

Entity Framework object LINQ query Timeout issues

I've attempted to modify my connection string to include an extended timeout and I've confirmed that on the sql server side the view that feeds my EF Object executes within seconds and returns a total of 3000 or less records. BUT when I attempt to…
OldMan
  • 13
  • 1
  • 3
1
vote
2 answers

PHP execution timeout while uploading a large file to Google Drive with API

i want to upload a local file via PHP to Google Drive. If I upload a small file (<5MB) everything is working. If I want to upload a larger file I get a "Fatal error: Maximum execution time of 30 seconds exceeded". I can set the max_execution_time in…
Lotus
  • 442
  • 1
  • 3
  • 15
1
vote
1 answer

try catch on ExecutionTimeout not working

This one has been the source of much torment for me! I am using the global ExecutionTimeout of 110 seconds for my application. One particular page generates a great number of unhandled exceptions as it contains a FileUpload control. Now here is the…
QFDev
  • 8,668
  • 14
  • 58
  • 85
1
vote
0 answers

How to correctly fix phpMailer max execution time error?

I'm using phpMailer for sending emails from localhost, but I have had to do a quick fix to its main class to get it working. When I just downloaded phpmailer and used it, i got a max execution time error in my script: Fatal error: Maximum execution…
aangelcc
  • 23
  • 1
  • 1
  • 6
1
vote
0 answers

Specifying multiple system.web in web.config

I need to alter the executiontimeout settings in web.config specific to my page. I'm working on downloading large files. In order to do that I need to alter executiontimeout for download page alone. But if I specify the executiontimeout to some…
0
votes
1 answer

Reading from one tab in google sheet and writing to another sheet with some modifications.Any way to improve speed to avoid execution time out error?

I have tab called 'site base production plan' in a google sheet where there are two tables. In the first table each row has information about a crop. For example Picking means harvesting and frequency is basically harvest after every 4 days in the…
0
votes
0 answers

Execution timeout expired in Entity Framework but works fine in SQL Server Management Studio

I am calling a SQL Server stored procedure from Entity Framework like this: datacontext.INITIAL_CHECK(FileKey); My connection string has connection time out defined as 600 seconds. But the stored procedure execution is aborting with an "Execution…
Sachu
  • 7,555
  • 7
  • 55
  • 94
0
votes
1 answer

exeuction_timeout is failing the task but not sending email

I want to fail the task if task duration exceeds a certain time for which I configured execution_timeout in every task of the dag. However, the task is failing, but I am not getting email notification of it. Does anyone know the reason? Any help…
kavya
  • 75
  • 1
  • 10
0
votes
0 answers

Execution timeout for program

I have written a program, loops through 1700 rows of data and 2 columns. It takes forever to run the program. Does anyone have a solution to this problem?
0
votes
2 answers

How to resolve execution timeout expired issue occuring in a stored procedure

Facing timeout expired issue in a code developed. Shared below is the stored procedure where timeout occurs. Purpose of the code : Dates being passed from frontend (using a forloop in Windows application vb.net code) for 1 million cases for which…
0
votes
1 answer

PHP Script stops working after 5 to 6 minutes of execution

I have set the max_input_time 600000 and max_execution_time 600000, upload_max_filesize 1GB, memory_limit 512M But still my Script stops after 5 minutes of execution. Basically what I want is, When I Run a PHP Script to Import or Export bigger…
0
votes
0 answers

ASP Classic web app times out after 2 mins no matter the setting in IIS or web.config

I'm running Classic ASP web application hosted via IIS and everything is set to timeout after 5 minutes. httpRuntime is set to 300 Server.ScriptTimeout is set to 300 Still a request to generate an excel export which takes more than 2 minutes fails…
0
votes
1 answer

Smartsheet Sync for Google Forms times out

I'm getting an error for a survey that has about 90 questions but only 10 respondents when I try to use the Smartsheet Sync add on. Error says that it"Exceeds Maximum Execution Time". How can I increase the execution time so that it will add…
0
votes
1 answer

Select from 'view' causing execution timeout in PHP and SQL Server

I have created a view called stats that selects the sum of records that adhere to a certain attribute CREATE VIEW stats AS SELECT SUM(CASE WHEN attribute = '1' THEN 1 ELSE 0 END) AS attribute1, SUM(CASE WHEN attribute = '2' THEN 1 ELSE 0…
proPhet
  • 1,188
  • 4
  • 16
  • 39