The meaning of bulk is the major portion or greater part of any size, mass, or volume.
0
votes
1answer
32 views
c# - Best approach for a bulk update/merge on a table with high data volumne, but small change set
I have a table that has 200K+ rows, that I need to update on daily basis. My console app generates all this data on a daily run and needs to update the table with the results.
The situation is that ...
0
votes
1answer
9 views
Entity Framework Bulk Updates
I'm currently using EF5 and I have an entity InvoinceGroup which is related to many Invoices. Each Invoice is also related to many Practices.
When I want to pay an invoice, I need to know only que ...
0
votes
0answers
17 views
Strategies for bulk data processing of live data
Our product relies on large bulk uploads of tabular information. This information is processed and changes data in the database ... data that is at all times available and live. Basically, there is ...
1
vote
1answer
29 views
MySQL InnoDB: Best practice bulk insert
I am trying to insert 2x 700 000 records into an InnoDB table and it is in my opinion rather slow.
I have tried several things and I am not sure what is the best way to achieve the most efficient way ...
0
votes
2answers
16 views
Send bulk email shared hosting - asp.net webform
What is the best strategy to send bulk email on shared hosting.
What actually I need is, whenever new project is posted, I have to send email to all contractor (approximately 100 contractor)
0
votes
1answer
18 views
Dropping Tables within an AFTER INSERT Trigger
I am looking for suggestions on how to handle incoming data from a C# client app that sends via System.Data.SqlClient.SqlBulkCopy. The original intent was to maintain all data sent via the app into ...
0
votes
0answers
9 views
Bulk file rename; removing everything after dash. Powershell or command prompt
total noobe here. Did a search but I couldn't find the answer.
I am trying to rename files that are in this format 871343_0000021467.jpg to 871343_Front_2D-1.jpg. SO basically I need everything from ...
-1
votes
0answers
6 views
Sql Bulk Insert how to access the file from the application server
I am trying bulk insert of .csv file . i am passing the file location to sp using the parameters.
I just want to know how can i access the file which is in the application server from the db server
-1
votes
1answer
22 views
Bulk mail solution [closed]
My client runs a business where they have to send regular mass (solicited) emails. This has previously been easy enough to do using a BCC in Windows Live mail, however now the email list has grown to ...
0
votes
1answer
51 views
Select Into the value with Bulk collect
First I created a type and a table type.
CREATE OR REPLACE TYPE LAB_LOADING_OBJECT_T
AS
object
(
STUDYID VARCHAR2(300),
USUBJID VARCHAR2(300),
..... /*So many columns, so I hide them*/
...
1
vote
1answer
30 views
Freebase batch search
I'm trying to use Freebase to search for multiple items at a time (using one API call). For example, if I have two items:
Robert Downey, Jr.
The Avengers
I want to query Freebase once and get ...
0
votes
0answers
23 views
does COPY(…) TO STDOUT WITH CSV HEADER execute as a BULK transaction?
I am wondering what is the most efficient way to select a large amount of data and put it into a file on linux. Here is how I do it now:
file.sql contains:
copy(select ...) TO STDOUT WITH CSV HEADER
...
0
votes
1answer
21 views
Kaltura Bulk Upload CSV
I want to use Kaltura Bulk Upload Entries CSV to upload a batch of videos from an ftp server.
However I could not find any documentation on the Usage and Schema Description for Entries CSV
...
0
votes
1answer
31 views
How to send bulk mails avoiding spam?
My problem is: We have got a lots of users and they got about 6-10k e-mails per day. Those e-mails for reset passwords, or registration confirmation, etc.
But our IP is on a BAN list or what is that. ...
0
votes
2answers
179 views
Add multiple users to multiple groups from one import csv
I am having the toughest time with this. I have a csv with 2 columns, one column is AD group names and one is user account names. I am trying to write a script to read the csv and import the users ...
1
vote
1answer
61 views
Bulk Inserts with Service Stack & Ormlite
I am having trouble finding a good way to do fast bulk inserts in ServiceStacks Ormlite
I will be performing the inserts against SQL Azure.
The only batch inserts that I could find would be to do as ...
0
votes
0answers
24 views
transferring huge inventory data on a daily basis
This question is more about design and architecture rather than programming.
I'm working in a small company where we store and process huge amount of data by collecting the inventory of items from ...
0
votes
1answer
68 views
WordPress Bulk category add to all posts with MySQL
I have to add all of my old posts to new created category and keeping the categories posts are in. I've tried doing it via wordpress edit button, but it only does on 20 posts per page, and there are ...
0
votes
1answer
78 views
bulk insert in mongodb with Java and Spring data inserts only one documment
I am trying to perform a bulk insert of an List of object defined with Spring data
@Document(collection="feeds")
public class Feed {
@Id
private String id;
@Field (value="feed_url")
...
1
vote
2answers
47 views
How do I add code to thousands of html files without a header or footer?
Does anyone know an easy way to go in and apply code to about 16,000 individiual static hard-coded HTML pages? Situation: my client has an ecommerce site with over 16,000 product pages, but instead of ...
1
vote
0answers
86 views
Best way to send bulk emails BCC vs Individual?
My development team has gotten into a fight with systems about how bulk emails should be sent out via a sendmail server. Currently when development sends out a 1000 recipient email, we put them in ...
0
votes
0answers
60 views
Mass add random Title metadata/metatag to avi videos
I need to add a random Title metadata to several avi videos in bulk and fast. When i say random, the Titles really are random codes that i generate using a random code generator software. I just need ...
1
vote
1answer
86 views
How to bulk insert only new rows in PostreSQL
I have list of products (3 million items) without IDs - only titles. But I don't know which titles already exist in DB. New products (about 2.9 million items) must be added into DB. After that I must ...
1
vote
1answer
137 views
Rally add test case results in bulk using web services API
We are about to start the phase of updating test results in Rally via the api.
I couldn't find an example to do this via the web services API (e.g. posting xml). Can anyone point me to this?
Also I ...
-3
votes
1answer
80 views
Best option for an bulk buying site, Wordpress/Joomla or magento? [closed]
hello i want to create a bulk buying site.
example:
a user will post a product and another user who is interested in buying that product he will bid if the interested users reaches 5 (means 5 users ...
0
votes
1answer
149 views
What Does bulkCommit Mean In The Context Of Ember's RestAdapter?
Ember Data's DS.RESTAdapter includes a bulkCommit property. I can't find any documentation about what this does/means, other than some vague references to batch committing vs bulk committing.
...
0
votes
2answers
99 views
Script to delete directories but keep files
I am after a script to be able to do the following
I have about 2000 directories with files and folders inside them
I want to delete the main folder but keep everything inside the folder
So an ...
1
vote
1answer
37 views
2000 switch snmp per port
I am running an application which collects snmp data from more than 2000 switches every 5 mins, upoctets,downoctects,port status and displayes them in graphs and a switch view on web page with green ...
0
votes
1answer
29 views
Bulk user delete with same email
I want to delete all users who have the email address of @trash-mail.com
How can I do that with a SQL? I'm trying this
DELETE from users
WHERE email LIKE %trash-mail.com
But it's not working ...
1
vote
2answers
264 views
Using SendGrid SMTP Integration for bulk email
Is there a way to use SendGrid's SMTP Integration API for sending bulk mail?
Here's what I have in mind:
I need to send a large bulk of emails to subscribers. Since SendGrid docs recommend using SMTP ...
0
votes
0answers
173 views
libusb: libusb_bulk_transfer successfull but nothing is sent
I'm stuck with following problem:
Whenever trying to send a 5 byte-frame with libusb_bulk_transfer over a USB-to-serial-adapter, everything indicates that it worked and 'transferred' shows that all 5 ...
9
votes
2answers
439 views
Implementing bulk record fetching
At the start of my program, I need to read data from a MS Access database (.mdb) into a drop down control. This is done so that whenever the user types in that control, the application can ...
-1
votes
1answer
197 views
how to bulk import 301 redirects in IIS 7 from csv or excel [closed]
is there a way to import/update 100's of 301 redirects in IIS 7 from excel or csv file
Excel file format currently consist of two column 1st column consists of old urls and the 2nd column consists ...
2
votes
1answer
311 views
Bulk printing PDF-Files on server side
I asked the following question on the MSDN-forums. It actually got answered, but still i couldn't come up with a solution after a couple of hours of research. So maybe you guys have an idea. Here it ...
0
votes
0answers
80 views
RESTful bulk POST, PUT or DELETE for subresources
I'm designing an API that will require pretty much all of the actions to accept bulk requests.
The domain is heavily hierarquical, with the following two entities and relationships:
Employee
...
1
vote
0answers
121 views
Asynchronous bulk data transfer
I am working on USB communication between an Android Galaxy S III smartphone and a device which does not conform to Android Open Accessory device definition. I want to transfer asynchronously bulk ...
0
votes
0answers
70 views
Hibernate bulk cascade delete
Looking at the APIs of ClassMetadata and its subclasses looks like Hibernate has all the required information to generate SQL statements to delete all the related entities in a bulk delete statement. ...
2
votes
1answer
812 views
libusb bulk transfer
I am trying to implement user space usb driver using libusb1.0.9. I have lpc2148 blueboard(ARM7) with me..This board is loaded with opensource USB stack/firmware by Mr. Bertrik Sikken.. now my user ...
0
votes
1answer
38 views
How to carry out bulk upload from a file having many insert commands
My file is having many mysql insert statements with selected columns like
INSERT INTO TABLE t1 (col1, col3, col5, ...) values (col1val1, col3val1, col5val1,...);
Please advise how to execute these ...
0
votes
1answer
85 views
Rally bulk query api with date placeholder
I am using the Rally bulk query API to pull data from multiple tables. My issue happens when I try to use a placeholder for the Iteration's StartDate and pass it along to a following query same bulk ...
0
votes
0answers
46 views
Updating Bulk data and causing Too many SOQL error
I am updating List of custom object through apex.
This causes multiple triggers to fire for same object and related object.
These triggers have SOQL quries.
If List is having 1000 records, then it ...
1
vote
2answers
2k views
Importing a CSV file using BULK INSERT command into SQL Server table
I have CSV file which have a couple of data columns.
The CSV file looks like
field1: Test1
field2: Test2
field3: Test3, Test4, Test5
In this case which library can I use as field terminator ...
0
votes
1answer
114 views
Sending bulk HTTP in java
the program is used to read a file, and send each line as http.
every line in the file is a url.
e.g. http: //localhost:8080/?a=1&b=2
PoolingClientConnectionManager pcm = new ...
1
vote
0answers
431 views
org.hibernate.exception.SQLGrammarException: could not insert/select ids for bulk delete
There are the following java-code:
EntityTransaction myTransaction = myManager.getTransaction();
myTransaction.begin();
System.out.println(myManager.createQuery("delete from UserProfile where id > ...
1
vote
0answers
35 views
getting multiple documents with one single requests in bigCouch
I'm trying to get multiple documents with one single request (http://wiki.apache.org/couchdb/HTTP_Bulk_Document_API#Fetch_Multiple_Documents_With_a_Single_Request) in bigCouch but it doesn't seem to ...
-1
votes
2answers
112 views
PHP Newsletter technique [closed]
I'm just a beginner of a PHP coding.
I need to know normally industry they how to trigger Newsletter to client?
is it use software/website like
https://www.phplist.com/ ?
or cronjob trigger a ...
1
vote
1answer
82 views
Bulk update strategy lucene?
For a project I am working on, I have a index of nearly 10 million documents. For sets of documents, ranging from 100k to 5m, I need to regularly add fields.
Lucene 4 supports updating documents ...
1
vote
1answer
686 views
how to bcp out from sybase few columns from a table with many columns? Also can some logic be accomodated while retriving data?
I have a huge table with 60 + columns in Sybase ASE, i want to bcp out 12 columns. I was checking syntax on manuals but could not find a way to mention column names.
I would also like to put some ...
1
vote
1answer
132 views
Oracle bulk insert missing audit entries
I've a Java/Hibernate/Spring application with oracle's audit (11g non-clustered) enabled, and it seems to be properly configured.
However, some entries are not being written to SYS.AUD$.
Here's my ...
0
votes
4answers
372 views
Inserting CSV data to SQLite in PHP PDO - is there any faster method than insert row by row?
Im looking for efficient method for inserting CSV data into SQLite database on remote server.
I have to use PHP. Im using SQLite3, so i have to use PDO (sqlite_query will not work).
CSV is on server ...

