Most voted "job" questions
A "job" is a background execution process, or scheduled for later execution. **NO** use this tag to indicate employment related issues.
Learn more…12 questions
Sort by count of
-
8
votes1
answer13268
viewsHow to create a JOB on Oracle?
I have the command below to perform the analysis of Oracle indexes: EXEC DBMS_STATS.GATHER_SCHEMA_STATS('USUARIO', estimate_percent=> 25); I would like to know how to schedule this command so…
-
3
votes1
answer393
viewsSpool task for the server
Good night! Guys, currently in my job, I have to generate multiple files. txt to be exported to another company’s database. I roll it in my hand and it sucks, every day I spin it, I wait to send it…
-
3
votes0
answers182
viewsQuartz cronSchedule for running with an interval greater than one hour
I’m looking to do a cronSchedule of Quartz like this cronSchedule("0 0/5 * 1/1 * ? *") but it’s around every 5 minutes example 7:05, 7:10, 7:15, ... and so on What I need is this 7:05, 8:10, 9:15,…
-
3
votes0
answers125
viewsError giving bin/folder index:reindex
My Magento control panel keeps showing this message One or more indexers are invalid. Make sure your Magento cron job is running. I saw I had to give one php bin/magento indexer:reindexbut whenever…
-
2
votes1
answer124
viewsHow to run a select on Pentaho
I would like to know how I execute sql commands on So, I need to search certain data giving select but I already used table input and sql query and it didn’t work.
-
2
votes1
answer504
viewsHow to use joblib in Python for parallelism?
I was trying to use the Thread Python to parallelize my code but I ran into a problem: when I create the Threads, the number of them exceeds 1,000 Threads easily, which, from 140, all start to give…
-
0
votes1
answer875
viewsNull Service Instance with @Autowired
Hello, everyone. I am making a Springboot REST webservice application with JAVA. I need a method to run from time to time. For this, I am using Quartz (org.Quartz). The class method is executed in…
-
0
votes1
answer53
viewsCan Cakephp 3 be used to create screens to manipulate CRON like Sidekiq?
Have some way to create screens to manipulate CRON PHP with Cakephp3 as we have the sidekiq option for Ruby on Rails? It would be interesting to be able to list the active Jobs, and also the option…
-
0
votes0
answers117
views -
0
votes0
answers440
viewsError executing a Trigger ORA-04092: not possible on a trigger
I have the following problem: - I’m not able to perform a job (Scheduling) after an Insert rescued by Trigger. Row 2: ORA-04092: not possible on an ORA-06512 trigger: in "SYS.DBMS_ISCHED", line 135…
-
0
votes0
answers110
viewsPerform a Job with Quartz and Spring
I need to run a job, I am using Quartz, but when the job is executed I need to go to the database to make a query but it does not work, returns the following error, I am using Spring and Hibernate:…
-
-1
votes1
answer263
viewsRun Automatic Update - Oracle
I often run a Update on Oracle to change the status in my database, but I would like this update to run automatically, once a day. UPDATE inativa_produto set compras = 'N', estoque = 'N',…