0
votes
2answers
46 views
How to use SqlBulkCopy with nullable columns
I’m having an issue using SqlBulkCopy when nullable columns are involved. It sounds like SqlBulkCopy doesn't know how to deal with nullable columns and throws an illegal size error …
1
vote
1answer
43 views
At which stage does SqlBulkCopy check constraints?
If SqlBulkCopyOptions.CheckConstraints option is set for SqlBulkCopy insert, does it check the constraints separately after each record, or after all records are inserted?
I have …
0
votes
3answers
39 views
Is there a way to use SqlBulkCopy without converting the data to a DataTable?
Is there a way to use SqlBulkCopy without converting the data to a DataTable? I have a list of objects (List) in RAM and I really don't want to use more memory to create the DataTa …
0
votes
3answers
60 views
Bulk Copy from SQL Server to Oracle
I have a requirement for a project to move data from SQL Server to Oracle in bulk mode. There is OracleBulkCopy from DataDirect and ODP .net but to use that I have to first convert …
0
votes
3answers
71 views
Converting String to bit before inserting into the database
Can anyone help in converting string value in C# to bit equivalent in Sql. I'm trying to bulkcopy the values of a datatable into Sql table. All the values I've in the datatable a …
2
votes
2answers
52 views
Using SQLBulkCopy to Insert/Update database
Hi,
I have a datatable with the records.I'm inserting records into Sql table using SqlBulkCopy.It works fine.Next time when get the datatable with same records with few changed va …
0
votes
0answers
33 views
ODBC and Windows Service
Hi,
I'm new to windows services and... you guessed it, I’m a bit stuck. Let me paint the picture –
I’m running a timed service that use an OdbcDataReader and SqlBulkCopy to (1) a …
0
votes
3answers
24 views
Which right grants user a right to grant another right to himself in SQL 2008?
I need to grant a db_datawriter before executing SqlBulkCopy and remove it after:
try
{
"EXEC [db_mod].[sys].[sp_addrolemember] N'db_datawriter', N'my_user'" // via SqlCommand
…
0
votes
1answer
120 views
Import data from SQLite to SQL Server with SqlBulkCopy class
I'm trying to transfer the data from SQLite to SQL Server. The schema of target and destination table are just the same:
SQL Server:
CREATE TABLE [dbo].[Shop] (
[ShopID] [int …
2
votes
3answers
859 views
SqlBulkCopy Not Working
I have a dataSet populated from Excel Sheet. I wanted to use SQLBulk Copy to Insert Records in Lead_Hdr table where LeadId is PK.
I am having following error while executing this …
0
votes
1answer
22 views
Is it possible to use SqlBulkCopy in SQL 2008 without permission ‘db_datawriter’ ?
I want to limit my database possible access ways to only using stored procedures. Everything works fine except System.Data.SqlClient.SqlBulkCopy. I'm using it only in one class for …
0
votes
1answer
79 views
SqlBulkCopy refuses to convert String.Empty into INT NULL
Hi,
Recently I've been tasked with creating an automated ETL process that pumps the data into tables based on the flat file name by reading a master mapping file. I've decided to …
1
vote
3answers
58 views
sqlbulkcopy using sql CE
Is it possible to use SqlBulkcopy with Sql Compact Edition e.g. (*.sdf) files?
I know it works with SQL Server 200 Up, but wanted to check CE compatibility.
If it doesnt does any …
0
votes
2answers
201 views
SqlBulkCopy does not copy strings > 255 characters long
I am trying to copy a large Excel spreadsheet into the SQL Server database. I am opening an OldDbConnection to the Excel spreadsheet and reading everything from the [Sheet1$]. Then …
2
votes
3answers
65 views
SqlBulkCopy into table with composite primary key
I'm trying to use SqlBulkCopy to insert new rows into my DB table by manually populating a DataTable w/in my application.
This works fine for all tables except the table that has …
