When you want to apply the same action to many objects
Questions tagged [bulk-action]
16 questions
6
votes
4 answers
Bulk or mass killing misbehaving MySQL queries
How do you kill a mass of MySQL queries? Here is a good approach:
mysql> SELECT concat('KILL ',id,';') FROM information_schema.processlist WHERE user='root' INTO OUTFILE '/tmp/a.txt';
mysql> source /tmp/a.txt;
Any others besides clicking them to…
deadprogrammer
- 1,661
- 7
- 24
- 25
5
votes
5 answers
What are the options for sending legitimate bulk email?
I've got a new client that wants to send batches of around 1000 emails weekly to their client list (all opt-in recipients).
Previously when I've built something for a client it has been their own mail server.
Can anyone recommend any alternatives…
Gareth
- 8,413
- 13
- 43
- 44
3
votes
7 answers
Bulk rename or delete in Linux
I have a bunch (about 10 gigs worth) of files that I need to copy from an external linux disk to a Windows machine. Unfortunately some file-names that contain the ":" character have got into this collection.
None of these colon files needs to be on…
interstar
- 1,231
- 4
- 18
- 23
3
votes
3 answers
Active Directory Bulk Group Edit
Is there a way to update the "Managed By" field for every group in Active Directory? I would also need to check "Manager can update membership list" also.
Patrick
- 33
- 1
- 3
2
votes
4 answers
trying to set up a newsletter server, hotmail blocks me
I have little experience setting up an email server so I'm having a lot of dificulties right now.
A client from a political party wants to send a newsletter to 8000 people with a very limited budget (all legit, no spam so people wont mark it as…
sergiogx
- 335
- 3
- 15
2
votes
4 answers
What's the best way to send bulk email?
I have been using the sendmail function in PHP with Exim 4 so far when I had to send my mailing lists, I would like to know if there is a clean solution for that.
I'm quite sure that Facebook isn't sending email notifications in foreach loops.
I…
mnml
- 327
- 1
- 7
- 21
2
votes
5 answers
What is a good bulk find / replace tool for windows?
I'm looking to find / replace in alot of files and was wondering if anybody could recommend some good tools for Windows. I'd prefer them to be free.
Thanks
Richard
- 627
- 2
- 9
- 19
2
votes
1 answer
How can one import existing vSphere virtual machines into vRealize Automation 8.0?
I have a number of existing virtual machines within my vSphere datacenter. These VMs were not created using our vRealize 8 blueprints etc. However, I want to add the VMs to the vRA 8 inventory so that my users, who do not have access to vSphere, can…
tj94
- 79
- 4
1
vote
6 answers
Fast Bulk Import of a Large Dataset into MySQL
I have a fairly large dataset which I need to import into MySQL. I'd like to do so as efficiently as possible as I am going to need to do this repeatedly. Are there tricks for this? Is there some way which is more efficient than extended INSERT…
Tim
- 1,879
- 3
- 18
- 16
1
vote
2 answers
Bulk add/remove accounts to/from SBS2003 POP3 connector
Is this possible?
I (attempt to, at least) maintain our SBS2003 box, which uses POP3 Connector to retrieve email. I am regularly asked to add/remove several accounts at once, usually for the same domain, and it is a laborious process to type in the…
DaveRandom
- 702
- 1
- 8
- 15
1
vote
2 answers
Bulk change passwords
I am converting some scripts from an ancient SuSe install, after a swap to ubuntu. These scripts uses a tool called mkpasswd, which sets user passwords. I wonder if there is something similar for Ubuntu so I don't have to code it myself. The tool is…
pehrs
- 8,749
- 29
- 46
0
votes
1 answer
Shutdown domain PC's in bulk ASYNCHRONOUSLY
I am using psshutdown to turn off list of computers, but it seems ages to shutdown a list of 50+ PC's. It's shutting down them one by one, not all of them at the same time.
Is there any program or script to shutdown all PC's asynchronously, not one…
Matt Markevičius
- 91
- 1
- 6
0
votes
0 answers
Make a symbolic link of all files and subdirs, Ubuntu 14,04 server
Sorry if this has been asked before. I tried a search but...
We would like to make a central collection of symlinks from a number of disparate folders and subdirs and which use unnormalised file naming conventions.
I need some mechanism to create a…
TedEwen
- 1
- 1
0
votes
1 answer
Mass/bulk create user account in Active Directory with Exchange mailboxes
Every couple of months we have to create 30+ accounts so I was wondering what's the best way to bulk-create the accounts and their mailboxes.
We have AD on 2003 and Exchange 2007.
Abdullah
- 121
- 1
- 3
- 6
0
votes
0 answers
Sending large amount of emails with PHPmailer and SMPT guaranteeing the emails are delivered and preventing getting blacklisted
I have been using Phpmailer + SMPT + G-suite to send 2,000 emails per day, to the registered users of our website and this worked well for a while.
Now that we have more registered users, this method is not working well for us, since G-suite has a…
user289877
- 1
- 1