Act of inserting multiple rows into a database simultaneously.

learn more… | top users | synonyms

0
votes
0answers
9 views

Cassandra Enable compression during SSTable generation from huge CSV data files

I am facing some issues regarding disk space consumption while generating SSTables from CSV data files with billion+ rows and 8 columns. I am using the bulk loading techniques provided at ...
0
votes
1answer
31 views

BULK COLLECT into a table of objects

When attempting to use a BULK COLLECT statement I got error ORA-00947: not enough values. An example script: CREATE OR REPLACE TYPE company_t AS OBJECT ( Company VARCHAR2(30), ...
0
votes
3answers
37 views

Quick insert from C# CLR

I am working on a huge set of data, and using CLR for processing it. The CLR processing is working quick, but I need a quick way to move the processed data to the database. For example, see the ...
0
votes
0answers
9 views

Bulk insertion of CollectionTable elements in Hibernate / JPA

We are using Hibernate 4.2 as the backing library for JPA 2.0 entities. We have an entity like the following: @Entity public class MyEntity { .... @ElementCollection @MapKeyColumn(name = ...
0
votes
1answer
33 views

BULK INSERT of Apple EPF Unicode Data Into SQL Server 2012

I'm attempting to build an application that will import the Apple EPF feed data into an instance of SQL Server 2012. The data is supplied in flat files, which use CHAR(1) field delimiter and CHAR(2) ...
0
votes
1answer
15 views

Bulk insert statement with unique constraint

I am writing a PHP script where I need to generate unique codes. These codes are generated by an admin user, 100K at a time. I have an algorithm that generates the code, but there is a very slight ...
2
votes
1answer
46 views

Bulk Insert into SQL Server from text file adding a uniqueidentifier, or skipping a column

I need to take rows from a text file and insert into a table. The rows of the file are similar to the following: string1 string2 string3 string4 ... My table has 2 columns: uniqueidentifier, ...
1
vote
1answer
23 views

INSERT INTO Linked SQL Server

I have a need to bulk insert circa 1m rows from one SQL Server (A) to another (B) on a daily basis. Server A hosts the records, and has access to Server B as a linked server. Both are SQL Server ...
0
votes
0answers
8 views

Bulk insert using jTDS

I'm using jTDS 1.3 and SQL Server 2008 R2. I can't seem to find any batch or bulk insert examples. Can someone point me to an example or provide one? Should I go back to JDBC?
4
votes
1answer
43 views

Bulk insert into partitioned table and table level lock

I want to know the core reason(the mechanics of segments, blocks, locks that the engine does) why bulk insert(with direct-path) locks the entire table so if I insert into a partition, I can't truncate ...
0
votes
1answer
28 views

BULK INSERT into SQL Server

I began writing my SQL with the intention of using a multi-line insert statement, however, the amount of records are much larger than I was expecting, therefore, I want to try a BULK INSERT statement. ...
-1
votes
2answers
26 views

What is the fastest way to insert data to MS SQL database without locking it?

I've a running system where data is inserted periodically into MS SQL DB and web application is used to display this data to users. During data insert users should be able to continue to use DB, ...
0
votes
1answer
21 views

administrative abilities using OAuth 2

One of my clients (state public defenders office) has asked me to write a system to update people's (laywer's) calendars (google for govt, calendar) on a daily basis, from data pulled from the Circuit ...
0
votes
0answers
14 views

How to update extra field in table using BULK INSERT

I am trying to use BULK INSERT in SQL Server 2012 to import data from a text file into database table. I have 3 fields(FirstName,LastName and STATUS) in the table.My input text file contains only two ...
0
votes
1answer
19 views

Show Duplicates on MySQL bulk insert

I have a CSV file which I need to enter into my Database. My modus operandi is a Bulk insert. One of the columns has a uniqueness constraint attached to it but it is not the primary column. If there ...
0
votes
1answer
21 views

“Cannot Bulk Load” Error in Netbeans.

I know this is an old error. I looked everywhere but still couldn't find the solution. Stackoverflow is my last resort. Here is what I am doing. I am trying to import a txt file through java into SQL ...
0
votes
1answer
49 views

BULK INSERT into table and auto-increment

I have a .txt file in the format: 123456 111111 122222 123344 121212 I wish to insert these into a temporary table along with an integer recording the order in which they are in the .txt file, such ...
0
votes
1answer
22 views

MySQL Bulk Insert record lines that failed

I have a bulk insert operation where errors are ignored. The bulk insert gets it data from a CSV file. The errors would be typical data mismatch errors and not duplication nor "not enough columns in ...
0
votes
1answer
70 views

PostgreSQL - SQL state: 42601 syntax error

I would like to know how to use a dynamic query inside a function. I've tried lots of ways, however, when I try to compile my function a message SQL 42601 is displayed. The code that I use: CREATE ...
0
votes
2answers
83 views

PostgreSQL equivalent of Oracle “bulk collect”

In PostgreSQL exists some ways to make a statement using bulk collect into like in Oracle? Example in Oracle: create or replace procedure prc_tst_bulk_test is type typ_person is table of ...
0
votes
1answer
51 views

Dump CSV into Postgresql table

below is my whole procedure to dum data from a file to POSTGRESQL-8.0 on RedHAt-7.2 now my issues is for every ROW the trigger is getting called and the procedure is executing . I want to do is once ...
0
votes
0answers
89 views

0x80040E14 Cannot fetch a row from OLE DB provider “BULK” for linked server “(null)”."

Using SSIS I get the following error: An OLE DB record is available. Source: "Microsoft SQL Server Native Client 11.0" Hresult: 0x80040E14 Description: "Cannot fetch a row from OLE DB provider ...
0
votes
1answer
42 views

Bulk insert not working for NULL data

When I am inserting bulk data to a table from a CSV file, it is not working, showing error lie : Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for ...
0
votes
0answers
12 views

Bulk in tool throws a classic datatype exception but it's nvarchar(max)

Context: Im working on bulk-in tool to transfer data, from excel to sql server. There is a concept problem (I think) in this code, because throws an exception: "The field is too small to accept the ...
-1
votes
0answers
34 views

Building a bulk copy tool in vb net, some conflicts with blob types

I have a real problem with my bulk tool. (Excel to SQLS using VB.NET) The code that fires a copy bulk is: Dim ExceConn As String = "Provider=Microsoft.Ace.OLEDB.12.0;Data Source=" & ...
1
vote
0answers
87 views

SSIS Bulk Insert doesn´t work

I'm trying to execute a Bulk Insert task in a SSIS package in SQL Server, but it shows error trying to open the file or trying to find the file. Searching in the web the errors can be: The path is ...
0
votes
0answers
55 views

SQL Server Compact Bulk Insert issue

I have a table created like this: And in my CSV file something like this: 34650326,Mr,John,Doe,Some Street Some City Some Country,33445566,77889900,jdoe@yahoo.com,120.33 For some reason the SQL ...
0
votes
2answers
70 views

Bulk Insert From Select

I have a text file with about 300 million lines in it. I am doing a bulk insert to get the file into a staging table in sql. I then break out some columns to normalize it which works fine and quick. ...
0
votes
1answer
89 views

Very simple bulk insert inserts NULLs for each row in CSV

I can hear you saying: Then it ain't so simple, is it. Here's the table: CREATE TABLE [bulkimport].[Test]( [Id] [int] IDENTITY(1,1) NOT NULL, [Data] [nvarchar](50) NULL, CONSTRAINT ...
0
votes
1answer
43 views

There was an error parsing the query. [ Token line number = 1 …]

I tried using stringbuilder to make the process simpler but it is showing error and I don't understand whether the problem is with the stringbuilder or code syntax. code: if ...
0
votes
1answer
51 views

What is the optimum bulk item count with InsertBatch method in mongodb c# driver?

I heard that large batch sizes don't really give any additional performance what is the optimum?
1
vote
1answer
83 views

Bulk insert Datetime Error

I am trying to use BULK INSERT in SQL Server 2012 to import data from a text file into database table. I am using a UTC datetime value with the Z designator (DOB field) in text file. But while ...
0
votes
1answer
47 views

use sql bulk copy for dependent table

I have two DataTable , tblSoftware and tblDeviceSoftware design are as follows: tblSoftware -> SoftwareID|SoftwareName|Version tblDeviceSoftware -> ...
0
votes
1answer
203 views

SQL Server Bulk Insert/Update: checking if record exists with duplicates in source

I have the following tables which join on idProduct = id (one to one): Products idProduct description ProductKeys id ProductKey I need to create a trigger on the Products table for single ...
0
votes
0answers
94 views

SqlBulkCopy DataTable into Excel sheet

I am creating an application that has to insert a DataTable into an Excel sheet. This is working fine but if i have to insert 7000+ rows it will take a lot of time before the data is inserted into the ...
1
vote
1answer
48 views

Optimize MySQL query with larger database

how can be write the below query efficiently SELECT DISTINCT a.id FROM table1 a where a.id NOT IN (SELECT DISTINCT b.id FROM table2 b) Post this query the result ...
0
votes
0answers
239 views

Validate Values While BulKInsert of Excel Sheet Data into Sqlserver using C#

I am Having a FileUpload Control where User Upload a Excel Sheets.I want to Insert VAlues into the following table stateCityMapping having Following two Cols StateID and CityID.I have two more tables ...
0
votes
1answer
99 views

How to BULK INSERT files that change name every day?

I have a folder that is static with a daily txt file that goes into the folder. The file name is the date. If the file name has the same name every day, everything works. Is there a way I can have my ...
0
votes
0answers
66 views

step to use bcp to transfer records from file to table in MS sql server 2008

i am new to bcp, i have a remote ms sql server, Server Host : myHomeDatabaser.bytt.com; port 1433; User : name, Password pass. i just opned my command promt and executed below command but it is not ...
2
votes
1answer
156 views

Which is the most efficient way to bulk insert to a Oracle database?

As a part of my requirement in office, Im required to write an C# console application that pulls bulk data from an Oracle CRM ON Demand server and pushes it to a local Oracle DB. Now, after much ...
0
votes
0answers
11 views

Updating online database from local database

I have three local databases on my three shops. I written a query for their update and they are updated every day to my online database and I can see my sales report. But the problem is that Upload ...
0
votes
1answer
42 views

Getting PK of updated records in cakephp/sql server

I have used bulk update to sync datas between two tables as below $sqlProc=" UPDATE cards SET cards.card_no = t2.card_number, cards.expiry_date=t2.expiry_date OUTPUT INSERTED.Id AS 'updated_id' ...
0
votes
0answers
126 views

Bulk Insert Stored Procedure: BCP needed to connect to the SQL Server?

I'm new to SQL and I'm trying to figure something out. I have two servers, a SQL server and a program server. My program server needs to run a .bat file that will connect to the SQL server and run a ...
0
votes
1answer
131 views

Need Help: Create Stored Procedure for Bulk Insert

First, I'm new. I'm on SQL Server 2008 R2. I have a bulk insert script that works. I tried to create a stored procedure and then save it as a storedprocedure.sql. Ultimately, I need a .bat file to ...
0
votes
0answers
56 views

SQL Bulk Insert: Use a Format File to Skip a Field from file

I have a problem in SQL Bulk Insert, I have a table with 30 columns and pipe separated file with 100 columns I need to insert 30 particular fields from the file to table using Bulk Insert. Please help ...
0
votes
1answer
49 views

Entity framework - inserting by ID

I'm in a situation where I'm importing lots of "link" records from an XML file, and I want to insert them in my SQL link table using Entity Framework. My link table is literally just 2 columns, both ...
0
votes
2answers
181 views

Insert or Replace Multiple Row with where condition in SQLite Query

I need a single SQLite query to insert or update in SQLite table. MyTable: Id(Primary key and not null) Name PhoneNumber Expected Query: If the Id is not present then have to insert a new ...
0
votes
0answers
52 views

SQL bulk insert, NOT copy

I am working on a database that gets data from a very old system. In one of the tables, there is a column that contains a formatted string (let's pretend it contains a list of unique items and a ...
1
vote
1answer
72 views

SqlServer Bulk Insert with logic

I'm using SqlServer 2008R2 and I need to load 900 million records with the follow structure very fast. varchar(20) varchar(10) varchar(50) varchar(15) varchar(20) varchar(10) varchar(4) varchar(3) ...
0
votes
1answer
136 views

python sqlalchemy insert multiple lines in a tuple data structure

I have been researching how to insert a list of ~500 tuples (rows) that has 7 elements (columns) into a database. I have read through various posts on stackoverflow as well as other forums. I found ...

1 2 3 4 5 13