The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
26 views

Get the count of rows from a COPY command

When copying data from a file, you get the count of rows in psql with the "command tag": db=# COPY t FROM '/var/lib/postgres/test.sql'; COPY 10 I need the number of rows and would like to avoid a ...
1
vote
1answer
47 views

New to SQL - Trouble getting quarterly date output

I'm really new to sql and databases in general. Trying to teach myself the language but I'm stuck and would like to know what's wrong. So here's what I have: 1976-01-01,6.1 1976-04-01,5.7 ...
0
votes
0answers
36 views

SQL Server Bulk Insert (VB.Net)

I would like to use sqlbulkcopy to move values from a csv file into sql server. The problem I have is that the csv is double quoted and comma delimited. I believe that sqlbulkcopy won't work with ...
0
votes
2answers
26 views

C# BulkCopy with SQL Server Compact Edition, is it possible?

My intent is to copy excel data into SQL Server Compact Edition. I have read the difference between SQL Server Compact and SQL Server from here but couldn't find it out. Also, know that ...
1
vote
1answer
127 views

“ERROR: extra data after last expected column” when using PostgreSQL COPY

Please bear with me as this is my first post. I'm trying to run the COPY command in PostgreSQL-9.2 to add a tab delimited table from a .txt file to a PostgreSQL database such as: COPY raw_data FROM ...
-5
votes
0answers
51 views

object reference not set to an instance of an object , SBS 2011, forms Application [closed]

Well the title says it all. I have developed a forms app to move data from a access db to a mssql server. Worked fine on my machine. I had to create a x86 version to get it to work on the SBS which is ...
0
votes
0answers
39 views

Empty Strings, Nulls, and Money types with SqlBulkCopy

I have some TAB delimited text files that I have to import to a SQL Server each month using an ASP.NET intranet page. I have been using the Generic Parser found here to import the files to DataTables ...
0
votes
4answers
70 views

SqlBulkCopy - InvalidOperationException - Which field is causing this

I'm using the SqlBulkCopy class to insert a DataSet into a pair of tables on my SQL Server database. Sometimes the input data cannot be readily converted into the data type required by the target ...
0
votes
0answers
45 views

Date Time Column of DataBase not accepting values from excel sheet using SQLBULKCOPY

I have a excel sheet and it is to be copied to DataBase. The excelsheet is having one column as DateOfBirth, similarly the table in DataBase also as column DateOfBirth which is DateTime. But now when ...
-1
votes
0answers
26 views

Import csv into postgresql (on shared hosting) [duplicate]

I have shared hosting and I need import csv file into posgresql table. So, in ftp, I have file file.csv and index.php. In php file: //connect to posgresql db $sql = " COPY csv_test FROM ...
1
vote
2answers
38 views

postgresql how to have COPY interpret formatted numeric fields automatically?

I have an input CSV file containing something like: SD-32MM-1001,"100.00",4/11/2012 SD-32MM-1001,"1,000.00",4/12/2012 I was trying to COPY import that into a postgresql table(varchar,float8,date) ...
0
votes
0answers
75 views

Using SqlBulkCopy SqlRowsCopied to update a label

I have a simple web application that is reading records from a CSV file and storing them in a database table. Then I am using SqlBulkCopy to copy the records into an SQL database using batches. All ...
0
votes
0answers
58 views

Selecting entire spreadsheet with LinqToExcel to append to new table with SqlBulkCopy

I'm creating a upload feature on a site where a user will submit any spreadsheet to us, then they'll be presented the fields in their spreadsheet to map back to the expected format. To do this I am ...
0
votes
1answer
61 views

Bulk copy with dynamic created temp table in ADO.NET

I require to create through ADO.NET a temp table, perform a BulkCopy and then a Merge on the server between the temp and the actual table. Problem is creating the temp table dynamic using pure ...
0
votes
0answers
99 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 ...
0
votes
0answers
257 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 ...
1
vote
1answer
49 views

Disabling indexes for a SqlBulkCopy errors out

I'm trying to improve the peformance of a call to SqlBulkCopy.WriteToServer(Datatable). One of the suggestions I've seen is to temporarily disable the indexes on the table before the call to ...
0
votes
1answer
45 views

