0
votes
1answer
35 views
Optimizing MySQL inserts to handle a data stream
Hi,
I am consuming a high rate data stream and doing the following steps to store data in a MySQL database. For each new arriving item.
(1) Parse incoming item.
(2) Execute seve …
2
votes
2answers
33 views
How to copy large set of data in SQLServer db
I have a requirement to take a "snapshot" of a current database and clone it into the same database, with new Primary Keys.
The schema in question consists of about 10 tables, but …
1
vote
8answers
101 views
Bulk Insert Code Before </body> Tag in 100 Files
I'd like to insert
<?php include_once('google_analytics.php'); ?>
before the closing body tag of about 100 php files. Unfortunately the person who made the site didn't m …
1
vote
1answer
50 views
Datawarehouse duplicate dimension rows
We're starting to load up a datawarehouse with data from event logs. We have a normal star schema where a row in the fact table represents one event. Our dimension tables are a t …
1
vote
3answers
84 views
How does BULK INSERT work internally ?
Hi ,
Could someone please explain how does BULK INSERT internally work and why is it much faster than the normal INSERT operations ?
Regards,
Shishir.
1
vote
0answers
40 views
Fast MySQL bulk load when indexes don’t fit into key_buffer
Hi everyone,
have an issue here of how to configure mysql (myisam) properly for the bulk insert (load data infile) to be performed fast.
There is 6 Gb text file to be imported, 1 …
1
vote
2answers
76 views
Bulk Insert a File with a Text Field with Carriage Return (Enters)
Hi!,
I´m having trouble with bulk insert a file that contains a field in data type text, and it holds enters and the delimiter for the fields are pipes "|" and the row terminator …
0
votes
4answers
75 views
MySql bulk load command line tool
Does MySql have a bulk load command line tool like bcp for SQLServer and sqlldr for Oracle? I know there's a SQL command LOAD INFILE or similar but I sometimes need to bulk load a …
0
votes
1answer
133 views
Bulk insert into SQL Server a CSV with line breaks in fields
I have a csv that looks like this:
"blah","blah, blah, blah
ect, ect","column 3"
"foo","foo, bar, baz
more stuff on another line", "another column 3"
Is it possible to import th …
0
votes
1answer
73 views
How do I bulk Insert using SubSonic?
I have something that looks like this
foreach (var user in NewUsers)
{
var dbUser = new User {FirstName = user.FirstName};
dbUser.Save( …
0
votes
3answers
159 views
how to bulk insert into existing database table using ado.net 3.5
Hi,
I have a table in database which already have 100 records. Now I have to insert 100 more records to it. Now which object we have to use? whether dataadapter or sqlbulkcopy?
0
votes
2answers
106 views
SqlBulkCopy.BulkCopyTimeout property
Hello everyone,
I am using VSTS 2008 + C# + .Net 3.5 + ADO.Net to develop a console application to do bulk insert copy.
I want to use both bulk insert batch and bulk insert timeo …
1
vote
5answers
255 views
SQL Server Bulk Insert fails (Network related)
I'm fairly new to SQL Server.
I'm trying to bulk insert into a table, using the command in SQL Server Management Studio (2005):
BULK INSERT Table1 FROM 'c:\text.txt' WITH (FIELD …
1
vote
1answer
175 views
How to bulk insert into a table in sql server 2005
Hi all,
I have a storedproc which takes an ntext field where some records are passed.
Suppose there is a table t as below.
| ID | Name | Designation|
--------------------------
| …
0
votes
3answers
146 views
SQL Import skip duplicates
I am trying to do a bulk upload into a SQL server DB. The source file has duplicates which I want to remove, so I was hoping that the operation would automatically upload the first …
