Tagged Questions
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
2answers
134 views
how to get test data from production to dev with least performance impact on prod?
Frequently we need to get some test data from our production sql server 2008 (non r2 enterprise) to our development sql server 2008 r2. Obviously when we do this data extract we want to have minimum ...
0
votes
1answer
436 views
Import CSV to SQL Table using BCP cmd utility
My source CSV is comma delimited.
Example
Col1, Col2, Col3
Destinatin SQL Table
Col1, Col2, Col3, Col4, Col5 ( Col4 and Col5 are like audit columns)
So when i do bcp import can these Col4 and ...
0
votes
1answer
406 views
SSIS - Export image datatype column to a flat file
I would like to export a table with image data-type column to a flat file using SSIS package and back.
Is this possible or should I use another approach?
By the way, the BCP utility do the job but I ...
0
votes
1answer
525 views
How to use a XSD schema definition file to bulk insert records with fixed-width columns into a database?
I have an XSD schema definition file that I "crafted" using Access 2007 on my flatfile with fixed-width columns/fields. Using an SSIS package, I would like to bulk insert the data from the flat file ...
0
votes
3answers
2k views
How to Export SSIS data on SQL Standard and Import with Bulk Insert on SQL Express?
I would like to use SSIS to create database table flat file exports then import them in to variously distributed SQL Express installs. As you may guess, SSIS is not available in the Express version. ...