SqlBulkCopy and File Archiving

I have a process that loads data into a sql table from a flat file then needs to immediately move the file to an archive folder. However when running the code it imports the data but throws and ...
0
votes
1answer
31 views

Best method to copy a file to the SQL Server machine

I am looking into copying a file from the client computer to the server computer. One path I've looked into was creating a CLR method which accepts a stream as input. Another suggestion I've had is to ...
0
votes
1answer
162 views

Entity Framework performance after SqlBulkCopy

I need some performance for doing some of my things. I'm trying to import excel data to my SQL Server database here is my code for doing that work but it really takes too much time for that. Could you ...
1
vote
1answer
82 views

SQLBulk Copy With Related Entities (Entity Framework)

Say I have the below entities. (Heavily Simplified for brevity, but the key properties are included) public class Crime { [Key] public int CrimeId {get;set;} public virtual ...
1
vote
1answer
146 views

SqlBulkCopy performance

I am working to increase the performance of bulk loads; 100's of millions of records + daily. I moved this over to use the IDatareader interface in lieu of the data tables and did get a noticeable ...
0
votes
0answers
97 views

SQLBulkCopy from CSV file error

I want to Bulk Copy a csv file and save it to db .. Everything going fine but the problem i am facing is that the data of one of the column gets slight changed .. a value of "SS13" becomes "13.0000". ...
0
votes
1answer
35 views

Is it possible to do data type conversion on SQLBulkUpload from IDataReader?

I need to grab a large amount of data from one set of tables and SQLBulkInsert into another set...unfortunately the source tables are ALL varchar(max) and I would like the destination to be the ...
0
votes
1answer
182 views

Upload bulk data into SQL Server 2008 from .csv

I want to let my users to upload 3000-4000 rows of data into SQL Server 2008. I would like to use SqlBulkCopy. What is the best policy to do it? Option A: First the .csv file will be uploaded to ...
0
votes
0answers
50 views

SQL BulkCopy to mutiple tables c#

I am trying to copy data from one database to another using SQLBulk Copy and can not get it right. I noticed on the inner loop the database does not change back to the dbProduction, resulting in a ...
1
vote
1answer
85 views

How use GNU parallel and GNU SQL with \copy in PostgreSQL

I want to do a bulk load to a PostgreSQL database, there are several files and are pretty big. I just read in Using GNU Parallel With split about the GNU Parallel and GNU SQL, and It looks fantastic, ...
0
votes
2answers
365 views

Data insert in loop using sql bulkcopy class c#

i have two database now i have to insert data from one db to another db in loop. i know bit sql bulk copy and i do not know how to insert one data at a time using sql bulk copy. here is my table ...
-2
votes
1answer
124 views

How to copy and validate data from one table (all varchar) to another (typed) in C#?

[note: needs to be in code as can't use SSIS or similar] I need to bulk copy data from one database to another using C# and EF probably - though this isn't cast in stone. The problem is that the ...
0
votes
0answers
43 views

Does anyone know if the .NET SQLBulkLoader class (System.Data.SQLClient) is slated for implementation in the mono platform? [closed]

We make heavy use of SQL bulk inserts in our current .NET (4.0) application and are doing some research on the mono platform, but I cannot find any references to SQLBulkCopy implementation (current or ...
1
vote
1answer
124 views

Import a lot of xml files

What is the best approach to import multiple xml files which are in very big number (ex: 30000) with different schema to Sql Server 2008? I am currently looping through each file, loading data to ...
3
votes
1answer
169 views

Rounding off numeric data while using SqlBulkCopy in C#

I am using SqlBulkCopy to import data from Oracle 11g source to MS SQL Server 2012. But one of the NUMERIC columns in Oracle contains values like 53682.0(~35times)1, 263.9(~32times). The target column ...
-1
votes
1answer
222 views

how to search for multiple values in one excel sheet and copy it to another sheet

Good day I have a huge problem I have an online store and need to update products and prices I have an excel sheet with all of the current products online and recieved a new pricelist Now the ...
2
votes
0answers
40 views

How to get auto-increment values after inserting records using SqlBulkCopy via c# [duplicate]

I am using SqlBulkCopy class to insert bulk records but i want that newly generated auto-increment values(primary key plays Foreign key in child table) because with the help of that values i am going ...
0
votes
0answers
154 views

SqlBulkCopy issues

Is anyone aware of issues with using SqlBulkCopy when being executed from code on a SqlExpress database? I have a full instance of SQL Server 2008 and also an instance of SQL Server 2008 Express. ...
0
votes
2answers
438 views

SQL bulk insert does not insert values properly into table

I have an Excel file(.xlsx) and I am trying to upload the content of the file into a Sql server table. Iam using the SQL bulk copy to bulk insert the data. The data gets inserted into the table but I ...
0
votes
0answers
186 views

sqlbulkcopy from Excel via ACE.OLEDB truncates text to 255 chars

Pretty straight-forward import using SqlBulkCopy: string excelConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + filePath + ";Extended Properties=\"Excel 12.0 ...
0
votes
2answers
115 views

Inserting unique id for file uploaded to database using SqlBulkCopy

There is a table with the following columns: ProdID Specification Value I've got a csv file with a schema that only has the last two columns - Specification and Value. In other words they are my ...
0
votes
2answers
480 views

The type or namespace name 'SqlBulkCopy' could not be found

can someone help me please to fix that error. this is my code : using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using ...
0
votes
0answers
109 views

SqlBulkCopy arithmetic overflow w/ .NET 4 - No issues with .Net 4.5

I'm trying to insert a massive amount of data into my database using SqlBulkCopy. I originally built this program using .NET 4.5 but it won't run on the older machine I need it to run on. During ...
0
votes
1answer
44 views

sqlbulkcopy imports only 17837 out of 67000 rows

The sqlbulkcopy function works fine in my local environment but when I deploy it to IIS it only imports 17837 out of the 67K odd rows. Does anybody know what can cause this issue?
0
votes
0answers
278 views

bcp.exe does not copy rows but there is no error

I am new to bcp which i am trying to figure out. I have table in sql server CREATE TABLE dbo.SL_REQUEST_ID ( requestId numeric(10,0) NOT NULL, CONSTRAINT X_requestId PRIMARY KEY CLUSTERED ...
1
vote
2answers
159 views

Memory Leak when executing SqlBulkCopy

I am experiencing a bad memory leak which occurs in the following code: public void BulkInsert(string tableName, IDataReader reader, String connectionString) { using (var connection = ...
1
vote
0answers
142 views

Deadlocks in Sql Server 2008 but not 2005: concurrent SqlBulkCopy

I am running concurrent bulk copies into a sql table that already holds data. There are a few indexes on the table but in this case no clustered indexes, just non-clustered. The table is not ...
3
votes
2answers
164 views

I have roughly 30M rows to Insert Update in SQL Server per day what are my options?

I have roughly 30M rows to Insert Update in SQL Server per day what are my options? If I use SqlBulkCopy, does it handle not inserting data that already exists? In my scenario I need to be able to ...
1
vote
1answer
585 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 ...
0
votes
1answer
122 views

No auto increment for the PK on duplicate insert with IGNORE_DUP_KEY = ON [closed]

I set IGNORE_DUP_KEY = ON so there is no warning when we try to insert lots of data. However, the primary key does increase for each duplicate row, so one could go from Id 100 to 120 when you have 20 ...
0
votes
0answers
112 views

SqlBulkCopy deal with batch size in ado.net

I have the following code to enter some data in the database using the class SqlBulkCopy from ADO.NET using (SqlBulkCopy bulkCopy = new SqlBulkCopy(DCISParameters.ConnectionString)) { ...
0
votes
1answer
210 views

F# DataTable to SQL using SqlBulkCopy

I have an F# program that creates a DataTable, populates it with one row and then writes the data to SQL Server using bulk insert (SqlBulkCopy). Although it's working, I can't really figure out how ...
1
vote
1answer
214 views

Python and SQL Bulk Insert

I am using IronPython to create a data array and I need to insert this array to MS SQL Server. The .Net class I'm using is SqlBulkCopy (part of System.Data.SqlClient). I have found this StackOverflow ...

1 2 3 4 5 7