Questions tagged [purge]

222 questions
0
votes
1 answer

soa.delete_instances_in_parallel is not working for all the partitions

We have 4 different partitions in our organization. We would like to target one partition at a time with various retention period. The following pl/sql block works for one partition but not on other partitions. Please advise. PL/SQL…
0
votes
0 answers

Ajax Json Parentheses| SyntaxError: missing ; before statement

I am pulling json array data from my Instagram api: https://www.instagram.com/finkavenue/media/ There are a pair of parentheses () within the data. Those parentheses are throwing the error in my console upon ajax request: SyntaxError: missing ;…
ThomasAFink
  • 1,257
  • 14
  • 25
0
votes
0 answers

How to purge a folder under windows?

I would like to create a utility which delete the folder from windows machine permanently. This we can do it easily from any programming language. But my challenge is that, the deleted folder can't be recoverable from any Tool in market. So please…
Laxmi Lal Menaria
  • 1,433
  • 4
  • 17
  • 30
0
votes
2 answers

How to regularly clean up files in a working directory in python

I have a python script that cache some information to a file. The file will be reused if exists. Otherwise the script will call some other functions, which takes a long time, to generate such file. The name of file has certain patterns, and they are…
cookieisaac
  • 1,357
  • 5
  • 18
  • 35
0
votes
2 answers

In Node.js, asking for a value using Prompt, and using that value in a main js file

I'm pretty new to node.js and it seems fairly easy to use but when it comes to getting a value using the command line and returning that value to be used in another package or .js, it seems harder than I expected. Long story short, I've used a npm…
nyhunter77
  • 614
  • 2
  • 7
  • 19
0
votes
2 answers

purging users with an automated c# irc bot

I am making a twitch chat bot with c# and I would like to know how I can purge/timeout users that are spamming or using banned words. I have searched everywhere i can to find a solution for this, but I can not find an answer anywhere.
Ben Rueter
  • 21
  • 6
0
votes
1 answer

Best Practice for Purging data from db2 sql service

What is the best practice to be used on Bluemix for purging of data from the db2 storage service? Say we want to purge a large amount of data, say a million entries of a particular communication to customers ?
vikram
  • 61
  • 4
0
votes
0 answers

How to ignore Entity with Doctrine Entity Manager?

I'm working on a project using the latest version of the Symfony framework. I've got some entities that I have created once (I need to keep them for another functionality) but I don't want that the Doctrine Entity Manager purge them when I load new…
ge0ra
  • 53
  • 4
0
votes
0 answers

Cannot purge Varnish cache from Wordpress

I have 'Varnish HTTP Purge' plugin installed in Wordpress. When I'm updating a post, the purge request sent from this plugin is rejected by Varnish, so the post is still read from cache. If I run a curl command the result is the following: curl -X…
Ludvik
  • 1
0
votes
1 answer

how to purge wiki pages including entire history from bitbucket?

I am new to bitbucket and would like to know how to purge wiki pages including entire history from bitbucket? sadly the documentation provided on bitbucket is incomplete or very difficult to understand for me. their forums are not very responsive, i…
mntk123
  • 905
  • 6
  • 18
0
votes
2 answers

Oracle DBMS_AUDIT_MGMT.CREATE_PURGE_JOB at a specifc time of day

I am trying to figure out how I can create/schedule a DBMS_AUDIT_MGMT.CREATE_PURGE_JOB to execute at a specific time of day, rather than at the interval, which appears to start at the time you execute the CREATE_PURGE_JOB ? The only thing I can…
bbaley
  • 199
  • 6
  • 22
0
votes
1 answer

Delete artifacts and their entire directory from maven local repository

I am trying to delete old artifacts and the directory they live in from my .m2/repository directory. For example I have several versions of projectA: 4.7.0.222, 4.7.0.223, 4.7.0.224 etc. I only need to keep 4.7.0.224 project since it is the latest…
cfarley4
  • 91
  • 2
  • 7
0
votes
1 answer

how to purge journal queue in c#?

i am getting the purge to work on a queue but not on its journal any idea why? MessageQueue oque1 = new MessageQueue(Qname); oque1.UseJournalQueue = true; oque1.Purge();
user137437
0
votes
1 answer

Logstash is putting old data in Elasticsearch. Can't clean Elasticsearch data

I have Logstash reading from a log file status.log and sending the output to an Elasticsearch instance. I want to clean the data in Elasticsearch, for that I'm executing curl -XDELETE 'http://localhost:9200/index_name/_all'. If I check through the…
Federico Nafria
  • 1,397
  • 14
  • 39
0
votes
0 answers

Selective data archival and purging in Oracle 11g

In my application, we use Oracle 11g. We have tables holding large amount of financial information which grows on a daily basis. Our data is categorized into monthly data (basically monthly summary) and daily data (basically, daily holdings). Our…
Venky
  • 1
  • 2