Enter Keywords:
1 - 10 of 27(0.017 seconds)
Sort By:
 
Definition  of Batch inserts and updates. Advantages of it? at what situations  should we use ? for example for the below  we can use bath updates for(int i=0;i<chargelist.size();i++) { C...
Zones: JavaDate Answered: 08/18/2005 Rating: 8.8 Views: 0
INSERT INTO Codes ([ID],1,2,3,4 )( SELECT  (Select MAX(ID) + 1 FROM Codes),1,2,3 FROM Whatever ) Basically i have a select into and i have to increment the ID in each insert but it just gives ...
Zones: MS SQL ServerDate Answered: 06/27/2006 Rating: 6.0 Views: 0
Hi All, I was wondering if there was a way to do a "batch insert", insert more than 1 row at a time. I have an application that currently reads from a file and insert each record 1 row at a ...
Zones: ASP.Net ProgrammingDate Answered: 04/19/2007 Rating: 8.8 Views: 12
I have a series of ids to insert into my table.  I pass these in using xml since it is a dynamic number. Most of the time when I have done this in the past, if anything fails I rollback, as I us...
Zones: MS SQL ServerDate Answered: 12/22/2006 Rating: 8.4 Views: 0
I want to compare that when the user is prompted the batch file will take what they typed in and if what they typed in is less than 30 characters it would automatically put spaces in to make their ...
Zones: MS DOSDate Answered: 11/29/2002 Rating: 9.8 Views: 0
Lets say I have a table "create table blah (id MEDIUMINT AUTO_INCREMENT, txt TINYTEXT) type = InnoDB;" What I want to do is perform a batch insert of the type "INSERT blah (txt) VALUES ('a'),(...
Zones: MySQL ServerDate Answered: 01/10/2004 Rating: 7.6 Views: 0
I'm creating a batch insert.  I have two DropDownLists - the first one is a list of departments (which is populated in the codebehind): <asp:dropdownlist id="ddDepartments" runat="server" CssCla...
Zones: ASP.Net ProgrammingDate Answered: 10/04/2004 Rating: 9.4 Views: 0
I have a text file that I want to convert to an HTML file using a dos batch file.  What I want to do is put this tag <pre> into a batch file that echos it into a text file that will become my html ...
Zones: MS DOSDate Answered: 03/30/2005 Rating: 9.2 Views: 4
How can I insert a batch of pictures in a database? I have about 50 pics and I would like to enter them in my Access Database. Only way I know doing that is one by one. Is there any way I could do ...
Zones: MS AccessDate Answered: 07/27/2005 Rating: 9.8 Views: 0
Hello Experts, I am traying to save CSV files into a MySQL database. My CSV files are very large, I mean some times I have more one file at the same time which are completely full with 60,00...
Zones: JavaDate Answered: 08/10/2005 Rating: 8.4 Views: 0